body {
    font-family: 'Segoe UI', sans-serif;
  }
  
  .top-bar {
    background: linear-gradient(to right, #5779f3, #70d3f2);
    padding: 20px 20px;
    font-family: 'Poppins';
  }
  
  .navbar-brand strong {
    color: #1e1e2f;
  }
  
  .hero-section {
    background: url('img/hero-bg.jpg') no-repeat center center/cover;
    min-height: 90vh;
    position: relative;
    font-family: 'Poppins';
  }
  
  .hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
  }
  
  .hero-section .container {
    position: relative;
    z-index: 2;
  }

  .hero-content a{
    background: linear-gradient(to right, #4D51AB, #55CEE3);
    border: 0px;
    padding: 10px 30px;
    color: #fff;
  }
  .hero-content a:hover{
    background: linear-gradient(to left, #4D51AB, #55CEE3);
    border: 0px;
    padding: 10px 30px;
    color: #fff;
  }

  .hero-content h1{
    margin-top: 50px;
    margin-bottom: 30px;
    color: #edebeb;
  }
  .hero-content p{
    font-size: 16px;
    margin-bottom: 50px;
    color: #edebeb;
  }
  .hero-content{
    width: 60%;
    margin:auto 70px;
  }
  @media (max-width:767px) {
    .hero-content{
      width: 98%;
      margin: 0;
    }
  }





  .top-bar i{
    margin: auto 8px;
  }
  .top-bar p{
    margin-bottom: 0px;
    color: #fff;
  }
  .top-bar a{
    color: #fff;
    margin: auto 8px;
  }
  .top-bar .helping{
    text-decoration: none;
  }
  .top-bar a:hover,.top-bar i:hover{
    color: #000;
  }
  @media (max-width:992px) {
    .top-bar{
      display: none;
    }
  }
  .get_btn{
    background: linear-gradient(to right, #4D51AB, #55CEE3);
    padding: 10px 30px;
    font-family: 'Poppins';
    border: 0px;
    border-radius: 25px;
    color: #fff;
  }
  .get_btn:hover{
    background: linear-gradient(to left, #4D51AB, #55CEE3);
  }
  .navbar{
    /* padding: 20px; */
    font-family: 'Poppins';
  }
  .navbar .nav-link{
    color: #000;
    margin: auto 5px;
  }
  .navbar-brand img{
    width: 90px;
    height: auto;
  }

  
.section_2{
    padding-top: 4%;
    padding-bottom: 4%;
}
.section_2 p{
  text-align: center;
  color: #6c6c6c;
  font-family: 'Poppins';
}
.section_2 h2{
    font-size: 40px;
    font-weight: 700;
    font-family: 'Poppins';
    text-align: center;
    background: linear-gradient(to right, #4D51AB, #55CEE3);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 20px;
    margin-bottom: 20px;
    
}

.slide-track img {
    animation: scroll 60s linear infinite;
  }
  
  .slide-track {
    width: 100%;
    display: flex;
    /* gap: 3em; */
    overflow: hidden;
  }
  
  .slider {
    margin-top: 60px;
    padding: 50px 0px;
    padding-bottom: 70px;
    
  }
  
  @keyframes scroll {
    0% {transform: translateX(0);}
    100% {transform: translatex(-1000%)}
  }
@media (max-width:767px) {
  .section_2 h2{
    font-size: 30px;
  }
}












  .section_3 {
    font-family: 'Poppins';
    padding-top: 5%;
    margin-bottom: 5%;
  }
.section_3 h6{
color: #4D51AB;
margin-bottom: 20px;
}
.section_3 h3{
    font-size: 40px;
    background: linear-gradient(to right, #4D51AB, #55CEE3);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}
.section_3 p{
    margin-bottom: 10px;
    font-size: 18px;
    text-align: justify;
    color: #666;
}
.section_3 .mtb-auto{
    margin-top: auto;
    margin-bottom: auto;
}
.service_section{
    margin-bottom: 5%;
}
.service_div {
    position: relative;
    font-family: 'Poppins';
    overflow: hidden;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0px 0px 12px -5px #9f9696;
    background: #fff;
    z-index: 1;
    margin-bottom: 30px;
}
.service_div::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #4D51AB, #55CEE3);
    transition: top 0.5s ease-in-out;
    z-index: -1;
    animation-delay: 0.2s;
}
.service_div:hover::before {
    top: 0;
}
.service_div:hover{
    color: #fff;
}
.service_div svg{
    margin-bottom: 25px;
}
.service_div p{
    color: #666;
    margin-top: 20px;
}
.service_div:hover p{
    color: #fff;
}
.service_div a{
    text-decoration: none;
    color: #55CEE3;
}
.service_div:hover svg path,
.service_div:hover svg circle {
    fill: #fff;
}
@media (min-width:1200px) {
    .service_div{
        height: 400px;
    }
}
@media (max-width:767px) {
  .section_3 h3{
    font-size: 30px;
  }
  .section_3 p{
    font-size: 16px;
  }
}



.faq-section{
    margin-top: 140px;
    font-family: 'Roboto';
}
.faq-section h2{
    color: #4D51AB;
    font-size: 40px;
    font-weight: 700;
}
@media (max-width:767px) {
  .faq-section h2{
    font-size: 30px;
  }
}
.accordion {
    width: 100%;
    margin: 20px auto;
    border-radius: 10px;
  }

  .accordion-item {
    margin-bottom: 20px;
    overflow: hidden;
    transition: background 0.3s;
    border-radius: 10px;
    border: 2px solid #dee2e6 !important;
  }

  .accordion-item.active {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .accordion-header {
    padding: 15px;
    background: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    border-radius: 10px;
    transition: background 0.3s, border-radius 0.3s;
  }

  .accordion-header:hover {
    background: #e0e0e0;
  }

  .accordion-icon::before {
    content: "+";
    font-size: 20px;
    transition: transform 0.3s;
  }

  .accordion-item.active .accordion-icon::before {
    content: "-";
  }

  .accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    transition: max-height 0.4s ease, padding 0.3s ease;
  }

  .accordion-item.active .accordion-content {
    padding: 15px;
    max-height: 500px; 
  }

  .accordion-item.active .accordion-header {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background: #e0e0e0;
  }

footer{
    /* background-color:#f3f3f3 ; */
    background: linear-gradient(90.15deg, #55CEE3 1.15%, #4D51AB 98.84%);
    /*margin-top: 120px;*/
    padding: 40px 0px 20px;
    font-family: 'Roboto';
}
.footer-header{
  width: 90px;
  height: auto;
    margin-bottom: 20px;
}
footer h3{
    color: #472a9f !important;
    font-weight: 600;
    margin-bottom: 20px;
}
footer ul li{
  list-style-type: none;
  padding: 10px 0px;
  color: #FFFFFF;
}
footer ul{
  padding-left: 5px !important;
}
footer h5{
  color: #FFFFFF;
  font-weight: 700;
  font-size: 20px;
}
footer h6{
    margin-top: 20px;
    color: #58606a;
    font-weight: 700;
}
footer p{
    margin-bottom: 10px;
    color: #FFFFFF;
}
footer a{
  margin-bottom: 0px !important;
  color: #FFFFFF !important;
  text-decoration: none;
}
.social-icons{
    border: 1px solid #FFFFFF;
    padding: 10px 15px;
    margin: 0px 5px 0px 0px;
    border-radius: 50%;
}
.copyright p{
    text-align: center;
    font-family: 'Roboto';
    margin-bottom: 0px;
    border-top: 1px solid ;
    padding-top: 20px;
    color: #FFFFFF;
}
.footer-para{
    padding-right: 25px;
}
footer .container{
  padding-bottom: 20px;
}

.form-btn-1{
    background-color: #55CEE3;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border:0px;
    border-radius: 10px;
    padding: 10px 20px;
    font-family: 'Roboto';
    margin-top: 5px;
    width: 100%;
}
 form{
    background-color: #fff;
    box-shadow: 0px 0px 12px -7px #000;
    padding: 40px;
    font-family: 'Roboto';
    position: relative;
    border-radius: 20px; 
    overflow: hidden; 
}
@media (max-width:992px) {
  .footer_div{
    margin-top: 10px;
    margin-bottom: 10px;
  }
  footer .social-icons{
    margin-bottom: 20px;
  }
  footer ul{
    margin-bottom: 0px !important;
  }
}
  
 form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 6px; 
    width: 100%;
    background: linear-gradient(to right, #4D51AB, #55CEE3);
    border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

form h3{
    text-align: center;
    font-weight: 800;
    margin-bottom: 20px;
}
.form-div{
    margin-bottom:20px;
    font-family: 'Roboto';
}
.form-div label{
   color: #4D51AB;
   font-weight: 800;
   font-family: 'Roboto';
}
.form-div input,.form-select,.form-div textarea{
    margin-top: 10px;
    padding: 10px;
    border-radius: 8px;
    border:2px solid #cbcbcb !important;
    font-weight: 600;
    font-size: 16px;
    font-family: 'Roboto';
    width: 100%;
}
.form-div input::placeholder,.form-div textarea::placeholder{
    color: #a7a7a7;
}
.form-select {
    color: #999 !important;
    font-weight: 600 !important; 
}
.form-select option[disabled] {
    color: #999 !important;
}




.cta_section{
  padding-top: 4%;
  padding-bottom: 4%;
}
.cta_section .cta-box-image img{
  width: 100%;
    aspect-ratio: 1 / 0.705;
    object-fit: cover;
    border-radius: 30px;
}
.cta-box{
  background: linear-gradient(to right, #4D51AB, #55CEE3);
  padding: 20px 10px;
  border-radius: 20px;
}
.cta_section figure{
  margin: 0px !important;
}
.cta-box-content{
  color: #fff;
  font-family: 'Poppins';
  margin: auto;
}
.cta-box-content h2{
  font-size: 40px;
  font-weight: bold;
}
.cta-contact-item{
  display: flex;
  margin-top: 20px;
}
.cta-contact-item img{
  margin-right: 10px;
}
.cta-contact-content h3{
  font-size: 24px;
}
.cta-contact-content p a{
  color: #e4e4e4;
  text-decoration: none;
}
.cta-contact-info {
  position: relative;
}
.cta_section .cta-contact-info:before {
  content: '';
  position: absolute;
  width: 125px;
  height: 100px;
  bottom: 10px;
  right: 0;
  transform: rotateY(180deg);
  background: url(img/cta-box-arrow.svg) no-repeat;
  background-position: right center;
  background-size: cover;
  animation: ctamovearrow 2s infinite linear alternate;
}
@keyframes ctamovearrow {
  0% {
    transform: rotateY(180deg) translateX(0);
  }
  100% {
    transform: rotateY(180deg) translateX(20px);
  }
}
@media (max-width:767px) {
  .cta-box-content h2{
    font-size: 30px;
  }
}






.about_section{
  font-family: 'Poppins';
  padding: 8% 0 5%;
}
.about_section .about-us-image {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 30px;
  margin-right: 20px;
}
.about-image-box {
  width: calc(50% - 15px);
}
.about-img-1 figure, .about-img-2 figure, .about-img-3 figure {
  display: block;
  border-radius: 30px;
}
.about-img-1 img {
  aspect-ratio: 1 / 1.91;
}
.about-us-content h6{
  font-size: 16px;
  color: #4D51AB;
  margin-bottom: 10px;
}
.about-us-content h2{
  font-size: 40px;
  background: linear-gradient(to right, #4D51AB, #55CEE3);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    font-weight: bold;
}
.about-us-content p,.about-us-content ul li{
  color: #666;
}
.about-img-1 img, .about-img-2 img, .about-img-3 img {
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
}
.get-free-security-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.get-free-security-circle img {
  width: 100%;
  max-width: 166px;
  animation: infiniterotate 20s infinite linear;
}
@keyframes infiniterotate {
  0% {
    transform: rotate(0deg);
}

100% {
    transform: rotate(360deg);
}
}

@media (max-width:767px) {
  .about-us-content h2{
    font-size: 30px;
  }
}



.title_section {
  position: relative;
  background-image: url(img/hero-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 145px 0;
  color: #fff;
  font-family: 'Poppins';
}

.title_section::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(270deg, rgba(1, 5, 53, 0.28) 43.57%, rgba(1, 5, 53, 0.8) 100%);
  z-index: 0;
}

.title_section .container {
  position: relative;
  z-index: 1;
}

.title_section .breadcrumb-item a {
  color: #fff !important;
  text-decoration: none;
}

.title_section .breadcrumb-item {
  color: #fff !important;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: #fff;
  font-size: 12px;
  margin-top: 5px;
  padding: 0 0.5rem;
}


.contact_section_1{
  font-family: 'Poppins';
  text-align: center;
  padding: 5% 0 0;
}
.contact_section_1 h1{
  font-size: 50px;
  font-weight: bold;
}
.contact_section_1 p{
  font-size: 20px;
}

.contact_div{
  background: linear-gradient(to right, #4D51AB, #55CEE3);
  border-radius: 20px;
  margin-bottom: 20px;
  padding: 20px;
  display: flex;
}
.contact_div img{
  margin-right: 20px;
  background-color: #fff;
  height: 70px;
  border-radius: 50%;
  padding: 15px;
}
.contact_div p{
  margin: auto 0;
}
.contact_div p a{
  color: #fff;
  text-decoration: none;
}
.contact_h6{
  font-size: 40px;
  background: linear-gradient(to right, #4D51AB, #55CEE3);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  font-weight: bold;;
}
.contact_h6_para{
  font-size: 18px;
  margin-bottom: 30px;
  color: #666;
}




.map_section{
  padding: 8% 0 0;
}
.map_section iframe{
  height: 500px;
}




.team_section{
  font-family: 'Poppins';
  padding: 0 0 5% 0;
}
.team_div{
  display: flex;
  justify-content: space-between;
}
.team_content{
  margin: auto 0;
}

.team_section h1{
  text-align: center;
  font-size: 40px;
  background: linear-gradient(to right, #4D51AB, #55CEE3);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
  font-weight: bold;
}

.team_content h2{
  font-size: 34px;
  font-weight: bold;
}
.team_content p{
  color: #666;
  width: 90%;
}
.team_img img{
  width: 100%;
}
@media (max-width:992px) {
  .team_div{
  flex-direction: column-reverse;
}
}
@media (max-width:700px) {
  .team_div{
    margin-top: 40px;
  }
  .team_content p{
    width: 100%;
  }
}
@media (max-width:767px) {
  .team_section h1{
    font-size: 30px;
  }
  .team_content h2{
    font-size: 28px;
  }
}



.about_main_img{
  width: 100%;
}
.about_section_2{
  font-family: 'Poppins';
  padding: 0 0 5%;
}
.about_section_2 a{
  color: #c36;
  text-decoration: none;
}
.about_section_2 h4{
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}
.about_section_2 ul{
  padding-left: 1rem !important;
}
.about_section_2 ul li{
  padding: 5px 0px;
}
@media (min-width:992px) {
  .about_main_para{
    width: 90%;
  }
}
@media (max-width:767px) {
  .about_section_2 h4{
    font-size: 24px;
  }
}




.virtual_section{
  padding: 5% 0;
  font-family: 'Poppins';
}
.virtual_section h2{
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  background: linear-gradient(to right, #4D51AB, #55CEE3);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
}
.virtual_section_p{
  color: #666;
  text-align: center;
}
.virtual_section p{
  color: #666;
}
.virtual_section ul li{
  color: #666;
}
.virtual_section ul li span{
  color: #000;
}
@media (min-width:767px) {
  .virtual_section .row p{
  width: 95%;
  text-align: justify;
}
}
@media (max-width:767px) {
  .virtual_section h2{
    font-size: 30px;
    margin-bottom: 20px;
  }
}


.virtual_plan_section{
  font-family: 'Poppins';
  padding: 5% 0;
}
.virtual_plan_div h5{
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #4D51AB;
}
.virtual_plan_div p,.virtual_plan_div ul li{
  color: #666;
}
.virtual_plan_div{
  padding: 20px;
}
@media (max-width:767px) {
  .virtual_plan_div h5{
    font-size: 22px;
  }
}

.virtual_section_1{
  padding: 0 !important;
}
.soc_faq{
  margin-top: 30px !important;
}


.service_main_h2{
 font-size: 40px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  background: linear-gradient(to right, #4D51AB, #55CEE3);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
}
.service_main p{
   color: #666;
  text-align: center;
}
.virtual_plan_div a{
  color: #000 !important;
  text-decoration: none;
}
.virtual_plan_div a:hover{
  color: #2170df !important;
}
@media (max-width:767px) {
  .service_main_h2{
    font-size: 30px;
  }
}





[data-animate] {
  opacity: 0;
  transition: all 1s ease;
}
[data-animate="left"] {
  transform: translateX(-100px);
}

[data-animate="right"] {
  transform: translateX(100px);
}

[data-animate].show {
  opacity: 1;
  transform: translateX(0);
}
.service_1_section li{
    list-style-type: none;
}
.service_1_section i{
    margin-right: 5px;
}
.service_1_section h4{
  text-align: center;
}
.service_1_section img{
  width: 65px;
  margin-bottom: 10px;
}
 .service_1_section ul{
        padding-left: 0px !important;
    }
.service_left_inner,.service_right_inner{
    padding: 20px;
    box-shadow: 0px 0px 58px -2px #93989c;
}

@media (min-width:992px) {
    .service_right{
    text-align: center;
}
.service_left_inner,.service_right_inner{
    height: 410px;
}
.service_left{
    text-align: left;
    
}
.service_right p{
width:90%; margin: auto;
}
.service_1_section{
    padding-bottom:120px;
} 
}
@media (max-width:992px) {
    .service_right,.service_left{
        margin-top: 20px;
    }
    .service_1_section h4{
        margin-bottom: 10px !important;
    }
    .service_1_section{
    padding-bottom:40px;
} 
}
