body{
    padding:0;
    margin:0;
    font-family: 'Be Vietnam Pro';
    font-weight: normal;
    background-color: var(--white);
    overflow-x: hidden;
}
/* ------------------------
      General CSS
----------------------- */

:root{
    --primary: #343d8e;
    --white: #fff;  
  --yellow-color: #FFA500;
    --dark-color: #1c1c1c;
  --gray-text:#787878;
  --black: #000000;
}

/* Headings Styling */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;    
  }

  h1{
    font-size: 64px;
    color: var(--primary);
    font-family: 'Outfit';
    font-weight: bold;
    line-height: 74px;
  }

  h2 {
    font-size: 48px;
    color: var(--primary);
    font-family: 'Outfit';
    font-weight: 500;
    line-height: 56px;
  }
  
  h3 {
    font-size: 42px;
    color: var(--primary);
    font-family: 'Outfit';
    font-weight: bold;
    line-height: 30px !important;
  }
  
  h4{
    font-size: 36px;
    color: var(--primary);
    font-family: 'Outfit';
    font-weight: bold;
    line-height: 42px;
  }

  h5{
    font-size: 30px;
    color: var(--primary);
    font-family: 'Outfit';
    font-weight: bold;
    line-height: 36px;
  }

  h6{
    font-size: 24px;
    color: var(--primary);
    font-family: 'Outfit';
    font-weight: bold;
    line-height: 30px;
  }

  /* Paragraphs and text styling */
  p {
    font-size: 19px;
    color: var(--gray-text);
    font-weight: normal;
    font-family: 'Be Vietnam Pro';
    line-height: 28px;
    margin-bottom: 20px;
  }

  /* Links */
  a {
    font-size: 19px;
    color: var(--gray-text);
    line-height: 26px;
    font-family: 'Inter';
    text-decoration: none;
  }
  
  /* Buttons */
  button,
  .btn{
    font-size: 16px;
    font-weight: 500;    
    color: var(--white) !important;
    font-family: 'Inter';
    text-align: center;
    border: 1px solid var(--primary);
    padding: 9px 9px 9px 30px;
    line-height: 35px;
    cursor: pointer;
    border-radius: 50px;
    display: flex;
    align-items: center;
    max-width: fit-content;
    background-color: var(--primary) !important;
    text-decoration: none;
    letter-spacing: normal;
    transition: all 0.5s;
  }
  /* .btn:hover {
    color: var(--black);
    border-color: var(--black);
  } */
  button span,
  .btn span{    
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    margin-left: 10px;
    background-color: var(--white);
    border-left:1px solid var(--white);    
  }
  button span svg,
  .btn span svg{
    color: var(--primary);
    width: 18px;
    height: 18px;
    transform: rotate(-45deg);
    transition: all 0.5s;
  }
  button:hover span svg,
  .btn:hover span svg{
    transform: rotate(0deg);
  }  
  button span svg path,
  .btn span svg path{
    fill: var(--primary);
  }  
  .outline-btn{
    background-color: transparent;
    color: var(--primary);
  }
  .outline-btn:hover{
    color: var(--white);
    background-color: var(--primary);
  }

  /* Form elements */
  .form-group{
    margin-bottom: 20px;
  }
  input.form-control, 
  textarea.form-control, 
  select.form-control {
    font-size: 18px;
    color: var(--gray-text) !important;
    font-weight: 400;
    font-family: 'Inter';
    width: 100%;
    height:62px;
    padding: 5px 20px;
    border: 1px solid #F6F6F9 !important;    
    background-color: #F6F6F9 !important;
    box-shadow: none !important;
    border-radius: 0px;
  }
  input[type=number]::-webkit-inner-spin-button, 
  input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  input[type="date"]::-webkit-calendar-picker-indicator {  
    filter: invert(1);
    opacity:1;
  }  
  .form-group.select-box{
    background-color: #F6F6F9;
    position: relative;
  }
  .form-group.select-box::before{
    position: absolute;
    content:"\f078";
    font-size:18px;
    color: var(--black);  
    top: 17px;
    right: 20px;
    font-family:'fontawesome';
  }
  .form-group.select-box select.form-control{
    background-color: transparent !important;
    position: relative;
    z-index:1;
  }
  select.form-control option{
    color: var(--gray-text) !important;
  }
  textarea.form-control{    
    font-size: 18px;
    font-weight: 400;
    font-family: 'Be Vietnam Pro';
    height: 145px;
    resize: none;
    border-radius: 0;
    padding: 20px 20px;
  }
  textarea.form-control::-webkit-input-placeholder,
  input.form-control::-webkit-input-placeholder {
    color: var(--gray-text); opacity: 1;
  }
  textarea.form-control::-moz-placeholder,
  input.form-control::-moz-placeholder {
    color: var(--gray-text); opacity: 1;
  }
  textarea.form-control:-ms-input-placeholder,
  input.form-control:-ms-input-placeholder {
    color: var(--gray-text); opacity: 1;
  }
  textarea.form-control:-moz-placeholder,
  input.form-control:-moz-placeholder {
    color: var(--gray-text); opacity: 1;
  }
  .form-label{
    font-size: 16px;
    font-weight:400;
    color: #da2d2d;
    font-family: 'Inter';
    line-height: 20px;    
  }


  /* Lists */
  ul, ol {
    font-size: 18px;
    color: var(--white);
    font-weight: 400;
    line-height: 28px;
    padding: 0;
    margin:0;
    list-style: none;
    font-family: 'Be Vietnam Pro';
  }
  
  li {
    margin-bottom: 20px;
  }

  button.slick-arrow{
    font-size: 0;
    position: absolute;
    top: 50%;
    transform: translate(0 , -50%);
    width: 56px;
    height: 56px;
    line-height: 54px;
    text-align: center;
    border:1px solid var(--primary);
    background-color: var(--primary) !important;
    z-index: 1;
    padding: 0;
    border-radius: 50%;
  }
  button.slick-arrow::before{
    font-size: 24px;
    color: var(--white);
    position: absolute;
    content:'';
    font-family: 'fontawesome';
  }
  button.slick-arrow.slick-prev{
    left: -40px;
  }
  button.slick-arrow.slick-prev::before{
    /* content:"\f060"; */
    background-image: url('../images/right-arrow.svg');
    background-position: center;
    background-repeat: no-repeat;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transform: rotate(180deg);
  }
  button.slick-arrow.slick-next{
    right: -40px;
  }
  button.slick-arrow.slick-next::before{
    /* content:"\f061"; */
    background-image: url('../images/right-arrow.svg');
    background-position: center;
    background-repeat: no-repeat;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }

  /* header-top-bg */
  .top-header-bg{
    padding: 0;
    background-color: var(--primary);
  }  
  .header-left-box ul li{
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    line-height: 50px;
    display: inline-block;    
    margin-right: 45px;
    margin-bottom: 0; 
  }
  .header-left-box ul li a{
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    line-height: 28px;
  }
  .header-left-box ul li svg{
    margin-right: 5px;
    position: relative;
    top:-1px;
  }
  .socials-list ul{
    display: flex;
    justify-content: flex-end;
    text-align: end;
  }
  .socials-list ul li{
    margin: 0;
    display: inline-block;
  }
  .socials-list ul li a{
    padding: 12px 30px;
    display: inline-block;
    border-left: 1px solid #999ec6;
  }
  .socials-list ul li:last-child a{
    padding-right: 0;
  }

  /* header-bg */
  .header-bg{
    padding: 20px 0;
    transition: all 0.8s;
    background-color: var(--white);
  }
  .header-fixed .header-bg{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 123;
    box-shadow: 0 2px 10px 0 #e5e5e5;
  }
  .navbar.navbar-expand-lg{
    padding: 0;
    justify-content: space-between;
  }
  .navbar-expand-lg .navbar-collapse {
    justify-content: center;
}
  .navbar.navbar-expand-lg .navbar-nav .nav-item{
    margin: 0 12px;
    position: relative;
  }
  .navbar.navbar-expand-lg .navbar-nav .nav-item a{
    font-size: 16px;
    color: var(--black);
    font-weight: 500;
    padding: 0;
    text-transform: capitalize;
    transition: all 0.5s;
  }
  .navbar.navbar-expand-lg .navbar-nav .nav-item a svg{
    font-size: 16px;
    color: var(--black);
    margin-left: 4px;
    position: relative;
    top: 0px;
    transition: all 0.5s;
  }
  .navbar.navbar-expand-lg .navbar-nav .nav-item a:hover svg{
    color: var(--yellow-color);
  }
  .navbar.navbar-expand-lg .navbar-nav .nav-item a:hover,
  .navbar.navbar-expand-lg .navbar-nav .nav-item a.active{
    color: var(--yellow-color);
  }
  .navbar.navbar-expand-lg .navbar-nav .nav-item button{
    border: 0;
    background-color: transparent !important;
    padding: 0;
    line-height: normal;
    display: inline-block;
  }
  .navbar.navbar-expand-lg .navbar-nav .nav-item button svg{
    font-size: 16px;
    color: var(--black);
    margin: 0;
    margin-left: 4px;
    position: relative;
    top: 0px;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu li{
    margin: 0;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu li .dropdown-item{
    font-size: 16px;
    color: var(--dark-color);
    padding: 6px 15px;
  }
  .get-qoute-btn{
    display: flex;
    align-items: center;
  }
  .get-qoute-btn button.search-icon{
    padding: 0;
    margin-right: 45px;
    border: 0 !important;
    background-color: transparent !important;
  }
  .get-qoute-btn button.search-icon svg{
    font-size: 16px;
    color: #000000;
  }
  .get-qoute-btn ul{
    display: flex;
    align-items: center;
  }
  .get-qoute-btn ul li{
    display: none;
    margin-bottom: 0;
    padding-right: 20px;
  }
  .get-qoute-btn ul li:first-child{
    display: block;
  }
  .get-qoute-btn ul li a{
    display: flex;
    align-items: center;
  }
  .get-qoute-btn ul li svg{
    font-size: 20px;
    color: var(--dark-color);
    width: 20px;
  }
  .get-qoute-btn .btn{
    font-size: 16px;
    font-weight: 600;
    padding: 9px 9px 9px 30px;
    border: 1px solid var(--primary) !important;
    background-color: var(--primary);
    border-radius: 50px;
    line-height: 35px;
    display: flex;
    align-items: center;
  }  
  .get-qoute-btn .btn span{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
  }
  .get-qoute-btn .btn svg{
    font-size: 18px;
    transform: rotate(-45deg);
  }
  .get-qoute-btn .btn svg path{
    fill: var(--primary);
  }

  /* banner-section */
  .banner-section{
    padding: 100px 0 100px 0;
    background-image: url('../images/banner-bg.png');
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;
	min-height: 300px;
  }
  .banner-content span{
    font-size: 22px;
    font-weight: 400;
    color: var(--white);
    font-family: 'Be Vietnam Pro';
    line-height: 35px;
    display: block;
    padding-bottom: 15px;
  }
  .banner-content h1{
    font-weight: normal;
    color: var(--white);
    line-height: 90px;
    margin-bottom: 20px;
  }
  .banner-content h1 strong{
    font-weight: 600;
  }  
  .banner-content p{
    font-size: 22px;
    color: var(--white);
    font-weight: 300;
    line-height: 36px;
    margin-bottom: 40px;
  }
  .banner-content .btn{
    display: flex;
    align-items: center;
    padding: 5px 10px 5px 30px;
    color: var(--black) !important;
    border-radius: 50px;
    line-height: 42px;
    background-color: var(--white) !important;    
  }
  .banner-content .btn span{
    line-height: 30px;
    background-color: var(--primary) !important;
  }
  .banner-content .btn svg path{
    fill: var(--white);
  }
  .banner-content .play-icon{
    font-size: 16px;
    color: var(--white);
    font-weight: 400;
    font-family: 'Be Vietnam Pro';
    margin-left: 40px;
  }
  .banner-content .play-icon img{
    margin-right: 5px;
  }

  /* capibility-section */
  .capibility-section{
    padding: 60px 0;
    background-color: #F6F6F9;
  }
  .nav.nav-tabs{
    border: 0;
    flex-wrap: nowrap;
    margin-bottom: 70px;
  }
  .nav.nav-tabs .nav-item{
    width: 100%;
    border: 0;
    margin-bottom: 0;
  }
  .nav.nav-tabs .nav-item .nav-link{
    font-size: 18px;
    font-family: 'Outfit';
    font-weight: 500;
    color: var(--primary);
    margin: 0;
    padding: 10px 15px;
    border: 0;
    border-radius: 0;
    height: 80px;
    line-height: 60px;
    text-align: center;
    background-color: var(--white);
    border-bottom: 3px solid var(--primary);
    box-shadow: 0px 0px 5px 0px #0000001F;
  }
  .nav.nav-tabs .nav-item .nav-link.active{
    color: var(--white);
    background-color: var(--primary);
  }
  .capibility-content span{
    text-transform: uppercase;    
  }  
  .capibility-image img{
    max-width: 100%;
  }

  /* about-section */
  .about-section{
    padding: 60px 0 60px 0;
  }
  .about-image-box{
    position: relative;
  }
  .about-image-box .about-image-two{
    margin-left: -100px;
  }
  .about-image-box .experience-box{
    padding: 25px 40px;
    background-color: var(--primary);
    position: absolute;
    right: 75px;
    bottom: 30px;
  }
  .about-image-box .experience-box h4{       
    font-size: 38px;
    color: var(--white);
    font-family: 'Outfit';
    line-height: 48px;
    font-weight: 600;
    margin-bottom: 10px;    
  }
  .about-image-box .experience-box p{    
    font-size: 24px;
    line-height: 36px;
    color: var(--white);
    font-family: 'Outfit';
    font-weight: 400;
    margin-bottom: 0;
  }

  /* services-section */
  .services-section{
    padding: 60px 0 60px 0;
    background-color: #f6f6f9;
  }
  .main-heading span{
    text-transform: uppercase;
    display: block;
    padding-bottom: 5px;
  }
  .services-section .main-heading{
    text-align: center;
    padding-bottom: 30px;
  }
  .services-section .main-heading span{
    text-transform: uppercase;
    display: block;
    padding-bottom: 10px;
  }
.services-section [class*="col-"]{
	margin-bottom:25px;
}
  .services-box{
    padding: 40px;
    background-color: var(--white);
    position: relative;
    transition: all 0.5s;
	  height:100%
  }
  .services-box:hover{
    background-color: var(--primary) !important;
  }
  .services-image{
    position: relative;
    margin-bottom: 30px;
  }
  .services-image img.service-img{
    width: 100%;
	  height:200px;
	  object-fit:cover;
  }
  .services-box .service-icon-box{
    position: absolute;
    top: 0;
    left: 0;
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFA500;
  }
  .services-content h6{
    font-size: 22px;
    font-weight: 600;
    color:#FFA500;
    font-family: 'Outfit';
    text-transform: capitalize;
    margin-bottom: 15px;
  }
  .services-content p{    
    font-size: 16px;    
    font-weight: 400;
    color:#313131;
    line-height: 24px;
    font-family: 'Be Vietnam Pro';
    margin-bottom: 25px;
  }
  .services-box:hover .services-content h6{
    color: var(--white);
  }
  .services-box:hover .services-content p{
    color: var(--white);
  }
  .services-content .btn{
    color: var(--black) !important;
    border-color:#F6F6F9 !important;
    background-color: #F6F6F9 !important;
  }
  .services-content .btn span{
    background-color: var(--primary);
  }
  .services-content .btn span svg path{
    fill: var(--white);
  }

  /* choose-section */
  .choose-section{
    padding: 60px 0;
  }

  /* projects-section */
  .projects-section{
    padding: 60px 0 60px 0;
    background-color: #F6F6F9;
  }
  .projects-section .main-heading{
    margin-bottom: 50px;
  }
  .projects-section .main-heading h2{
    margin-bottom: 0;
  }
  .projects-slider{
    max-width:1640px;
    margin-right: 0;
    margin-left: auto;
  }
  .projects-item{
    padding: 0 12px;
  }
  .projects-box{
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  .projects-box .projects-image{
    width: 100%;
  }
  .projects-box .projects-image img{
    width: 100%;
  }
  .projects-box .projects-content{
    position: absolute;
    left: 0;
    right: 0;
    bottom: -100%;
    padding: 25px 40px;
    transition: all 0.5s;
    background: linear-gradient(180.06deg, rgba(0, 0, 0, 0) -1.99%, #343D8E 65.24%);
  }
  .projects-box:hover .projects-content{
    bottom: 0;
  }
  .projects-box .projects-content h6{
    font-size: 22px;    
    font-weight: 600;
    color: var(--white);
    font-family: 'Outfit';    
    text-transform: capitalize;
    margin-bottom: 15px;
  }
  .projects-box .projects-content p{        
    font-size: 16px;
    line-height: 24px;
    color: var(--white);
    font-weight: 400;
    font-family: 'Be Vietnam Pro';    
  }
  .projects-box .projects-content .btn{
    color: var(--black) !important;
    border-color: var(--white) !important;
    background-color: var(--white) !important;
  }
  .projects-box .projects-content .btn span{
    background-color: var(--primary);
  }
  .projects-box .projects-content .btn span svg path{
    fill: var(--white);
  }
  .projects-custom-arrow{
    padding: 55px 12px 0 12px;
    max-width:1640px;
    margin-right: 0;
    margin-left: auto;
    display: flex;
  }
  .projects-custom-arrow button{
    padding: 0;
    min-width: 52px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    background-color: transparent !important;
    transition: all 0.5s;
  }
  .projects-custom-arrow button svg{
    color: var(--primary);
    transition: all 0.5s;
  }
  .projects-custom-arrow button:hover{
    background-color: var(--primary) !important;
  }
  .projects-custom-arrow button:hover svg{
    color: var(--white);
  }

  /* testimonials-section */
  .testimonials-section{
    padding: 60px 0;
  }
  .testimonials-section .main-heading{
    text-align: center;
    margin-bottom: 40px;
  }
  .testimonials-section .main-heading span{
    display: block;
    padding-bottom: 10px;
  }
  .testimonials-section .main-heading h2{
    margin-bottom: 0;
  }
  .testimonial-item{
    padding: 0 15px;
  }
  .testimonial-box{
    padding: 25px;  
    border-radius: 5px;
    border: 1px solid #E7EAEC;
    background-color:#F6F6F9;
    min-height: 295px;
  }
  .testimonial-top{
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
  }
  .testimonial-ratings ul.ratings-list{
    display: flex;
    justify-content: flex-end;
  }
  .testimonial-ratings ul.ratings-list li{
    margin-bottom:0;
  }
  .testimonial-content h5{
    font-size: 22px;
    color:#133240;    
    font-weight: 600;
    line-height: 30px;
    font-family: 'Outfit';
    margin-bottom: 10px;
  }
  .testimonial-content p{
    font-size: 16px;
    font-weight: 400;
    color:#313131;
    font-family: 'Be Vietnam Pro';
    line-height: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px;
  }
  .testimonials-slider .slick-dots{
    display: flex;
    justify-content: center;
    margin-top: 35px;
  }
  .testimonials-slider .slick-dots li{
    margin: 0 8px;
  }
.testimonials-slider .slick-dots li button {
    min-width: 30px;
    padding: 0 !important;
    display: flex;
    width: 30px;
    height: 30px;
    justify-content: center;
    min-height: 30px;
    border-radius: 50%;
    background-color: #D9D9D9 !important;
    border: 0;
    padding: 0;
    line-height: normal;
    position: relative;
}
  .testimonials-slider .slick-dots li button::before{
    position: absolute;
    content:'';
    width: 20px;
    height: 20px;
    border: 1px solid transparent;
    border-radius: 50%;
    left: -5px;
  }
  .testimonials-slider .slick-dots li.slick-active button{
    background-color: #FFA500 !important;
  }
  .testimonials-slider .slick-dots li.slick-active button::before{
    border-color: #FFA500;
    display: none;
  }

  /* brand-logo-section */
  .brand-logo-section{
    padding: 80px 0;
    background-color: #F6F6F9;
  }
  .brand-logo-item{
    padding: 0 10px;
  }
  .brand-logo-box{
    text-align: center;
  }
  .brand-logo-box img{
    max-width: 100%;
    display: inline-block;
  }

  /* services-white-section */
  .services-white-section{
    background-color: var(--white);
  }
  .services-white-section .services-box{
    background-color:#F6F6F9;
  }
  .services-white-section .services-image{
    margin-bottom: 20px;
  }  
  .service-date{    
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    color:#FFFFFF;
    font-weight: 500;
    font-family: 'Inter';
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #FFA500;
  }
  .by-admin-text{
    font-size: 16px;
    line-height: 28px;    
    font-weight: 600;
    font-family: 'Inter';
    width: 104px;
    height: 42px;
    line-height: 42px;
    display: block;
    text-align: center;
    border-radius: 30px;
    background-color: #D0D5FF;
    margin-bottom: 15px;
  }
  .services-white-section .services-content .btn{
    background-color: var(--white) !important;
  }

  /* location-section */
  .location-section{
    padding: 60px 0;
  }
  .location-section .main-heading{
    margin-bottom: 50px;
  }
  .location-section .main-heading h2{
    margin-bottom: 0;
  }
  .location-box{
    padding: 10px 20px 10px 15px;
    background: #F6F6F9;
    border: 1px solid #DCDCDC;
    text-align: center;
    max-width: 380px;
  }
  .location-box h4{
    font-size: 32px;
    font-weight: 500;
    color:#FFA500;
    font-family: 'Outfit';    
    margin-bottom: 12px;
  }
  .location-box img{
    max-width: 100%;
    width: 100%;
    margin-bottom: 15px;
  }
  .location-box p{    
    font-size: 22px;    
    color: #343D8E;
    text-align: center;
    font-weight: 600;
    font-family: 'Be Vietnam Pro';
    margin-bottom: 0;
  }
 .location-map-box {
    position: relative;
    max-width: 100%;
}
 .location-map-box iframe.embed-map-frame {
    width: 100% !important;
    height: 340px;
    min-height: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
}
  .location-map-box img{
    max-width: 100%;
    margin-bottom: 15px;
  }
  .location-one{
    position: absolute;
    left: 70px;
    bottom: 120px;
  }
  .location-one svg{
    font-size: 35px;
    color:#FFA500;
    transition: all 0.5s;
  }
  .location-one .active svg{
    font-size: 50px;
    color:#353e8e;
  }
  .location-two{
    position: absolute;
    left: 55px;
    bottom: 215px;
  }
  .location-two svg{
    font-size: 35px;
    color:#FFA500;
    transition: all 0.5s;
  }
  .location-two .active svg{
    font-size: 50px;
    color:#353e8e;
  }
  .location-three{
    position: absolute;
    left: 160px;
    bottom: 230px;
  }
  .location-three svg{
    font-size: 35px;
    color:#FFA500;
    transition: all 0.5s;
  }
  .location-three .active svg{
    font-size: 50px;
    color:#353e8e;
  }
  .location-four{
    position: absolute;
    left: 70px;
    top: 140px;
  }
  .location-four svg{
    font-size: 35px;
    color:#FFA500;
    transition: all 0.5s;
  }
  .location-four .active svg{
    font-size: 50px;
    color:#353e8e;
  }
  .location-five{
    position: absolute;
    left: 170px;
    top: 105px;
  }
  .location-five svg{
    font-size: 35px;
    color:#FFA500;
    transition: all 0.5s;
  }
  .location-five .active svg{
    font-size: 50px;
    color:#353e8e;
  }
  .location-six{
    position: absolute;
    left: 230px;
    top: 65px;
  }
  .location-six svg{
    font-size: 35px;
    color:#FFA500;
    transition: all 0.5s;
  }
  .location-six .active svg{
    font-size: 50px;
    color:#353e8e;
  }
  .location-seven{
    position: absolute;
    left: 280px;
    top: 40px;
  }
  .location-seven svg{
    font-size: 35px;
    color:#FFA500;
    transition: all 0.5s;
  }
  .location-seven .active svg{
    font-size: 50px;
    color:#353e8e;
  }
  .location-eight{
    position: absolute;
    left: 365px;
    top: 5px;
  }
  .location-eight svg{
    font-size: 35px;
    color:#FFA500;
    transition: all 0.5s;
  }
  .location-eight .active svg{
    font-size: 50px;
    color:#353e8e;
  }
  .location-nine{
    position: absolute;
    right: 150px;
    top: 95px;
  }
  .location-nine svg{
    font-size: 35px;
    color:#FFA500;
    transition: all 0.5s;
  }
  .location-nine .active svg{
    font-size: 50px;
    color:#353e8e;
  }
  .location-ten{
    position: absolute;
    right: 70px;
    top: 210px;
  }
  .location-ten svg{
    font-size: 35px;
    color:#FFA500;
    transition: all 0.5s;
  }
  .location-ten .active svg{
    font-size: 50px;
    color:#353e8e;
  }
  .location-eleven{
    position: absolute;
    right: 110px;
    bottom: 65px;
  }
  .location-eleven svg{
    font-size: 35px;
    color:#FFA500;
    transition: all 0.5s;
  }
  .location-eleven .active svg{
    font-size: 50px;
    color:#353e8e;
  }

  /* footer-section */
  .footer-bg{
    background-color: var(--primary);
    background-image: url('../images/footer-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    padding-top:90px;
  }
  .contact-box{
    padding:25px 30px;
    text-align: center;
    background-color:#464e98;
    height: 100%;
    color: #fff;
  }
  .contact-box svg{
    margin-bottom: 25px;
  }
  .contact-box h6{    
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    font-family: 'Be Vietnam Pro';
    margin-bottom: 0;
  }
  .contact-box p{
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    min-height: 36px;
    line-height: 20px;
    font-family: 'Be Vietnam Pro';
    margin-bottom: 0;
  }
  .contact-box a{    
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    font-family: 'Be Vietnam Pro';
  }
  .footer-box h5{
    font-size: 20px;
    color: var(--white);    
    font-weight: 600;
    line-height: 28px;
    text-transform: uppercase;
    font-family: 'Be Vietnam Pro';
    margin-bottom: 25px;
  }
  .footer-box p{
    font-size: 18px;    
    font-weight: 400;
    color: var(--white);
    font-family: 'Be Vietnam Pro';
    line-height: 28px;
    margin-bottom: 30px;
    margin-right: 10px;
  }
  .footer-box .socials{
    display: flex;
  }
  .footer-box .socials li{
    margin-bottom: 0;
    margin-right: 30px;
  }
  .footer-box .socials li a{
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.5s;
    background: rgba(255, 255, 255, 0.1);
  }
  .footer-box .socials li a svg{
    color: var(--white);
    font-size: 16px;
  }
  .footer-box .socials li a:hover{
    transform: rotate(360deg);
  }
  .footer-box .footer-nav li a{
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    line-height: 28px;
    font-family: 'Be Vietnam Pro';
  }
  .footer-box .footer-address li{
    margin-bottom: 10px;
  }
  .footer-box .footer-address li span{
    font-size: 18px;    
    font-weight: 400;
    color: var(--white);
    font-family: 'Be Vietnam Pro';
    line-height: 28px;
    display: block;    
    padding-bottom: 5px;
  }
  .footer-box .footer-address li span svg{
    margin-right: 10px;
  }
  .footer-box .footer-address li p{
    margin-bottom: 0;
  }
  .news-letter-box{
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--white);
    margin-top: 50px;
  }
  .news-letter-box .form-group{
    max-width: 375px;
    width: 100%;
    position: relative;
    margin-bottom: 0;
  }
  .news-letter-box .form-group .email-icon{
    position: absolute;    
    top: 8px;
    left: 20px;
  }
  .news-letter-box .form-group .email-icon svg{
    font-size: 16px;
    color: var(--black);
    opacity: 0.5;
  }
  .news-letter-box .form-group .form-control{
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-text) !important;
    border-radius: 50px;
    height: 40px;
    border: 1px solid var(--gray-text) !important;
    padding: 0 120px 0 45px;
  }
  .news-letter-box .form-group .btn{
    font-size: 10px;
    line-height: 20px;
    padding: 5px 5px 5px 18px;
    position: absolute;
    top: 4px;
    right: 4px;
  }
  .news-letter-box .form-group span{
    width: 20px;
    height: 20px;
    margin-left: 5px;
  }
  .news-letter-box .form-group span svg{
    width: 12px;
    height: 12px;
  }
  .copy-right{
    padding: 25px 0;
  }
  .copy-right p{
    font-size: 16px;
    color: var(--white);
    line-height: 22px;
    font-weight: 400;
    text-align: center;
    font-family: 'Be Vietnam Pro';
    margin-bottom: 0;    
  }

  /* inner-page-banner */
  .inner-page-banner{
    position: relative;
  }
  .inner-page-banner img{
    width: 100%;
  }
  .inner-page-banner .container{
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translate(0 , -50%);
  }  
  .inner-page-banner-content p{    
    font-size: 26px;
    line-height: 35px;
    color: var(--white);
    font-weight: 600;
    font-family: 'Be Vietnam Pro';
    margin-bottom: 15px;
  }  
  .breadcrumb-list{
    display: flex;
  }
  .breadcrumb-list li{
    margin-bottom: 0;
    margin-right: 15px;
  }
  .breadcrumb-list li,
  .breadcrumb-list li a{
    font-size: 20px;
    line-height: 35px;
    font-weight: 500;
    color: var(--white);
    font-family: 'Be Vietnam Pro';
  }
  .breadcrumb-list li.active a{
    color: var(--yellow-color);
  }

  /* service-details-section */
  .service-details-section{
    padding-top: 110px;
  }
  .our-services-box{
    padding: 30px;
    margin-bottom: 30px;
    background-color:#F6F6F9;
  }
  .our-services-box h5{
    font-size: 24px;
    line-height: 28px;
    color: var(--black);
    font-weight: 600;
    font-family: 'Be Vietnam Pro';
    margin-bottom: 20px;
  }
  .our-services-box .services-list li{
    margin-bottom: 10px;
  }
  .our-services-box .services-list li .btn{
    font-size: 18px;
    font-weight: 500;
    color: var(--black) !important;
    padding: 9px 9px 9px 20px;
    text-transform: capitalize;
    font-family: 'Be Vietnam Pro';
    width: 100%;
    max-width: 100%;
    justify-content: space-between;
    border-color: var(--white) !important;
    background-color: var(--white) !important;
  }
  .our-services-box .services-list li .btn:hover{
    color: var(--white) !important;
    border-color: var(--primary) !important;
    background-color: var(--primary) !important;
  }
  .our-services-box .services-list li .btn span{
    border: 0 !important;
    background-color: var(--primary) !important;
  }
  .our-services-box .services-list li .btn:hover span{
    background-color: var(--white) !important;
  }
  .our-services-box .services-list li .btn svg path{
    fill: var(--white);
  }  
  .our-services-box .services-list li .btn:hover svg path{
    fill: var(--primary);
  }
  
  .contact-list-box{
    padding: 30px;
    margin-bottom: 30px;
    background-color: #F6F6F9;
  }
  .contact-list-box h5{
    font-size: 24px;
    line-height: 28px;
    color: var(--black);
    font-weight: 600;
    font-family: 'Be Vietnam Pro';
    margin-bottom: 50px;
  }
  .contact-list-box ul.contact-list{
    padding-bottom: 50px;
    margin-bottom: 35px;
    border-bottom: 1px solid var(--black);
  }
  .contact-list-box ul.contact-list li{
    display: flex;
    margin-bottom: 40px;
  }
  .contact-list-box ul.contact-list li:last-child{
    margin-bottom: 0;
  }
  .contact-list-box ul.contact-list li .contact{
    padding-left: 30px;
  }
  .contact-list-box ul.contact-list li .contact span{
    font-size: 18px;
    font-weight: 500;
    color: var(--black);
    display: block;
    font-family: 'Be Vietnam Pro';        
  }
  .contact-list-box ul.contact-list li .contact a{
    font-size: 16px;
    font-weight: 500;
    color:#787878;
    font-family: 'Be Vietnam Pro';
  }
  .contact-list-box ul.contact-list li .contact p{    
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0; 
    font-family: 'Be Vietnam Pro';
  }
  .contact-list-box .follow-us h5{
    margin-bottom: 20px;
  }
  .contact-list-box .follow-us .socials{
    display: flex;
  }
  .contact-list-box .follow-us .socials li{
    margin-right: 30px;
    margin-bottom: 0;
  }
  .contact-list-box .follow-us .socials li:last-child{
    margin-right: 0;
  }
  .contact-list-box .follow-us .socials li a{
    width:36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    transition: all 0.5s;
  }
  .contact-list-box .follow-us .socials li a svg{
    font-size: 15px;
    color: var(--primary);
  }
  .contact-list-box .follow-us .socials li a:hover{
    transform: rotate(360deg);
  }
  .need-help-box{
    width: 100%;
  }
  .need-help-image{
    width: 100%;
  }
  .need-help-image img{
    width: 100%;
  }
  .need-help-content{
    text-align: center;
    padding: 10px 30px 30px 30px;
    background-color: var(--primary);
  }
  .need-help-content .call-now{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary);
    margin:-50px auto 10px auto;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .need-help-content h5{
    font-size: 26px;    
    font-weight: 600;
    color: var(--white);
    text-align: center;
    font-family: 'Outfit';
    margin-bottom: 18px;
  }
  .need-help-content .phone-number{
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    display: block;
    font-family: 'Be Vietnam Pro';
    margin-bottom: 20px;
  }
  .need-help-content .btn{
    margin: auto;
    color: var(--primary) !important;
    border-color: var(--primary) !important;
    background-color: var(--white) !important;
  }
  .need-help-content .btn span{
    background-color: var(--primary);
  }
  .need-help-content .btn span svg path{
    fill: var(--white);
  }
  .service-details-content h2{
    margin-bottom: 15px;
  }
  .service-details-content p{
    font-size: 16px;
    line-height: 26px;
    color: #000;
  }
  .service-details-content ul, ol{
    font-size: 16px;
    line-height: 26px;
    color: #000;
  }
  .service-details-content img{
    width: 100%;
    margin-bottom: 22px;
  }
  .faq-section .card{
    border: 0;
    border-radius: 0;
    margin-bottom: 15px;
  }
  .card-header{
    padding: 0;
    border: 0;
    border-radius: 0 !important;
    background-color: transparent;
  }
  .card-header a{
    font-size: 18px;
    font-weight: 500;
    color: var(--primary);
    padding: 27px 60px 27px 30px;
    position: relative;
    width: 100%;
    display: block;
    font-family: 'Be Vietnam Pro';
    background-color: #F6F6F9;
  }
  .card-header a::before{
    content:"\f101";
    font-size: 16px;
    color:var(--primary);
    font-family:'fontawesome';
    position: absolute;
    top: 27px;
    right: 35px;
    transform: rotate(90deg);
  }
  .card-header a.collapsed{
    color: var(--black);
  }
  .card-header a.collapsed::before{
    color:#787878;
    transform: rotate(0deg);
  }
  .card-body{
    padding: 0 30px 20px 30px; 
    background-color: #F6F6F9;
  }
  .card-body p{    
    font-size: 18px;
    font-weight: 400;
    color:#787878;
    line-height: 28px;
    font-family: 'Be Vietnam Pro';
    margin-bottom: 0;
  }
  .pagination-list{
    padding-top: 25px;
  }
  .pagination-list ul{
    display: flex;
    justify-content: center;
  }
  .pagination-list ul li{
    margin: 0 10px;
  }
  .pagination-list ul li a{
    width: 52px;
    height: 52px;
    line-height: 52px;
    text-align: center;
    color: #000000;
    display: inline-block;
    background-color: #F6F6F9;
  }
  .pagination-list ul li a.active,
  .pagination-list ul li a:hover{
    color: var(--white);
    background-color: #FFA500;
  }
  .project-top-details{
    padding-bottom: 35px;
    margin-bottom: 40px;
    border-bottom: 2px solid #D9D9D9;
  }
  .project-top-details ul{
    display: flex;
    flex-wrap: wrap;
  }
  .project-top-details ul li{
    width: 25%;
    margin-bottom: 0;
  }
  .project-top-details ul li h6{
    font-size: 26px;
    font-weight: 600;
    color: var(--black);
    line-height: 35px;
    margin-bottom: 15px;
    font-family: 'Be Vietnam Pro';
  }
  .project-top-details ul li p{    
    font-size: 20px;
    font-weight: 500;
    line-height: 35px;
    font-family: 'Be Vietnam Pro';
    margin-bottom: 0;
  }
  .our-project-list ul{
    display: flex;
    flex-wrap: wrap;
  }
  .our-project-list ul li{
    font-size: 19px;
    line-height: 28px;
    color: #787878;
    font-weight: 400;
    font-family: 'Be Vietnam Pro';
    display: flex;
    width: 50%;
    padding-right: 40px;
  }
  .our-project-list ul li:nth-child(even){
    padding-right: 0;
  }
  .our-project-list ul li svg{
    margin-right: 10px;
  }

  /* contact-section */
  .contact-section{
    padding: 100px 0;
  }
  .map-section iframe{
    width: 100%;
    height: 525px;
    margin-bottom:-10px;
  }
  .contact-form .main-heading{
    margin-bottom: 30px;
  }
  .contact-form .main-heading span{        
    font-size: 18px;
    font-weight: 400;
    color: #787878;
    line-height: 28px;
    font-family: 'Be Vietnam Pro';    
  }
  .contact-form .main-heading h2{
    margin-bottom: 0;
  }
  .message-group{
    margin-bottom: 30px;
  }



/* Menu in header dorpdown css  */
@media only screen and (min-width:991px) {
.header-bg .nav-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.header-bg .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: #fff;
    min-width: max-content;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    list-style: none;
    border-top: 3px solid #FFA500;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.3s ease;
    padding:10px;
}
.header-bg .navbar-nav li a.nav-link:hover .arrow-menu img {
    transform: rotate(180deg);
    transition: 0.3s;
    filter: brightness(0) saturate(100%) invert(49%) sepia(76%) saturate(778%) hue-rotate(;
 
346deg) brightness(98%) contrast(95%)
}
}
.navbar.navbar-expand-lg .navbar-nav .nav-item a:hover, .navbar.navbar-expand-lg .navbar-nav .nav-item a.active {
    color: #FFA500 !important;
}

.tabingMain{position:relative}
.tabingMain .tabing-wrapper{position:relative}
.tabingMain .tabing-wrapper .heading{position:absolute;z-index:1;width:100%;top:100px}
.tabingMain .tabing-wrapper .heading .headingWrap{display:flex;justify-content:space-between}
.tabingMain .tabing-wrapper .heading .headingWrap h2{color: #ED6818;font-weight: 700;}
.tabs-slides-paging ul{padding: 0 20px;background: #343d8e;margin: 0;border-radius: 20px 0 0 0;}
.tabs-slides-paging ul li{font-size:14px;padding:18px 15px;background:#343D8E;margin: 0;display: flex;align-items: center;gap:10px;}
.tabs-slides-paging .slick-track{padding: 0 20px;background: #343d8e;margin: 0;border-radius: 20px 0 0 0;width:auto !important;transform:none !important}
.tabs-slides-paging .slick-track li{font-size:14px;padding:18px 15px;background:#343D8E;margin: 0;display: flex;align-items: center;gap:10px;width:auto !important;position:relative;opacity:0.5;cursor:pointer}
.tabs-slides-paging .slick-track li:after{position:absolute;height:3px;width:0;transition: width 5s ease-in-out; ;content:"";left:0;bottom:0;background:#FFF;opacity:0}
.tabs-slides-paging .slick-track li.slick-current{font-weight:600;opacity:1}
.tabs-slides-paging .slick-track li.slick-current:after{width:100%;opacity:1}
.tabingMain .item{padding:110px 0;min-height:100%;display:flex;align-items:flex-end;background-size:cover;position:relative}
.tabingMain .item:before{content:"";position:absolute;height:100%;width:100%;left:0;top:0;background: linear-gradient(79.76deg, rgba(20, 31, 71, 0.9) 0%, #343D8E 100%);}
.tabingMain .item .caption {
    position: relative;
    z-index: 1;
    max-width: 850px;
    margin-top: 100px;
}
.tabingMain .item .caption h2{font-size: 64px;font-weight: 900;color: #FFF;display:flex;align-items:center;margin-bottom:40px}
.tabingMain .item .caption h2 img{margin-right:24px}
.tabingMain .item .caption p{font-size:22px;font-weight:400;color:#FFF;margin-bottom:30px}
.tabingMain .item .caption .btn{background:#FFF !important;color:#343D8E !important}
.tabingMain .item .caption .btn span{background:#343D8E !important}
.tabingMain .item .caption .btn span svg path{fill:#FFF}
.tabingMain .item .caption .btn:hover{background:#343D8E !important;color:#FFF !important}
.tabingMain .item .caption .btn:hover span{background:#FFF !important}
.tabingMain .item .caption .btn:hover span svg path{fill:#343D8E}
.tabs-slides-paging .slick-track li img{max-width:25px}
@media(max-width:1279px){
	.tabingMain .tabing-wrapper .heading .headingWrap{display:block}
}
@media(max-width:767px){
	.tabingMain .tabing-wrapper .heading{top:40px}
	.tabs-slides-paging .slick-track{padding:20px}
	.tabs-slides-paging .slick-track li{width:100% !important;padding:10px 0}
	.tabingMain .item{padding:380px 0 60px;min-height:inherit}
	.tabingMain .item .caption h2{margin-bottom:20px}
	.tabingMain .item .caption h2 img{max-width:50px;margin-right:15px}
}



/* Add-css 7_nov-2025 */
.top-nav-buttons .btn-check:checked+.btn, .top-nav-buttons .btn.active, .top-nav-buttons .btn.show, .top-nav-buttons .btn:first-child:active, :not(.btn-check)+.btn:active {
    border-color: transparent !important;
}
.top-nav-buttons a {
  outline: none !important;
  box-shadow: none !important;
}
.top-nav-buttons a:focus,
.top-nav-buttons a:active {
  outline: none !important;
  box-shadow: none !important;
}

.top-nav-buttons ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.top-nav-buttons ul li {
  position: relative;
  margin: 0 15px;
}

.top-nav-buttons ul li a {
  text-decoration: none;
  color: #333;
  padding: 10px 0;
  display: inline-block;
  position: relative;
}

.top-nav-buttons ul li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  width: 0%;
  background-color: #FFA500;
  transition: width 0.4s ease;
}
.top-nav-buttons ul li.active::after {
  width: 100%;
}

.top-nav-buttons.sticky {
    position: fixed;
    top: 122px;
    left: 0;
    right: 0;
    z-index: 99;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-nav-buttons .scn-btn {
    margin-bottom: 0;
}
.top-nav-buttons .nav.navbar-nav {
    display: flex !important;
    justify-content: center !important;
    flex-direction: row;
    background-color: #343d8e;
}
.top-nav-buttons {background-color: #343d8e;transition: all 0.7s ease;}
.top-nav-buttons .btn.btn-bg {
    padding: 22px 18px;
    border-radius: 0px;
    display: inline-block;
    text-transform: uppercase;
}
.oprate-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 72px;
}
.operation-scn {
    padding: 60px 0;
    width: 100%;
    display: inline-block;
}
.grop-btn {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.oprate-content-item p {
    margin-bottom: 32px;
}
.oprate-view img {
    height: 360px;
    object-fit: cover;
    width: 100%;
}
.oprate-view-text {
    background-color: #343d8e;
    padding: 20px 16px;
}
.oprate-view-text p {
    color: #fff;
}
.oprate-view-text .btn {
    padding: 0;
}
.Applied-Solutions-scn {
    padding: 80px 0;
}
.service-card-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.service-card-item {
  background: #fff;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}
.service-card-item .btn {
    position: absolute;
    right: -10px;
    padding: 0;
    background-color: transparent !important;
    width: 60px;
    height: 60px;
    min-width: 60px;
    bottom: -10px;
    border-radius: 32px;
}
.service-card-item .btn:hover span svg path {
    fill: #ffffff;
    transition: 0.4s all;
}
.service-card-item .btn:hover { background-color: #343d8e !important;}
.service-card-item .btn:hover span { background-color: transparent !important;border-left-color: transparent !important;}
.Applied-Solutions-scn .main-heading {
    margin-bottom: 50px;
}
.service-card-item .service-card-content {
    padding: 30px 20px 40px 20px;
}
.service-card-item .service-card-img img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}
.aplied-service-slider {
    display: block;
    margin-bottom: 80px;
}
.aplied-service-slider .slick-slide {
margin: 0 15px;
    box-sizing: border-box;
}
.aplied-service-slider .slick-prev {
    transform: rotate(180deg);
    left: -8px;
    background-image: url(https://red-ferret-224134.hostingersite.com/wp-content/uploads/2025/11/right-arrow.svg);
    background-position: right;
    background-repeat: no-repeat;
    width: 50px;
    min-width: 50px;
    height: 50px;
    font-size: 0;
    border: 3px solid #343d8e;
    top: 45%;
    background-position: calc(3px + 10px) center;
    background-size: 12px;
    border-radius: 37px;
    background-position: center;
        left: -10px !important;
}
.aplied-service-slider .slick-next {
    right: -8px;
    background-image: url(https://red-ferret-224134.hostingersite.com/wp-content/uploads/2025/11/right-arrow.svg);
    background-position: right;
    background-repeat: no-repeat;
        width: 50px;
    min-width: 50px;
    height: 50px;
    font-size: 0;
    border: 3px solid #343d8e;
    top: 50%;
    background-size: 12px;
    background-position: calc(3px + 10px) center;
    border-radius: 37px;
        right: -10px !important;
            background-position: center;
}
.aplied-service-slider .slick-arrow.slick-prev::before, .aplied-service-slider .slick-arrow.slick-next::before {display: none;}

.aplied-service-slider .service-card-item:hover {
  transform: translateY(0px);
  box-shadow: inherit;
}
.aplied-service-slider .service-card-item .service-card-content {
padding-bottom: 20px !important;
}

.blog-wrap-items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
}
.blog-card-item .blog-img img {
    width: 80px;
    border-radius: 100px;
    height: 80px;
    min-width: 80px;
}
.blog-card-item .blog-img {
    display: flex;
    align-items: center;
    gap: 18px;
        margin-bottom: 35px;
}
.blog-card-item .author {
    font-weight: 600;
    display: block;
}
.blog-card-item {
    padding: 24px 20px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: rgb(99 99 99 / 38%) 0px 2px 8px 0px;
}
.blog-feild-scn {
    padding: 60px 0;
    width: 100%;
    display: inline-block;
}
.blog-feild-scn .main-heading {
    margin-bottom: 50px;
}
.blog-card-item .btn {
    background-color: transparent !important;
    border-color: transparent !important;
    color: #343d8e !important;
    padding: 0;
}
  .section-gallery {
        padding: 80px 0;
    }
 
    .section-gallery .gallery-card {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
        justify-content: center;
        align-items: center;
    }
 
    .section-gallery .gallery-card .card {
        background: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        color: #222;
        border-radius: 2px;
        overflow: hidden;
    }
 
    .section-gallery .gallery-card .card-image {
        background: #fff;
        display: block;
        padding-top: 70%;
        position: relative;
        width: 100%;
    }
 
    .section-gallery .gallery-card .card-image img {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .aplied-service-slider .service-card-content h5 {
    margin-bottom:12px;
}
.Business-scn {
background-color: #F6F6F9;
}
#Applied-Solutions .service-card-item {
    box-shadow: 0 5px 15px rgb(0 0 0 / 25%);}
      .aplied-service-slider .slick-arrow {font-size: 0 !important;}
      .header-bg .sub-menu li {
    margin-bottom: 10px;
}

/* Add-css 12-29-2025 start */
@media only screen and (min-width: 991px) {
.header-bg .Mobile-icon {
    display: none;
}
.header-bg .navbar-expand-lg .navbar-collapse {
    justify-content: end !important;
}
.header-bg .cart-icon {
    margin-left: 30px;
}
}

@media only screen and (max-width: 991px) {
      .header-bg .cart-icon {
        margin-right: 63px !important;
    }
      .header-bg .Mobile-icon .cmn-btn.outline-btn {
        z-index: 1;
        padding: 0;
        display: flex;
        width: 40px;
        margin-top: -20px;
        height: 40px;
        min-width: 40px;
        justify-content: center;
        align-items: center;
        margin-bottom: 0;
        padding: 8px;
        position: absolute;
        right: 88px;
    }
    .header-bg .Mobile-icon .outline-btn:hover {
    background-color: transparent;
}
     .header-bg .Mobile-icon a span img {
    filter: brightness(0) saturate(100%) invert(19%) sepia(16%) saturate(6590%) hue-rotate(216deg) brightness(102%) contrast(86%);
}
  }


.contact-btn {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 8px;
    color: #fff !important;
    margin-left: 22px;
        font-size: 16px;
    font-weight: 500;
}
.contact-btn .arrow-menu {
    padding-bottom: 0;
    transform: rotate(-92deg);
    font-size: 18px !important;
      transition: 0.3s all;
}

.contact-btn:hover .arrow-menu {
    transform: rotate(-92deg) translateY(5px);
    transition: 0.3s all;
}


.page-id-880 .banner-section {
    padding: 80px 0 80px 0;}
    .banner-content p {margin-bottom: 0;}
.page-id-880 .breadcrumb-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
}
.page-id-880.breadcrumb-list li {position: relative;}
.page-id-880 .breadcrumb-list li a span {padding-bottom: 0;}
.page-id-880 .breadcrumb-list li a span {padding-bottom: 0;}

.page-id-880 .breadcrumb-list li a .icon-home {filter: brightness(0) saturate(100%) invert(57%) sepia(85%) saturate(1003%) hue-rotate(1deg) brightness(104%) contrast(103%);}
.page-id-880 .breadcrumb-list li:after {
    background-color: #FFA500;
    width: 8px;
    height: 8px;
    border-radius: 100px;
    position: absolute;
    left: -20px;
    top: 15px;
    content: "";
}
.page-id-880 .breadcrumb-list {
    gap: 15px;
    margin-bottom: 24px;
}
.page-id-880 .breadcrumb-list li:first-child::after {display: none;}
.Prevent-downtime-scn {
    padding: 60px 0;
    width: 100%;
}
.page-id-880 .blog-feild-scn {
    background-color: #F6F6F9;
}

.page-id-880 .blog-wrap-items {
    grid-template-columns: 1fr 1fr;
}
ul.slick-dots li {
    margin-bottom: 0;
}

ul.slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 30px;
}

ul.slick-dots li button {
  font-size: 0 !important;
    width: 17px;
    height: 17px;
    min-width: 17px;
    max-width: 17px;
    border-radius: 0px !important;
    padding: 0;
    clip-path: polygon(50% 0%, 100% 48%, 49% 100%, 49% 100%, 0 49%);
    clip-path: polygon(50% 7%, 87% 24%, 89% 72%, 51% 91%, 51% 91%, 13% 72%, 13% 26%);
}

.slick-slide {
    padding: 0 10px;
}

/*casestudy-main*/
.casestudy-main .desc p{font-size:16px;line-height:1.5;font-weight:300;}