@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  font-family: 'Poppins', sans-serif;
}

    .pay-btn img{
        width: 100%;
        max-width: 50px;
        position: fixed;
        bottom: 20px;
        left: 10px;
        z-index: 9999;
    }
    
.bounce2 {
  animation: bounce2 2s ease infinite;
}
@keyframes bounce2 {
	0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
	40% {transform: translateY(-30px);}
	60% {transform: translateY(-15px);}
}


img {
  width: 100%;
}

p {
  font-size: 15px;
}

h2 {
  font-size: 38px;
  margin-bottom: 20px;
  line-height: 42px;
  color: #040D12;
}

.topnav {
  background-color: #061f84;
  color: #f2f2f2;
  padding: 10px 40px;
}

.topnav ul {
  list-style: none;
  display: flex;
}

.topnav ul li {
  padding: 0 7px;
}

.topnav ul li a {
  list-style: none;
  color: #f2f2f2;
  padding: 0 3px;
  text-decoration: none;
  font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  padding: 0;
  margin: 0;
}

::selection {
  background-color: #061f84;
  color: #fff;
}

.topnav_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


nav {
  /* position: fixed; */
  z-index: 99;
  width: 100%;

  /* background: #242526; */
}

nav .wrapper {
  position: relative;
  padding: 0px 30px;
  height: 70px;
  line-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wrapper .logo a {
  color: #000;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  width: 150px;
}

.wrapper .nav-links {
  display: inline-flex;
}

.nav-links li {
  list-style: none;
}

.nav-links li a {
  color: #000;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
}

/* .nav-links li a::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #061f84;
    width: 0;
    height: 2px;
} */
.nav-links li a:hover {
  color: #061f84;
}

.nav-links .mobile-item {
  display: none;
}

.nav-links .drop-menu {
  position: absolute;
  /* background: #242526; */
  width: 180px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}

.drop-menu li a {
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}


.mega-box {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  background-color: #f2f2f2;
}

.mega-box .content {
  /* background: #242526; */
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.mega-box .content .row {
  /* width: calc(25% - 30px); */
  line-height: 45px;
}

.content .row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content .row header {
  color: #061f84;
  font-size: 20px;
  font-weight: 500;
}

.content .row .mega-links {
  margin-left: -40px;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.row .mega-links li {
  padding: 0 20px;
}

.row .mega-links li a {
  padding: 0px;
  padding: 0 20px;
  color: #000;
  font-size: 15px;
  display: block;
}

.row .mega-links li a:hover {
  color: #061f84;
}

.wrapper .btn {
  color: #000;
  font-size: 20px;
  cursor: pointer;
  display: none;
}

.wrapper .btn.close-btn {
  position: absolute;
  right: 30px;
  top: 10px;
}


.strategy-image {
    position: relative;
    padding-top: 10px;
    z-index: 1;
}
.strategy-image::before {
    content: "";
    display: block;
    width: 70%;
    height: 20px;
    background: linear-gradient(90deg, #051e7f 0%, #f70403 100%);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
.strategy-image::after {
    content: "";
    display: block;
    width: 20px;
    height: 90%;
    background: linear-gradient(180deg, #0a207a 0%, #fc0004 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateX(-50%);
    z-index: -1;
}

.section-title-six>span {
    font-size: 20px;
    font-weight: 400;
    background: linear-gradient(90deg, #071e84 0%, #fc0303 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    margin-top: -8px;
    line-height: 1.1;
    margin-bottom: 15px;
}
.section-title-six>span::before, .section-title-six>span::after {
    content: "";
    position: absolute;
    top: 10px;
    background: linear-gradient(90deg, #061e85 0%, #fb0303 100%);
    height: 1px;
    width: 36px;
}
.section-title-six>span::before {
    right: -45px;
}
.section-title-six>span::after {
    left: -45px;
}
.section-title-six h2 {
    font-size: 52px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.15;
    margin-bottom: 5px;
}
.section-title-six h2 span {
    background: linear-gradient(90deg, #061e85 0%, #fb0303 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.strategy-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
}
.strategy-list {
    grid-template-columns: 1fr;
    margin-top: 10px;
}
.strategy-list li {
    font-size: 18px;
    font-weight: 400;
    color: #5e5e5e;
    list-style: none;
    font-family: auto;
   
}
.strategy-list li img {
    margin-right: 8px;
    width: 19px;
    vertical-align: middle;
}
.ranking-block {
    margin: 16px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}
.explore-btn {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    background: linear-gradient(90deg, #061f84 0%, #ff0002 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    margin-bottom: 0;
    line-height: 1;
    white-space: nowrap;
}
.btn--primary-outline2 {
    border: 1px solid #061f84;
    background: linear-gradient(90deg, #061f84 0%, #f90300 100%);
 
    background-clip: text;
    border-radius: 150px;
    position: relative;
    z-index: 1;
    transition: .6s;
    overflow: hidden;
    text-decoration: none;
    padding: 12px 15px;
    font-size: 18px;
    text-transform: capitalize;
}
.ranking-block img{
    width: 85px;
}

@media screen and (max-width: 991px) {
  .wrapper .btn {
    display: block;
  }

  .wrapper .nav-links {
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: #242526;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
  }

  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }

  ::-webkit-scrollbar-track {
    background: #242526;
  }

  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }

  #menu-btn:checked~.nav-links {
    left: 0%;
  }

  #menu-btn:checked~.btn.menu-btn {
    display: none;
  }

  #close-btn:checked~.btn.menu-btn {
    display: block;
  }

  .nav-links li {
    margin: 15px 10px;
  }

  .nav-links li a {
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }

  .nav-links .drop-menu {
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }

  #showDrop:checked~.drop-menu,
  #showMega:checked~.mega-box {
    max-height: 100%;
  }

  .nav-links .desktop-item {
    display: none;
  }

  .nav-links .mobile-item {
    display: block;
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }

  .nav-links .mobile-item:hover {
    background: #3A3B3C;
  }

  .drop-menu li {
    margin: 0;
  }

  .drop-menu li a {
    border-radius: 5px;
    font-size: 18px;
  }

  .mega-box {
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .mega-box .content {
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }

  .mega-box .content .row {
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2) {
    border-top: 0px;
  }

  .content .row .mega-links {
    border-left: 0px;
    padding-left: 15px;
  }

  .row .mega-links li {
    margin: 0;
  }

  .content .row header {
    font-size: 19px;
  }
}

nav input {
  display: none;
}

.body-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 30px;
}

.body-text div {
  font-size: 45px;
  font-weight: 600;
}

.tw-hero-slider {
  background-color: aquamarine;
}

.hero_section {
  /* background-image: url(images/hero_banner.jpg); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0;
  height: 550px;
}

/* .background_images {
  background-image: url(../images/bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0;
} */

.hero_banner_content h2 {
  font-size: 38px;
  margin-bottom: 20px;
  color: #fff;
}

/* .hero_banner_content h2 {
  font-size: 36px;
  margin-bottom: 20px;
} */

.hero_banner_content p {
  font-size: 16px;
  text-align: justify;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.owl-prev,
.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: #061f84 !important;
  color: #f2f2f2 !important;
  border: none;
  border-radius: 50% !important;
  font-size: 24px !important;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
}

.owl-prev:hover,
.owl-next:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.owl-prev {
  left: 10px;
}

.owl-next {
  right: 10px;
}


.center_main_heading {
  text-align: center;
  margin-bottom: 50px;
}

.center_main_heading h2 {
  font-size: 32px;
  margin-bottom: 20px;
  position: relative;
  color: #000;
  font-weight: 600;
  text-align: center;
}

.center_main_heading p {
  font-size: 15px;
  letter-spacing: 0.6px;
}

.center_main_heading span {
  color: #fe0001;
}

.main_heading h2 {
  font-size: 32px;
  margin-bottom: 30px;
  position: relative;
  font-weight: 600;
}

.main_heading p {
  font-size: 15px;
  letter-spacing: 0.6px;
  margin-bottom: 7px;
  /* text-align: justify; */
}

.center_main_heading h2::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 3px;
  margin: auto;
  background-color: #061f84;
}

.main_heading h2::before {
    content: "";
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 3px;
    margin: auto;
    background-color: #061f84;
}

section {
  padding: 3rem 0;
}

.certificate_card {
  width: 100%;

}

.certificate .item {
  transition: transform 0.3s ease;
}

.certificate .center .certificate_card {
  transform: scale(1.125);
  z-index: 1;
}

.certificate .owl-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.certificate .certificate_card {
  transition: transform 0.3s ease, z-index 0.3s ease;
}

.portfolio .logo img {
  max-width: 100%;
  object-fit: contain;
  border-radius: 50%;
}


.our_certificates_section .center_main_heading h2 {
  color: #061f84;
}

.our_certificates_section .center_main_heading span {
  color: #fe0001;
}

.our_acheivement_content p {
  font-size: 18px;
  text-align: center !important;
}

.our_acheivement_rate p {
  font-size: 48px;
  color: #fe0001;
  font-weight: 600;
  text-align: center !important;
}

.our_acheivement_card_icons {
  width: 70px;
  margin: auto;
}

.our_acheivement_card {
  text-align: center;
}

.best_service_card {
  /* box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px; */
  /* border: 1px solid black; */
  padding: 20px;
  height: 100%;
}


.best_service_card_list ul {
  list-style-type: none;
}

.best_service_card_list a {
  text-decoration: none;
  color: #061f84;
  transition: all 0.6s ease;
  font-size: 15px;
}

.best_service_card_list a:hover {
  color: #fe0001;
}

.best_service_card li span {
  color: #061f84;
}

.best_service_card_icons {
  width: 150px;
  height: 150px;
}

.best_service_card_icons img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.best_services_section .main_heading h2 {
  color: #061f84;
}

.best_service_card_heading h4 {
  color: #fe0001;
  font-size: 24px;
}

.best_service_card_heading p {
  font-size: 15px;
}

.best_service_card_heading {
  margin: 10px 0 14px;
}

.our_case_study_section .center_main_heading h2 {
  color: #061f84;
}

.our_case_study_section .center_main_heading h2 span {
  color: #fe0001;
}

.case_study_card {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 16px;
}

.case_study_card img {
  transition: transform 0.3s ease;
}

.case_study_card:hover img {
  transform: scale(1.1);
}

.case_study_heading {
  color: #f2f2f2;
  position: absolute;
  bottom: 5px;
  left: 15px;
}

.case_study_heading h4 {
  font-size: 16px;
}

.case_study_blue {
  background-color: #061f84;
}

.case_study_red {
  background-color: #fe0001;
  /* margin-top: 100px; */
}

.our_working_process_img {
  width: 150px;
  height: 150px;
  background-color: #061f84;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  overflow: hidden;
}

.our_working_process_img:hover img {
  transform: scale(1.2);
  transition: transform 0.6s ease;
}


.our_working_process_img img {
  object-fit: contain;
  width: 70px;
  height: 70px;


}

.our_working_process_heading h4 {
  font-size: 18px;
  margin: 20px 0;
  text-align: center;
}

.final_result_section .main_heading h2 {
  color: #061f84;

}

.final_result_section .main_heading h2 span {
  color: #fe0001;
}

.final_result_icons {
  width: 30px;
  margin-right: 10px;
}

.final_result_list_content {
  display: flex;
  align-items: center;
  margin-bottom: 7px;
}

.final_result_list {
  margin: 20px 0;
}

.increase_traffic_card_img {
  background-image: url("../images/result_bg1.webp");
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  height: 126px;
  display: flex;
  justify-content: center;
  align-items: center;

}

.increase_traffic_card_img img {
  width: 80px;
}

.increase_traffic_heading {
  text-align: center;
}

.increase_traffic_heading h4 {
  font-size: 24px;
  margin: 30px 0 12px;
}

.increase_traffic_heading p {
  font-size: 36px;
  color: #fe0001;
  margin-bottom: 0;
  font-weight: 800;
}

.blog_card_heading {
  font-size: 22px !important;
  font-weight: 600;
}

.latest_blog_card {
  border-radius: 16px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.latest_blog_content {
  padding: 7px 20px 20px 20px;
}

.latest_blog_content p {
  font-size: 15px;
}

.latest_blog_date {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog_date {
  font-size: 16px !important;
  line-height: 16px;
  text-align: center;
  background-color: #061f84;
  color: #f2f2f2;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.latest_blog_card_image {
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.latest_blog_card_image img {
  border-radius: 16px 16px 0 0;
  transition: transform 0.3s ease;
}

.latest_blog_card:hover .latest_blog_card_image img {
  transform: scale(1.1);
}


.accordion-button:not(.collapsed) {
  color: #fe0001 !important;

}

.accordion-button:focus {
  outline: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

.our_mission_section {
  background-image: url("../images/mission_bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.lets_talk_section {
    background-image: url("../images/mission_bg.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.lets_talk_content h2 {
  color: #061f84;
  font-weight: 600;
  margin-bottom: 10px;
}

.lets_talk_content span {
  color: #fe0001;
}

.lets_talk_content p {
  color: #040D12;
}

footer {
  background-color: #151414;
  padding: 2.5rem 0;
}

.footer_service_list ul {
  list-style-type: none;
}

.footer_service_list li {
  margin-bottom: 7px;
}

.footer_service_list a {
  text-decoration: none;
  color: #f2f2f2;
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer_service_list a:hover {
  color: #fe0001;
}

.footer_service_list li i {
  padding-right: 5px;
}

.footer_service_heading h4 {
  color: #f2f2f2;
  font-size: 20px;
  position: relative;
  margin-bottom: 20px;
}

.footer_service_heading h4::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 3px;
  background-color: #fe0001;
}

.footer_nav {
  display: flex;
  justify-content: space-between;
}

.footer_links ul {
  list-style: none;
  display: flex;
}

.footer_links a {
  text-decoration: none;
  font-size: 12px;
  padding: 5px 7px;
  color: #f2f2f2;
  transition: all 0.3s ease;
}

.footer_links a:hover {
  color: #fe0001;
}

.footer_social_media ul {
  list-style: none;
  display: flex;
}

.footer_social_media a {
  text-decoration: none;
  padding: 5px 7px;
  color: #f2f2f2;
  transition: all 0.3s ease;
}

.footer_social_media a:hover {
  color: #fe0001;
}

.footer_services {
  margin-bottom: 32px;
}

.footer_bottom {
  border-top: 1px solid #f2f2f2;
  margin-top: 25px;
}

.footer_bottom p {
  color: #f2f2f2;
  font-size: 15px;
  text-align: center;
  padding: 14px 0;
}


#fixedHeader {
  position: relative;
  width: 100%;
  /* background-color: #fff; */
  /* Change background color as needed */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  /* Add shadow for visual separation */
  z-index: 1000;
  /* Adjust z-index as needed to ensure the header is above other content */
  transition: all 1s ease-in-out;
  /* Add smooth transition for all properties */
}

.fixed {
  position: fixed !important;
  top: 0;
  transition: all 1s ease-in-out;
}



.our_acheivement_section {
  background-color: #c5cadf;
}

.our_working_process_section {
  background-color: #c5cadf;
}

.increase_traffic_section {
  background-color: #c5cadf;
}

.top_about_content {
  color: #f2f2f2;
}

.top_about_content ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;

}

.top_about_content ul li:nth-child(2)::before {
  color: #f3ecec;
  content: "/\00a0";
  padding: 0 5px;
}

.top_about_section {
  background-image: url("../images/aboutUs.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top_contactus_section {
  background-image: url("../images/aboutUs.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top_about_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.top_contactus_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.top_about_content {
  position: relative;
  z-index: 2;
}


.top_heading h1 {
  font-size: 48px;
}

.top_heading li {
  font-size: 16px;
}

.top_heading li a {
  text-decoration: none;
  color: #f2f2f2;
}




.timeline-main {
  width: 100%;
  padding: 25px;

  .timeline-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;

    &::before {
      content: "";
      position: absolute;
      top: 10px;
      left: 50%;
      transform: translateX(-50%);
      width: 4px;
      height: calc(100% - 10px);
      background-color: #061f84;
      animation: line 5s linear;

      @media (max-width: 767px) {
        left: 95%;
      }
    }

    .timeline-card {
      width: 50%;
      margin-right: auto;
      position: relative;

      @media (max-width: 767px) {
        width: 95%;
      }

      &::after {
        content: "";
        position: absolute;
        top: 10px;
        right: -10px;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        border: 3px solid #fff;
        background: #061f84;
        animation: fadeIn 1.5s;
        animation-fill-mode: both;
      }

      .timeline-card-wrap {
        height: 100%;
        margin-right: 35px;
        background-color: #061f84;
        border-radius: 10px;
        position: relative;
        padding: 30px;
        animation: fadeInRight 2.5s;
        animation-fill-mode: both;

        @media (max-width: 767px) {
          padding: 20px;
        }

        &::before {
          content: "";
          position: absolute;
          left: 30px;
          top: -8px;
          height: 8px;
          width: calc(100% - 60px);
          background-color: #061f84;
          border-radius: 5px 5px 0 0;
          opacity: 0.3;
        }

        &::after {
          content: "";
          position: absolute;
          top: 10px;
          right: -8px;
          width: 20px;
          height: 20px;
          background-color: #061f84;
          border-radius: 5px;
          transform: rotate(45deg);
        }

        .card-head-wrap {
          display: flex;
          align-items: center;
          justify-content: space-between;
          margin-bottom: 10px;

          @media (max-width: 1199px) {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
          }

          .timeline-card-head {
            font-size: 28px;
            line-height: 38px;
            font-weight: 500;
            color: #fff;
            margin-bottom: 0;

            @media (max-width: 767px) {
              font-size: 18px;
              line-height: 28px;
            }
          }

          .timeline-card-subhead {
            font-size: 16px;
            line-height: 26px;
            font-weight: 400;
            color: #bdbdbd;
            margin-bottom: 0;
            font-style: italic;

            @media (max-width: 767px) {
              font-size: 14px;
              line-height: 24px;
            }
          }
        }

        .timeline-card-text {
          font-size: 14px;
          line-height: 24px;
          font-weight: 400;
          color: #919ca1;
          margin: 25px 0 0;

          @media (max-width: 767px) {
            font-size: 12px;
            line-height: 22px;
          }
        }
      }

      &:nth-child(even) {
        @media (min-width: 768px) {
          margin-left: auto;
          margin-right: 0;

          &::after {
            right: unset;
            left: -10px;
            animation-delay: 2.6s;
          }

          .timeline-card-wrap {
            margin-right: 0;
            margin-left: 35px;
            animation: fadeInLeft 2.5s;
            animation-fill-mode: both;
            animation-delay: 2.5s;

            &::after {
              right: unset;
              border-left: none;
              left: -8px;
              border-right: 10px solid #061f84;
            }
          }
        }
      }
    }
  }
}

@keyframes line {
  0% {
    height: 0;
  }

  100% {
    height: calc(100% - 10px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}




.contact_details {
  display: flex;
  /* align-items: center; */
  margin: 15px 0;
}

.contact_details i {
  padding-right: 7px;
  color: #fe0001;
  font-size: 18px;
  padding-top: 3px;
}

.contact_details p {
  font-size: 16px;
  font-weight: 500;
}

.full_width {
  width: 100%;
}

.our_company p {
  color: #061f84;
  font-size: 18px;
}

.contact_info_heading h4 {
  color: #061f84;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 35px;
}

.contact_info_box {
  padding: 70px 50px;
  margin: 20px 50px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}



.our_form {
  border: none;
  outline: none;
  padding: 10px 20px;
  background-color: #c8cde3;
  border-radius: 14px;
  margin-bottom: 12px;

}

.select_box_arrow {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('images/arrow-down.png');
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: right 20px top 50%;
  padding-right: 25px;
}

.map iframe {
  width: 100%;
  height: 450px;
  outline: none;
  border: none;
  margin-bottom: -7px;
}

.google_map_section {
  padding: 0;
}



.accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

.accordion .accordion-item button[aria-expanded='true'] {
  border-bottom: 1px solid #061f84;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #7288a2;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #061f84;
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #061f84;
  border: 1px solid #061f84;
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded='true'] {
  color: #061f84;
}

.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}

.accordion button[aria-expanded='true']+.accordion-content {
  opacity: 1;
  max-height: 20rem;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
}

.service_page_hero_section {
  background-image: url("../images/service_bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service_page_hero_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.service_page_heading {
  color: #fff;
  position: relative;
  z-index: 2;
}

.service_page_heading h1 {
  font-size: 44px;
  margin-bottom: 10px;
}

.service_page_heading h5 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service_page_heading p {
  font-size: 16px;
  margin-bottom: 10px;
}


.images img {
  border-radius: 24px;
}


.boost_service_section {
    background-image: url("../images/boost.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
    padding: 90px 0;
}

.boost_service_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.boost_service_section .center_main_heading {
  margin-bottom: 0;
}

.boost_service_content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.boost_service_content h2 {
  color: #fff;
}

.center_button {
  text-align: center;

}
.unbeatable_expertise_section {
    margin: 60px 0;
    background: navajowhite;
}

.unbeatable_expertise_content {
    width: 100%;
    margin: auto;
}

.unbeatable_expertise_content ul {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;

}

.unbeatable_expertise_content ul li {
    width: 32%;
    text-align: left;
    position: relative;
    margin-bottom: 10px;
    font-weight: 700;
    margin-left: 11px;
}

.unbeatable_expertise_content ul li::before {
    content: "";
    position: absolute;
    top: 0px;
    left: -34px;
    border-radius: 50%;
    background-image: url(../images/tick-icon.png);
    width: 25px;
    height: 26px;
    filter: drop-shadow(2px 4px 6px black);
}

.unbeatable_expertise_section .container {
  text-align: center;
}

.hyper_force_section {
  background-color: #c5cadf;
}

.hyper_force_card {
  padding: 20px;
  background-color: #fff;
  height: 100%;
}

.development_company_card_content h4 {
  margin: 7px 0;
}

.hyper_force_card h4 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 26px;
}

.tab-wrapper {
  text-align: center;
  display: block;
  margin: auto;
  max-width: 500px;
  color: #fe0001;
}

.tabs {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.tab-link {
  margin: 0 1%;
  list-style: none;
  padding: 10px 40px;
  color: #aaa;
  cursor: pointer;
  font-weight: 700;
  transition: all ease 0.5s;
  border-bottom: solid 3px rgba(255, 255, 255, 0);
  letter-spacing: 1px;
}

.tab-link:hover {
  color: #999;
  border-color: #999;
}

.tab-link.active {
  color: #333;
  border-color: #333;
}

.tab-link:nth-of-type(1).active {
  color: #EE6534;
  border-color: #EE6534;
}

.tab-link:nth-of-type(2).active {
  color: #1790D2;
  border-color: #1790D2;
}

.tab-link:nth-of-type(3).active {
  color: #EEC63B;
  border-color: #EEC63B;
}

.content-wrapper {
  padding: 40px 80px;
}

.tab-content {
  display: none;
  text-align: center;
  color: #888;
  font-weight: 300;
  font-size: 15px;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeIn 0.5s ease 1 forwards;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  100% {
    opacity: 1;
    transform: none;
  }
}

.technology_expertise_logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.technology_expertise_logo {
  width: 60px;
  margin: 0 40px;
}

@media (max-width:991px) {
  .content-wrapper {
    padding: 40px 2px;
  }
}


.development_company_card_icon {
  width: 60px;
}

.development_company_card {
  height: 100%;
  padding: 26px;
  position: relative;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transform: translateY(100px);
  position: relative;
  overflow: hidden;
  /* border: 1px solid #ccc; */
  z-index: 1;
}


.development_company_card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #c5cadf;
  /* Change this to your desired color */
  clip-path: circle(0% at 0% 100%);
  transition: clip-path 0.5s ease-out;
  z-index: -1;
}

.development_company_card.visible {
  opacity: 1;
  transform: translateY(0);
}

.development_company_card:hover::before {
  clip-path: circle(150% at 0% 100%);
}

.development_company_card_icon,
.development_company_card_content {
  position: relative;
  z-index: 1;
}

.development_company_card_content h4,
.development_company_card_content p {
  margin: 0;
}

.development_company_card:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.cards_container {
  display: flex;
  gap: 20px;
}

.mobile_header {
  display: none;
}

@media (max-width:991px) {
  .desktop_header {
    display: none !important;
  }

  .mobile_header {
    display: block;
  }

  .m-logo {
    width: 150px;
    padding-right: 7px;
  }

  .hamburger-menu {
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 20px;
    padding-left: 15px;
    width: 100%;
    height: 60px;
    cursor: pointer;
    z-index: 9998;
    background: #EBEBEB;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }

  .bar,
  .bar:after,
  .bar:before {
    width: 30px;
    height: 3px;
  }

  .bar {
    position: relative;
    /* transform: translateY(10px); */
    background: black;
    transition: all 0ms 300ms;
  }

  .bar.animate {
    background: rgba(255, 255, 255, 0);
  }

  .bar:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 10px;
    background: black;
    transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  .bar:after {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    background: black;
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  .bar.animate:after {
    top: 0;
    transform: rotate(45deg);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  .bar.animate:before {
    bottom: 0;
    transform: rotate(-45deg);
    transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  .mobile-menu {
    top: 0;
    max-width: 300px;
    left: -100%;
    width: 100%;
    background: #EBEBEB;
    color: black;
    height: 100%;
    position: fixed;
    z-index: 9997;
    overflow-y: auto;
    -webkit-transform: translate3d(0, 0, 205px);
    -moz-transform: translate3d(0, 0, 205px);
    transform: translate3d(0, 0, 205px);
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
    padding-top: 80px;
  }

  .mobile-menu.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
  }

  /**
 * Required CSS 
 */
  .accordion__title {
    cursor: pointer;
    margin: 0;
    position: relative;
  }

  .accordion__icon {
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
  }

  .accordion__icon .line-01,
  .accordion__icon .line-02 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background-color: #272343;
    transition: 0.3s;
  }

  .accordion__icon .line-02 {
    transform: rotate(90deg);
  }

  .accordion__content {
    display: none;
  }

  .accordion--open>.accordion__title .line-02 {
    transform: rotate(0deg);
  }

  /* end Required CSS */

  /**
 * Now let's make it look pretty! 
 */

  .accordion__title {
    padding: 10px 16px;
    font-size: 16px;
    transition: 0.2s;
  }

  .accordion__content {
    padding: 10px 16px;
  }



  .accordion__title:hover {
    background-color: #061f84;
    color: #fff;
  }

  .accordion__title:hover .line-01,
  .accordion__title:hover .line-02 {
    background-color: #fff;
  }

  .accordion--open>.accordion__title {
    background-color: #061f84;
    color: #fff;
  }

  .accordion--open>.accordion__title .line-01,
  .accordion--open>.accordion__title .line-02 {
    background-color: #fff;
  }

  .accordion--nested .accordion__title {
    padding: 16px;
    font-size: 14px;
  }

  .mobile_header ul {
    list-style-type: none;
  }

  .mobile_header a {
    text-decoration: none;
    color: #000;
    font-size: 15px;
  }

  .mobile_header a:focus {
    color: #fff;
  }
}

.swiper-button-next,
.swiper-button-prev {
  color: #061f84;
}


.glass-effect {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.Custom_btn a {
    display: inline-block;
    padding: 13px 32px;
    background: #061f84;
    color: #fff !important;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    margin-top: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 5px;
}

.Custom_btn a:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  display: inline-block;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
  transform: translate(0, 100%);
  transition: all .6s ease-in-out;
  opacity: 0;
}

.Custom_btn a:hover:before {
  opacity: 1;
  transform: translate(0, -100%);
}

@media screen and (max-width:990px) {
  .pricing-table {
    margin-bottom: 30px;
  }
}

/* MESH LOADER */

.mesh-loader {
  overflow: hidden;
  height: 100vh;
  width: 100%;
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;

}

.mesh-loader .circle {
  width: 30px;
  height: 30px;
  position: absolute;
  background: #061f84;
  border-radius: 50%;
  margin: -15px;
  -webkit-animation: mesh 3s ease-in-out infinite -1.5s;
  animation: mesh 3s ease-in-out infinite -1.5s;
}

.mesh-loader>div .circle:last-child {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.mesh-loader>div {
  position: absolute;
  top: 50%;
  left: 50%;
}

.mesh-loader>div:last-child {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

@-webkit-keyframes mesh {
  0% {
    -webkit-transform-origin: 50% -100%;
    transform-origin: 50% -100%;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  50% {
    -webkit-transform-origin: 50% -100%;
    transform-origin: 50% -100%;
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }

  50.1% {
    -webkit-transform-origin: 50% 200%;
    transform-origin: 50% 200%;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform-origin: 50% 200%;
    transform-origin: 50% 200%;
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes mesh {
  0% {
    -webkit-transform-origin: 50% -100%;
    transform-origin: 50% -100%;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  50% {
    -webkit-transform-origin: 50% -100%;
    transform-origin: 50% -100%;
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }

  50.1% {
    -webkit-transform-origin: 50% 200%;
    transform-origin: 50% 200%;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform-origin: 50% 200%;
    transform-origin: 50% 200%;
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.slider-1 {
  background-image: url("../images/slider/2.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 550px;
  position: relative;
  display: flex;
  align-items: center;
}

.slider-1::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
  content: "";
}

.hero_banner_content {
  color: #fff;
  position: relative;
  z-index: 1;
}

.slider-2 {
  background-image: url("../images/slider/5.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 550px;
  position: relative;
  display: flex;
  align-items: center;
}

.slider-2::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
  content: "";
}

.slider-3 {
  background-image: url("../images/slider/3.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 550px;
  position: relative;
  display: flex;
  align-items: center;
}

.slider-3::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
  content: "";
}

/* Owl Carousel Dots Styles */
.owl-dots {
  text-align: center;
  margin-top: 20px;
  /* Adjust as needed */
}

.owl-dot {
  display: inline-block;
  width: 10px;
  /* Dot width */
  height: 10px;
  /* Dot height */
  border-radius: 50%;
  /* Make dots circular */
  background-color: #061f84 !important;
  /* Default dot color */
  margin: 0 5px;
  /* Adjust spacing between dots */
  cursor: pointer;
  transition: background-color 0.3s ease;
  /* Smooth transition */
}

/* Active Dot Style */
.owl-dot.active {
  background-color: #fe0001 !important;
  /* Active dot color */
}

.best_digital_marketing_section {
  padding-top: 5rem;
}


.accordion-content li {
  padding: 3px 0px;
}

.header_button a {
  background-color: #061f84;
  color: #fff !important;
  border-radius: 24px !important;
  border: 2px solid #061f84;
}

.header_button a:hover {
  background-color: #fff;
  color: #061f84 !important;
  border: 2px solid #061f84;
}

.privacy_content h4 {
  font-size: 20px;
  margin: 26px 0;
}

.privacy_content p {
  margin-bottom: 7px;
}

.privacy_content ul {
  margin-bottom: 7px;
}


/* styles.css */

.portfolio {
  padding: 50px 0;
  background-color: #f9f9f9;
}

.slider {
  margin-bottom: 30px;
}

.company-logo {
  padding: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.company-logo img {
  max-width: 100px;
  max-height: 100px;
}

.company-logo:hover {
  transform: scale(1.1);
}

.company-details {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.company-info {
  display: none;
}

.company-info.active {
  display: block;
}

.company-info h2 {
  margin-top: 0;
}

.company-info a {
  color: #007BFF;
  text-decoration: none;
}

.company-info a:hover {
  text-decoration: underline;
}

.ranking-table {
  width: 100%;
  border-collapse: collapse;
}

.ranking-table th,
.ranking-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
  width: 65%;
}

.ranking-table th {
  background-color: #061f84;
  color: white;
}

.ranking-table tr:hover {
  background-color: #f5f5f5;
}

@media (max-width: 600px) {
  .ranking-table thead {
    display: none;
  }

  .ranking-table,
  .ranking-table tbody,
  .ranking-table tr,
  .ranking-table td {
    display: block;
    width: 100%;
  }

  .ranking-table tr {
    margin-bottom: 15px;
  }

  .ranking-table td {
    text-align: right;
    padding-left: 50%;
    position: relative;
  }

  .ranking-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 50%;
    padding-left: 15px;
    font-weight: bold;
    text-align: left;
  }
}

.company-details .portfolio_img {
  height: 400px;
  overflow-y: scroll;
}

.ranking-table td {
  font-size: 13px;
}

.ranking_card {
  margin-bottom: 14px;
}


/* Add your custom CSS styles here */

.best_services_section {
  background-color: #f8f9fa;
  padding: 50px 0;
}

.best_service_slider .item {
  margin: 0 15px;
}

.best_service_card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.best_service_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.best_service_card_icons {
  position: relative;
}

.best_service_card_icons img {
  width: 100%;
  height: auto;
  border-radius: 20px 20px 0 0;
}

.best_service_card_heading h4 {
  font-size: 24px;
  margin-bottom: 10px;
}

.best_service_card_heading p {
  font-size: 16px;
  color: #666;
}

.best_service_card_list ul {
  list-style: none;
  padding: 0;
}

.best_service_card_list ul li {
  padding: 7px 0px;
  border-top: 1px solid #eee;
}

.best_service_card_list ul li:first-child {
  border-top: none;
}

.best_service_card_list ul li span {
  margin-right: 5px;
  color: #007bff;
}

.best_service_card_list ul li a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
  font-size: 14px;
}

.best_service_card_list ul li a:hover {
  color: #007bff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-text {
  opacity: 0;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.animate-text.visible {
  animation: fadeIn 1s forwards;
}

strong {
  color: #4f4f51;
}

.development_service_section .main_heading ul li {
  list-style-type: none !important;
}


.colgap p {
  margin-bottom: 20px !important;
}

.seopage h2 {
  font-size: 16px !important;
  line-height: 1.2;
  text-align: justify;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 20px;
}

.seopage p {
  text-align: center;
}

.seopage {
  margin: 5px;
}

.seopage .main {
  background-color: rgb(247, 244, 244);
  padding: 25px;
  border-radius: 30%;
}

.seopage .mainhead {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 30px;
}

.development_company_card .iconimage {
  margin: auto;
  text-align: center;
}

.development_company_card .iconimage img {
  width: 150px;
  text-align: center;
}

.teamicons h4,
p {
  text-align: center;
}

.teamicons h3 {
  font-size: 32px;
}

.teamicons h5 {
  font-size: 32px;
  margin-bottom: 20px;
}


.teamicons .seoround {
  border-radius: 50%;
}

.teamicons .seoround {
  margin: 0;
  padding: 18px;
}

.teamicons .seoround h4 {
  font-size: 18px;
  text-align: center;
  justify-content: center;
  margin: auto;


}

.ulliteam ul {
  margin-top: 50px;
}

.ulliteam ul li {
  text-align: left;

}

.ulliteam .left {
  text-align: left;
}

.seoagency p {
  text-align: left;
  margin-bottom: 15px;

}

.seoagency h3 {
  margin-bottom: 20px;
}

.seoagency .item .certificate_card {
  width: 80% !important;
}

.seoagency .item .certificate_card img {
  width: 100%;
}

.ppc p {
  text-align: left;
}


.service_page_hero_section h1,
p,
h5 {
  text-align: left;
}

.aboutteam .development_company_card h4 {
  font-size: 20px;
  text-align: none;
}

.aboutteam .development_company_card p {
  text-align: center;
}


.aboutteam .development_company_card .development_company_card_content {
  margin-top: 15px;
}


/* team slider about */