@import url("https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@400..800&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@400..800&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/* ====================
  Reset Default CSS Start
  ==================== */

:root {
  --primary-font: "Plus Jakarta Sans";
  --secondary-font: "Mulish";
  --primary-color: #8634da;
  --secondary-color: #ffffff;
  --ac-20: #e6f5ff;
  --ac-40: #99d6ff;
  --ac-60: #66c2ff;
  --ac-80: #33adff;
  --ac-120: #007acc;
  --ac-140: #005c99;
  --ac-160: #003d66;
  --ac-180: #000f19;
  --ac-ash: #9ca3af;
  --ac-black: #000000;
  --ac-border: #2b343a;
  --ac-BG: #02070a;
  --text-gradient: linear-gradient(91deg, #fff 0.61%, #695b5b 100%);
  --background: linear-gradient(45deg, #fff, #908c9b);
  --box-shadow: 0px 0px 100px 0px rgba(0, 153, 255, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--primary-font);
}

h1,
h2,
h3,
h4,
h5 {
  margin-top: 0;
}

h6 {
  font-family: var(--secondary-font);
}

a {
  text-decoration: none !important;
}

p {
  color: var(--ac-ash);
  font-family: var(--secondary-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 23.8px;
}

ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}

button {
  border: none;
  outline: none;
}

input {
  outline: none;
}

body {
  background: var(--ac-black) !important;
}

html, body {
  overflow: hidden;
}

.container {
  max-width: 1400px !important;
  margin: auto;
  padding: 0 14px !important;
}

/*====================
Reset Default CSS End
====================*/

/* Hero Start */
.hero_slider {
  position: relative;
  width: 100%;
  height: 100vh;
  background: var(--ac-BG);
}

.hero_slider .swiper-wrapper {
  display: flex;
}

/* Slide 1 Start */
.hero_slider .hero_slide2,
.hero_slider .hero_slide3,
.hero_slider .hero_slide {
  background-size: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-position: center;
  gap: 20px;
  height: 100vh;
  display: flex;
  align-items: center;
}

.hero_slider .hero_slide .container {
  display: flex;
  align-items: start !important;
  justify-content: space-between;
}

.hero_slider .hero_slide img {
  width: 100%;
  background-size: cover;
  object-fit: cover;
}

.hero_slider .hero_content {
  max-width: 50%;
  height: auto;
  padding: 50px 0;
}

.hero_slider .hero_slide .tagline {
  display: inline-block;
  background-color: var(--ac-BG);
  border: 1px solid var(--ac-ash);
  color: var(--ac-ash);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--secondary-font);
}

.hero_slider .hero_slide .title {
  font-size: 48px;
  font-family: var(--primary-font);
  margin: 20px 0;
  font-weight: bold;
  background: var(--text-gradient);
  background-clip: text;
  line-height: 63px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero_slider .hero_slide .description {
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary-color);
  font-family: var(--secondary-font);
  text-align: left;
  margin-bottom: 20px;
}

.hero_slider .hero_slide .cta_button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--primary-color);
  border: none;
  padding: 12px 40px;
  color: var(--secondary-color);
  font-family: var(--secondary-font);
  font-size: 14px;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.4s;
}

.hero_slider .hero_slide .cta_button:hover {
  background: var(--secondary-color);
  color: var(--ac-black);
}

.hero_slider .hero_slide .hero_image {
  display: flex;
  justify-content: end;
  width: 60%;
  aspect-ratio: 16 / 12;
}

.hero_slider .hero_slide .hero_image img {
  width: 100%;
  height: 100%;
  margin-right: -60px;
  background-position: center;
  background-size: contain;
  object-fit: contain;
}

.hero_slider .hero_slide .trust_info {
  margin-top: 80px;
  margin-left: 70px;
  font-family: var(--primary-font);
}

.hero_slider .hero_slide .trust_info_title {
  display: flex;
  align-items: center;
  margin-bottom: 0px;
  font-size: 24px;
  gap: 5px;
  color: var(--secondary-color);
  font-weight: 600;
  font-family: var(--primary-font);
}

.hero_slider .hero_slide .trust_info_title svg {
  width: 28px;
  height: 28px;
}

.hero_slider .trust_info .reviews .star {
  background: #00b67a;
  padding: 3px;
  border-radius: 2px;
}

.hero_slider .trust_info .reviews .star svg {
  width: 23px;
  height: 23px;
}

.hero_slider .trust_info .reviews .star svg path {
  fill: var(--secondary-color);
}

.hero_slider .trust_info .reviews {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 6px 0;
}

.hero_slider .trust_info .reviews {
  display: flex;
  align-items: center;
}

.hero_slider .trust_info .trustScore {
  display: flex;
  align-items: center;
}

.hero_slider .trust_info .trustScore .text {
  font-size: 16px;
  font-weight: 400;
  color: var(--ac-ash);
  font-family: var(--secondary-font);
}

.hero_slider .trust_info .trustScore .number {
  font-size: 16px;
  font-weight: 400;
  padding: 0px 5px;
  color: var(--secondary-color);
  font-family: var(--secondary-font);
}

.hero_slider .trust_info .trustScore .link {
  border-bottom: 1px solid var(--ac-ash);
}

/* Slide 1 End */

/* Slide 2 Start */
.hero_slider .hero_slide2 {
  background-size: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-position: center;
  gap: 20px;
  height: 100vh;
  display: flex;
  align-items: center;
}

.hero_slider .hero_slide2 .container {
  display: flex;
  align-items: start !important;
  justify-content: space-between;
}

.hero_slider .hero_slide2 img {
  width: 100%;
  background-size: cover;
  object-fit: cover;
}

.hero_slide2 .hero_content2 {
  width: 100% !important;
  height: auto;
}

.hero_slider .hero_slide2 .tagline {
  display: inline-block;
  background-color: var(--ac-BG);
  border: 1px solid var(--ac-ash);
  color: var(--ac-ash);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--secondary-font);
}

.hero_slider .hero_slide2 .title {
  max-width: 650px;
  font-size: 48px;
  font-family: var(--primary-font);
  margin: 20px 0;
  font-weight: bold;
  background: var(--text-gradient);
  background-clip: text;
  line-height: 58px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero_slider .hero_slide2 .highlight {
  background-color: var(--primary-color);
  background-clip: text;
  line-height: 63px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero_slide2 .cta_button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--primary-color);
  border: none;
  padding: 12px 40px;
  color: var(--secondary-color);
  font-family: var(--secondary-font);
  font-size: 18px;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.4s;
}

.hero_slide2 .cta_button:hover {
  background: var(--secondary-color);
  color: var(--ac-black);
}

.hero_slide2 .hero_image {
  display: flex;
  justify-content: end;
  width: 70%;
  aspect-ratio: 16 / 12;
}

.hero_slide2 .hero_image img {
  width: 100%;
  height: 100%;
  margin-right: -60px;
  background-position: center;
  background-size: contain;
  object-fit: contain;
}

.hero_slide2 .our_card {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

.hero_slide2 .our_card .item {
  width: 100%;
  display: flex;
  gap: 10px;
}

.hero_slide2 .our_card .card_item {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0px 0px 20px 0px rgba(0, 153, 255, 0.5) inset;
  backdrop-filter: blur(3px);
}

.hero_slide2 .our_card .card_item .icon {
  display: flex;
  margin: 0px auto;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  padding: 4px;
  border-radius: 50%;
  background: var(--ac-180);
}

.hero_slide2 .our_card .card_item svg {
  width: 30px;
  height: 30px;
}

.hero_slide2 .our_card .card_item h3 {
  font-size: 16px;
  font-family: var(--secondary-font);
  color: var(--secondary-color);
  font-weight: 600;
  text-align: center;
  margin-bottom: 0;
}
@media screen and (max-width: 992px) {
  .hero_slide2 .our_card {
    display: block;
  }

  .hero_slide2 .our_card .item:nth-child(1) {
    margin-bottom: 10px;
  }

  .hero_slide2 .our_card .card_item {
    padding: 10px;
    justify-content: center !important;
  }

  .hero_slide2 .our_card .card_item h3 {
    font-size: 14px;
  }

  .hero_slide2 .our_card .card_item .icon {
    width: 30px;
    height: 30px;
  }
}

/* Slide 2 End */

.hero_slider .swiper-button-next,
.hero_slider .swiper-button-prev {
  width: 50px;
  height: 50px;
  color: var(--secondary-color);
  background: var(--primary-color);
  position: absolute;
  border-radius: 50%;
}

.hero_slider .swiper-button-next::after,
.hero_slider .swiper-button-prev {
  display: none;
}

.hero_slider .swiper-button-next i {
  font-size: 28px;
}

.hero_slider .custom_pagination {
  width: 147px;
  position: absolute;
  bottom: 100px;
  right: 14px;
  display: flex;
  align-items: center !important;
  justify-content: center !important;
}

.hero_slider .swiper-horizontal > .swiper-pagination-bullets,
.hero_slider .swiper-pagination-bullets.swiper-pagination-horizontal,
.hero_slider .swiper-pagination-custom,
.hero_slider .swiper-pagination-fraction {
  bottom: 0;
  top: 0;
  left: 0px;
  width: 100%;
}

.hero_slider .custom_pagination,
.hero_slider .swiper-pagination {
  display: flex;
  align-items: center;
}
.hero_slider .swiper-pagination {
  margin-top: 5px;
}

.hero_slider .swiper-pagination-bullet {
  background: var(--secondary-color);
  opacity: 1;
}

.hero_slider .swiper-pagination-bullet:nth-last-of-type(1) {
  width: 26px;
  height: 26px;
  margin-bottom: 2px !important;
}

.hero_slider .swiper-pagination-bullet:nth-last-of-type(2) {
  width: 18px;
  height: 18px;
  margin-bottom: 1px !important;
}

.hero_slider .swiper-pagination-bullet:nth-child(1) {
  width: 12px;
  height: 12px;
}

.hero_slider .swiper-pagination-bullet-active {
  background: var(--primary-color);
}

@media only screen and (max-width: 1150px) and (orientation: landscape) {
  .hero_slider .hero_slide .container,
  .hero_slider .hero_slide2 .container {
    display: flex !important;
    align-items: center !important;
    text-align: left !important;
  }

  
  .hero_slider .container .hero_image {
    display: block !important;
  }

  .hero_slider .hero_slide2,
  .hero_slider .hero_slide3,
  .hero_slider .hero_slide,
  .hero_slider {
    height: 100vh !important;
  }

  .hero_slider .hero_content {
    padding: 0;
  }

  .hero_slider .hero_slide .description,
  .hero_slider .hero_slide .title,
  .hero_slider .hero_slide2 .title {
    text-align: left !important;
  }

  .hero_slide2 .our_card {
    display: flex !important;
    margin-top: 0px !important;
  }

  .hero_slide .hero_content,
  .hero_slide2 .hero_content2 {
    max-width: 100% !important;
  }

  .hero_slide2 .hero_image,
  .hero_slider .hero_slide .hero_image {
    max-width: 40% !important;
  }

  /* .hero_slider .hero_slide2 .title {
    line-height: 22px !important;
  } */

  .hero_slide2 .our_card .item:nth-child(1) {
    margin-bottom: 0px;
  }
}

@media screen and (max-width: 992px) {
  .hero_slider .hero_slide2,
  .hero_slider .hero_slide3,
  .hero_slider .hero_slide {
    align-items: center;
    justify-content: center;
  }

  .hero_slider .hero_slide .container,
  .hero_slider .hero_slide2 .container {
    display: block;
    text-align: center;
    margin: 0;
  }

  .hero_slider .container .hero_image {
    display: none;
  }

  .hero_slider .hero_slide2,
.hero_slider .hero_slide3,
.hero_slider .hero_slide,
.hero_slider {
  height: 70vh;
}

  .hero_slider .hero_slide2 .tagline {
    padding: 6px 20px;
    font-size: 14px;
  }
  .hero_slider .hero_slide .title {
    max-width: 100%;
    font-size: 28px;
    line-height: 36px;
    text-align: center;
    margin: 10px 0;
  }

  .hero_slider .hero_slide2 .title {
    max-width: 100%;
    font-size: 28px;
    line-height: 22px;
    text-align: center;
    margin: 10px 0;
  }

  .hero_slider .hero_slide .description {
    text-align: center;
    line-height: 22px;
  }

  .hero_slide2 .our_card {
    margin-bottom: 30px;
    margin-top: 20px;
  }

  .hero_slider .hero_slide .trust_info {
    display: none;
  }

  .hero_slide .hero_content,
  .hero_slide2 .hero_content2 {
    max-width: 100%;
  }

  .hero_slider .hero_content {
    padding: 0;
  }

  .hero_slide2 .hero_image,
  .hero_slider .hero_slide .hero_image {
    width: 100%;
    aspect-ratio: 16 / 10;
    justify-content: center;
    margin-top: 10px;
  }

  .hero_slide2 .hero_image img,
  .hero_slider .hero_slide .hero_image img {
    margin: 0;
  }

  .hero_slider .custom_pagination {
    bottom: 50px;
  }

  .hero_slide .cta_button,
  .hero_slide2 .cta_button {
    font-size: 16px;
    padding: 10px 30px;
  }
}

/* Hero End */

/* Services card Start */
#services {
  padding-top: 80px;
  background: var(--ac-BG);
}

#services .service_card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  border: 1px solid var(--ac-border);
  border-radius: 16px;
  transition: 0.4s;
  text-align: center;
  padding: 20px;
  transition: 0.4s;
}

#services .service_card:hover {
  background: var(--primary-color);
  box-shadow: var(--box-shadow);
}

#services .service_card .icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  border-radius: 50%;
  background-color: var(--ac-180);
}

#services .service_card .icon img {
  width: 40px;
  height: 40px;
}

#services .service_card .title {
  font-size: 25px;
  font-family: var(--primary-font);
  margin: 20px 0;
  font-weight: bold;
  background: var(--text-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#services .service_card:hover .title {
  background: var(--ac-180);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#services .service_card:hover .description {
  color: var(--ac-180);
}

#services .service_card .description {
  font-size: 14px;
  font-weight: 400;
  font-family: var(--secondary-font);
  color: var(--ac-ash);
  margin-bottom: 20px;
}

#services .service_card .read_more_btn {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: var(--secondary-color);
  background: transparent;
  transition: 0.4s;
}

#services .service_card .read_more_btn span {
  font-family: var(--secondary-font);
}

#services .service_card .read_more_btn svg {
  width: 28px;
  height: 28px;
  transition: 0.4s;
}

#services .service_card .read_more_btn:hover {
  color: var(--secondary-color) !important;
}

#services .service_card .read_more_btn:hover svg path {
  stroke: var(--secondary-color) !important;
}

#services .service_card:hover .read_more_btn {
  color: var(--ac-180);
}

#services .service_card .read_more_btn svg path {
  transition: 0.4s;
}

#services .service_card:hover .read_more_btn svg path {
  stroke: var(--ac-180);
}

#services .tag {
  display: inline-block;
  text-align: center;
  border: 1px solid var(--ac-ash);
  border-radius: 30px;
  margin-top: 40px;
}

#services .tag .title {
  font-size: 18px;
  font-weight: 500;
  display: block;
  text-align: center;
  color: var(--ac-ash);
  background: var(--ac-BG);
  font-family: var(--secondary-font);
  border-radius: 30px;
  padding: 10px 40px;
  margin: 0;
}

@media screen and (max-width: 992px) {
  #services .service_card .title {
    font-size: 24px;
  }

  #services .tag .title {
    padding: 10px 20px;
    font-size: 16px;
  }

  #services .service_card .read_more_btn {
    font-size: 16px;
  }
}
/* Services card End */

/* Internet Feature Start */
.internet_feature {
  background: var(--ac-black);
  padding-top: 80px;
}

.internet_feature .heading {
  margin-bottom: 40px;
}

.internet_feature .tag {
  display: inline-block;
  text-align: left;
  border: 1px solid var(--ac-ash);
  border-radius: 30px;
  margin: auto;
}

.internet_feature .tag span {
  font-size: 18px;
  font-weight: 500;
  display: block;
  text-align: center;
  color: var(--ac-ash);
  background: var(--ac-BG);
  font-family: var(--secondary-font);
  border-radius: 30px;
  padding: 10px 40px;
  margin: 0;
}

.internet_feature .title {
  font-size: 46px;
  font-family: var(--primary-font);
  margin: 20px 0;
  text-align: left;
  font-weight: bold;
  background: var(--text-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.internet_feature .desc {
  display: block;
  text-align: left;
  margin: 0;
  max-width: 750px;
  font-size: 16px;
  font-family: var(--secondary-font);
  color: var(--ac-ash);
  font-weight: 400;
}

.internet_feature .service_card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  border-radius: 16px;
  transition: 0.4s;
  text-align: center;
  margin-bottom: 20px;
}

.internet_feature .service_card .icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  border-radius: 50%;
  background-color: var(--ac-180);
}

.internet_feature .service_card .icon svg {
  width: 50px;
  height: 50px;
}

.internet_feature .service_card .title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  font-family: var(--primary-font);
  background: var(--text-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--secondary-font);
  margin-bottom: 20px;
  margin-top: 10px;
}

.internet_feature .service_card .description {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  font-family: var(--secondary-font);
  color: var(--ac-ash);
  margin-bottom: 0px;
}

.internet_feature .feature_animation {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.internet_feature .feature_animation .bg {
  position: relative;
  /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
  width: 100%;
  aspect-ratio: 16 / 16;
}
.internet_feature .feature_animation .bg img {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  object-fit: cover;
}
.internet_feature .feature_animation .bg .icon1 {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.internet_feature .feature_animation .bg .icon1 svg {
  width: 70px;
  height: 70px;
  background-position: center;
  background-size: cover;
  object-fit: cover;
}
/* ........... */
.internet_feature .feature_animation .bg .icon2 {
  position: absolute;
  bottom: 36%;
  right: 16%;
  transform: translate(-0%, -30%);
}
.internet_feature .feature_animation .bg .icon2 svg {
  width: 170px;
  height: 170px;
  background-position: center;
  background-size: cover;
  object-fit: cover;
}
/* ...... */
.internet_feature .feature_animation .bg .icon3 {
  position: absolute;
  top: 28%;
  left: 12%;
  transform: translate(-0%, -30%);
}
.internet_feature .feature_animation .bg .icon3 svg {
  width: 60px;
  height: 60px;
  background-position: center;
  background-size: cover;
  object-fit: cover;
}
/* ...... */
.internet_feature .feature_animation .bg .image1 {
  width: 120px;
  aspect-ratio: 16 / 16;
  position: absolute;
  bottom: 20%;
  left: 18%;
  transform: translate(-0%, -30%);
}
.internet_feature .feature_animation .bg .image1::before {
  content: "";
  width: 100%;
  aspect-ratio: 16 / 16;
  position: absolute;
  border: 1px solid var(--primary-color);
  top: 0px;
  right: 0px;
  border-radius: 12px;
  z-index: -1;
}
.internet_feature .feature_animation .bg .image1 img {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--secondary-color);
  z-index: 1;
}
/* ,.......... */

.internet_feature .feature_animation .bg .image3 {
  width: 90px;
  aspect-ratio: 16 / 16;
  position: absolute;
  bottom: 26%;
  right: 18%;
  transform: translate(-0%, -30%);
}
.internet_feature .feature_animation .bg .image3 img {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--secondary-color);
  z-index: 1;
}
/* ............ */
.internet_feature .feature_animation .bg .image2 {
  width: 110px;
  aspect-ratio: 16 / 16;
  position: absolute;
  top: 16%;
  right: 12%;
  transform: translate(-0%, -30%);
}
.internet_feature .feature_animation .bg .image2::before {
  content: "";
  width: 100%;
  aspect-ratio: 16 / 16;
  position: absolute;
  border: 1px solid var(--primary-color);
  bottom: 0px;
  left: 0px;
  border-radius: 50%;
  z-index: -1;
}
.internet_feature .feature_animation .bg .image2 img {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--secondary-color);
  z-index: 1;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
/* ..... */

.internet_feature .feature_animation .bg .image4 {
  width: 90px;
  aspect-ratio: 16 / 16;
  position: absolute;
  top: 12%;
  left: 24%;
  transform: translate(-0%, -30%);
}
.internet_feature .feature_animation .bg .image4 img {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--secondary-color);
  z-index: 1;
}

/* Animation */

.internet_feature .feature_animation .bg .image3 {
  animation: scale3 2s infinite ease-in-out;
  -webkit-animation: scale3 2s infinite ease-in-out;
}

.internet_feature .feature_animation .bg .image4 {
  animation: scale4 2s infinite ease-in-out;
  -webkit-animation: scale4 2s infinite ease-in-out;
}

.internet_feature .feature_animation .bg .image1::before {
  animation: scale1 2s infinite ease-in-out;
  -webkit-animation: scale1 2s infinite ease-in-out;
}

.internet_feature .feature_animation .bg .image2::before {
  animation: scale2 2s infinite ease-in-out;
  -webkit-animation: scale2 2s infinite ease-in-out;
}

@keyframes scale4 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes scale3 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(10px);
  }
}

@keyframes scale1 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(14px, -14px);
  }
}

@keyframes scale2 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-14px, 14px);
  }
}
/* ........ */

.internet_feature .feature_animation .bg .icon1::before,
.internet_feature .feature_animation .bg .icon1::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  z-index: -1;
  animation: flow 1.6s ease-in-out infinite;
  -webkit-animation: flow 1.6s ease-in-out infinite;
}

.internet_feature .feature_animation .bg .icon1::after {
  background: rgba(255, 255, 255, 0.4);
  animation-delay: 0.5s;
}

.internet_feature .feature_animation .bg .icon1::before {
  background: rgba(255, 255, 255, 0.6);
  animation-delay: 1.5s;
}

@keyframes flow {
  0% {
    transform: scale(1, 1);
    opacity: 1;
  }
  100% {
    transform: scale(1.8, 1.8);
    opacity: 0;
  }
}
/* .. */
.internet_feature .feature_animation .bg .icon3,
.internet_feature .feature_animation .bg .icon2 {
  animation: zoom 2s infinite ease-in-out, fillChange 2s infinite ease-in-out;
}

.internet_feature .feature_animation .bg .icon2 svg {
  animation: zoom 2s infinite ease-in-out, fillChange 2s infinite ease-in-out;
}

.internet_feature .feature_animation .bg .icon2 svg path {
  animation: zoomfill 2s infinite ease-in-out,
    fillChange 2s infinite ease-in-out;
  -webkit-animation: zoomfill 2s infinite ease-in-out,
    fillChange 2s infinite ease-in-out;
}

.internet_feature .feature_animation .bg .icon3 svg {
  animation: zoom2 2s infinite ease-in-out, fillChange2 2s infinite ease-in-out;
  -webkit-animation: zoom2 2s infinite ease-in-out,
    fillChange2 2s infinite ease-in-out;
}

@keyframes zoom {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }
}

@keyframes fillChange {
  0%,
  100% {
    fill: #0099ff;
  }
  50% {
    fill: #ffffff;
  }
}

@keyframes zoomfill {
  0%,
  100% {
    fill: #0099ff;
  }
  50% {
    fill: #ffffff;
  }
}

@keyframes fillChange2 {
  0%,
  100% {
    stroke: #ffffffb6;
  }
  50% {
    /* stroke: #FFFFFF; */
    fill: #0099ff;
  }
}

@media screen and (max-width: 1100px) {
  .internet_feature .feature_animation .bg .image3,
  .internet_feature .feature_animation .bg .image4 {
    width: 60px;
  }

  .internet_feature .feature_animation .bg .image2 {
    width: 80px;
  }

  .internet_feature .feature_animation .bg .image1 {
    width: 90px;
  }

  .internet_feature .feature_animation .bg .icon1::before,
  .internet_feature .feature_animation .bg .icon1::after,
  .internet_feature .feature_animation .bg .icon1 svg {
    width: 60px;
    height: 60px;
  }
  .internet_feature .feature_animation .bg .icon2 svg {
    width: 130px;
    height: 130px;
  }
  .internet_feature .feature_animation .bg .icon3 svg {
    width: 40px;
    height: 40px;
  }
}

.internet_feature .phone_view {
  display: none;
}

@media screen and (max-width: 992px) {
  .internet_feature .title {
    font-size: 34px;
    text-align: center;
  }

  .internet_feature .desc,
  .internet_feature .heading {
    text-align: center;
  }

  .internet_feature .desktop_view {
    display: none;
  }

  .internet_feature .phone_view {
    display: block;
    margin-bottom: 20px;
  }

  .internet_feature .service_card .title {
    font-size: 22px;
  }
}

@media screen and (max-width: 576px) {
  .internet_feature .feature_animation .bg .image3,
  .internet_feature .feature_animation .bg .image4 {
    width: 60px;
  }

  .internet_feature .feature_animation .bg .image2 {
    width: 70px;
  }

  .internet_feature .feature_animation .bg .image1 {
    width: 80px;
  }

  .internet_feature .feature_animation .bg .icon1::before,
  .internet_feature .feature_animation .bg .icon1::after,
  .internet_feature .feature_animation .bg .icon1 svg {
    width: 50px;
    height: 50px;
  }
  .internet_feature .feature_animation .bg .icon2 svg {
    width: 110px;
    height: 110px;
  }
  .internet_feature .feature_animation .bg .icon3 svg {
    width: 30px;
    height: 30px;
  }

  @keyframes scale1 {
    0%,
    100% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(10px, -10px);
    }
  }

  @keyframes scale2 {
    0%,
    100% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(-10px, 10px);
    }
  }
}

/* Internet Feature End */

/* OTT  Platforms Start */
.ott_platforms {
  background: var(--ac-BG);
  padding-top: 80px;
  overflow: hidden;
}

.ott_platforms .heading {
  margin-bottom: 40px;
}

.ott_platforms .tag {
  display: inline-block;
  text-align: left;
  border: 1px solid var(--ac-ash);
  border-radius: 30px;
  margin: auto;
}

.ott_platforms .tag span {
  font-size: 18px;
  font-weight: 500;
  display: block;
  text-align: center;
  color: var(--ac-ash);
  background: var(--ac-BG);
  font-family: var(--secondary-font);
  border-radius: 30px;
  padding: 10px 40px;
  margin: 0;
}

.ott_platforms .title {
  font-size: 46px;
  font-family: var(--primary-font);
  margin: 20px 0;
  text-align: left;
  font-weight: bold;
  background: var(--text-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ott_platforms .desc {
  display: block;
  text-align: left;
  margin: 0;
  max-width: 750px;
  font-size: 16px;
  font-family: var(--secondary-font);
  color: var(--ac-ash);
  font-weight: 400;
}

.ott_platforms .buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.ott_platforms .tab_btn {
  /* width: 100%; */
  display: inline-block;
  background: transparent;
  color: var(--secondary-color);
  border: 1px solid var(--ac-border);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--secondary-font);
  padding: 12px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.4s;
}

.ott_platforms .tab_btn.active {
  background-color: var(--primary-color);
  box-shadow: var(--box-shadow);
}

.ott_platforms .price_container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.ott_platforms .price_wrap {
  width: 200px;
  display: flex;
  justify-content: center;
  margin: auto;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--ac-border);
  padding: 16px;
  border-radius: 12px;
}

.ott_platforms .row {
  padding-bottom: 20px;
}

.ott_platforms .duration {
  font-size: 16px;
  font-family: var(--secondary-font);
  font-weight: 600;
  color: var(--ac-ash);
  margin-bottom: -14px !important;
}

.ott_platforms .currency {
  font-size: 24px;
  font-weight: 600;
  font-family: var(--primary-font);
  color: var(--primary-color);
}

.ott_platforms .channel_price {
  font-size: 46px;
  font-family: var(--primary-font);
  margin: 0;
  font-weight: bold;
  background: var(--text-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center; /* Ensure it's centered */
}

.ott_platforms .features {
  margin-top: 40px;
}

.ott_platforms .features svg {
  width: 24px;
  height: 24px;
}

.ott_platforms .features span {
  font-size: 16px;
  font-weight: 500;
  color: var(--ac-ash);
  margin: 0;
}

.ott_platforms .features .features_item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

/* Animation Start */

.ott_platforms .ott_platforms_animation {
  position: relative;
  height: 100%;
}

.ott_platforms .ott_platforms_animation .circle {
  position: relative;
  height: 100%;
}

.ott_platforms .ott_platforms_animation .circle svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 94%;
  height: 94%;
}
.ott_platforms .ott_platforms_animation .circle svg .roted1,
.ott_platforms .ott_platforms_animation .circle svg .roted2 {
  animation: rotate1 6s linear infinite;
  transform-origin: 326px 359.038px;
  -webkit-animation: rotate1 6s linear infinite;
}

.ott_platforms .ott_platforms_animation .circle svg .roted2 {
  animation: rotate2 12s linear infinite;
  -webkit-animation: rotate2 8s linear infinite;
}

@keyframes rotate1 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate2 {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

.ott_platforms .animation_img {
  width: 80%;
  aspect-ratio: 16 / 12;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 16px;
}

.ott_platforms .animation_img .img_wrap {
  width: 100%;
  height: 100%;
}

.ott_platforms .animation_img img {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  border-radius: 16px;
  border: 1px solid var(--secondary-color);
  object-fit: cover;
}

.ott_platforms .animation_img .img_wrap::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transform: rotate(6deg);
  border-radius: 16px;
  z-index: -1;
}

.ott_platforms .ott_platforms_animation .youtube,
.ott_platforms .ott_platforms_animation .disney,
.ott_platforms .ott_platforms_animation .netflex,
.ott_platforms .ott_platforms_animation .prime {
  width: 100px;
  aspect-ratio: 16 / 7;
  border-radius: 8px;
  border: 1px solid var(--ac-border);
  overflow: hidden;
}

.ott_platforms .ott_platforms_animation .youtube img,
.ott_platforms .ott_platforms_animation .disney img,
.ott_platforms .ott_platforms_animation .netflex img,
.ott_platforms .ott_platforms_animation .prime img {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  object-fit: cover;
}

.ott_platforms .ott_platforms_animation .youtube {
  position: absolute;
  top: 10px;
  left: 140px;
  transform: rotate(10deg);
  animation: bounce2 2s infinite ease-in-out;
}

.ott_platforms .ott_platforms_animation .disney {
  position: absolute;
  top: 20px;
  right: 120px;
  transform: rotate(-10deg);
  animation: bounces 2s infinite ease-in-out;
  -webkit-animation: bounces 2s infinite ease-in-out;
}

.ott_platforms .ott_platforms_animation .prime {
  position: absolute;
  bottom: 00px;
  right: 140px;
  transform: rotate(10deg);
  animation: bounce2 2s infinite ease-in-out;
  -webkit-animation: bounce2 2s infinite ease-in-out;
  -webkit-transform: rotate(10deg);
  -moz-transform: rotate(10deg);
  -ms-transform: rotate(10deg);
  -o-transform: rotate(10deg);
}

.ott_platforms .ott_platforms_animation .netflex {
  position: absolute;
  bottom: 10px;
  left: 120px;
  transform: rotate(-10deg);
  animation: bounces 2s infinite ease-in-out;
  -webkit-animation: bounces 2s infinite ease-in-out;
}

@keyframes bounces {
  0%,
  100% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(-17deg);
  }
}

@keyframes bounce2 {
  0%,
  100% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(17deg);
  }
}

@media screen and (max-width: 1200px) {
  .ott_platforms .ott_platforms_animation .youtube {
    top: 60px;
    left: 80px;
  }

  .ott_platforms .ott_platforms_animation .disney {
    top: 60px;
    right: 80px;
  }

  .ott_platforms .ott_platforms_animation .prime {
    bottom: 60px;
    right: 80px;
  }

  .ott_platforms .ott_platforms_animation .netflex {
    bottom: 60px;
    left: 80px;
  }
}

@media screen and (max-width: 1100px) {
  .ott_platforms .ott_platforms_animation .youtube {
    top: 80px;
    left: 80px;
  }

  .ott_platforms .ott_platforms_animation .disney {
    top: 80px;
    right: 80px;
  }

  .ott_platforms .ott_platforms_animation .prime {
    bottom: 80px;
    right: 80px;
  }

  .ott_platforms .ott_platforms_animation .netflex {
    bottom: 80px;
    left: 80px;
  }
}

@media screen and (max-width: 992px) {
  .ott_platforms .features .features_item {
    justify-content: start;
    max-width: 300px;
    display: block;
    justify-content: center;
    margin: auto;
    padding-bottom: 16px;
  }

  .ott_platforms .channel_price,
  .ott_platforms .title {
    font-size: 34px;
  }

  .ott_platforms .desc,
  .ott_platforms .title,
  .ott_platforms .heading {
    text-align: center;
  }

  .ott_platforms .ott_platforms_animation {
    height: 800px;
  }
  .ott_platforms .ott_platforms_animation .youtube {
    top: 40px;
    left: 160px;
  }

  .ott_platforms .ott_platforms_animation .disney {
    top: 40px;
    right: 180px;
  }

  .ott_platforms .ott_platforms_animation .prime {
    bottom: 40px;
    right: 140px;
  }

  .ott_platforms .ott_platforms_animation .netflex {
    bottom: 40px;
    left: 140px;
  }
}

@media screen and (max-width: 778px) {
  .ott_platforms .ott_platforms_animation {
    height: 680px;
  }
  .ott_platforms .ott_platforms_animation .youtube {
    top: 40px;
    left: 20%;
  }

  .ott_platforms .ott_platforms_animation .disney {
    top: 40px;
    right: 20%;
  }

  .ott_platforms .ott_platforms_animation .prime {
    bottom: 40px;
    right: 20%;
  }

  .ott_platforms .ott_platforms_animation .netflex {
    bottom: 40px;
    left: 20%;
  }
}

@media screen and (max-width: 778px) {
  .ott_platforms .ott_platforms_animation {
    height: 640px;
  }
}

@media screen and (max-width: 576px) {
  .ott_platforms .ott_platforms_animation {
    height: 560px;
  }
}

@media screen and (max-width: 500px) {
  .ott_platforms .ott_platforms_animation {
    height: 500px;
  }

  .ott_platforms .ott_platforms_animation .youtube {
    top: 40px;
    left: 16%;
  }

  .ott_platforms .ott_platforms_animation .disney {
    top: 40px;
    right: 16%;
  }

  .ott_platforms .ott_platforms_animation .prime {
    bottom: 40px;
    right: 16%;
  }

  .ott_platforms .ott_platforms_animation .netflex {
    bottom: 40px;
    left: 16%;
  }

  .ott_platforms .ott_platforms_animation .youtube,
  .ott_platforms .ott_platforms_animation .disney,
  .ott_platforms .ott_platforms_animation .netflex,
  .ott_platforms .ott_platforms_animation .prime {
    width: 70px;
    aspect-ratio: 16 / 7;
  }
}

@media screen and (max-width: 460px) {
  .ott_platforms .ott_platforms_animation {
    height: 450px;
  }

  .ott_platforms .ott_platforms_animation .youtube {
    top: 40px;
    left: 16%;
  }

  .ott_platforms .ott_platforms_animation .disney {
    top: 40px;
    right: 16%;
  }

  .ott_platforms .ott_platforms_animation .prime {
    bottom: 40px;
    right: 16%;
  }

  .ott_platforms .ott_platforms_animation .netflex {
    bottom: 40px;
    left: 16%;
  }
}

@media screen and (max-width: 390px) {
  .ott_platforms .ott_platforms_animation {
    height: 400px;
  }

  .ott_platforms .ott_platforms_animation .youtube {
    top: 40px;
    left: 16%;
  }

  .ott_platforms .ott_platforms_animation .disney {
    top: 40px;
    right: 16%;
  }

  .ott_platforms .ott_platforms_animation .prime {
    bottom: 40px;
    right: 16%;
  }

  .ott_platforms .ott_platforms_animation .netflex {
    bottom: 40px;
    left: 16%;
  }
}
/* OTT  Platforms End */

/* Packages Price Start */
.pricing_section {
  text-align: center;
  background: var(--ac-black);
  padding-top: 80px;
}

.pricing_section .tag {
  display: inline-block;
  text-align: center;
  border: 1px solid var(--ac-ash);
  border-radius: 30px;
}

.pricing_section .tag span {
  font-size: 18px;
  font-weight: 500;
  display: block;
  text-align: center;
  color: var(--ac-ash);
  background: var(--ac-BG);
  font-family: var(--secondary-font);
  border-radius: 30px;
  padding: 10px 40px;
  margin: 0;
}

.pricing_section .title {
  font-size: 46px;
  font-family: var(--primary-font);
  margin: 20px 0;
  font-weight: bold;
  background: var(--text-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing_section .desc {
  display: block;
  margin: auto;
  max-width: 750px;
  font-size: 16px;
  font-family: var(--secondary-font);
  color: var(--ac-ash);
  font-weight: 400;
  margin-bottom: 40px;
}

.pricing_section .pricing_col {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background: var(--ac-black);
  border-radius: 10px;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--ac-border);
  transition: 0.4s;
}

.pricing_section .pricing_col:hover {
  background: var(--primary-color);
  box-shadow: var(--box-shadow);
  color: var(--secondary-color);
}

.pricing_section .pricing_col:hover .price h3 {
  background: var(--secondary-color);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing_section .pricing_col.highlight {
  background: var(--primary-color);
  color: var(--secondary-color);
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.pricing_section .pricing_col.highlight .price h3 {
  background: var(--secondary-color);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing_section .pricing_col .category {
  font-size: 32px;
  font-weight: bold;
  color: var(--secondary-color);
  font-family: var(--primary-font);
  margin: 0;
}

.pricing_section .pricing_col .price {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  transition: 0.4s;
  margin: 20px 0;
}

.pricing_section .pricing_col .price h3 {
  font-size: 58px;
  font-family: var(--primary-font);
  margin: 20px 0;
  font-weight: bold;
  background: var(--text-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  transition: 0.4s;
}

.pricing_section .pricing_col .price sub,
.pricing_section .pricing_col .price sup {
  font-size: 18px;
  font-weight: bold;
  color: var(--secondary-color);
  transition: 0.4s;
}

.pricing_section .pricing_col .price sup {
  color: var(--primary-color);
  margin-top: -16px;
}

.pricing_section .pricing_col .price sub {
  margin-top: 12px;
}

.pricing_section .pricing_col:hover .price sup {
  color: var(--secondary-color);
}

.pricing_section .pricing_col.highlight .price sup {
  color: var(--secondary-color);
}

.pricing_section .pricing_col .devices {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.pricing_section .pricing_col .devices .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background: var(--ac-180);
  border-radius: 6px;
  transition: 0.4s;
}

.pricing_section .pricing_col:hover .devices .icon {
  background: var(--ac-60);
}

.pricing_section .pricing_col:hover .devices .icon path,
.pricing_section .pricing_col:hover .devices .icon svg {
  transition: 0.4s;
}

.pricing_section .pricing_col:hover .devices .laptop path {
  stroke: var(--ac-180);
}

.pricing_section .pricing_col:hover .devices .tv path,
.pricing_section .pricing_col:hover .devices .tab path {
  fill: var(--ac-180) !important;
}

.pricing_section .pricing_col.highlight .devices .icon {
  background: var(--ac-60);
}

.pricing_section .pricing_col.highlight .devices .icon path,
.pricing_section .pricing_col.highlight .devices .icon svg {
  transition: 0.4s;
}

.pricing_section .pricing_col.highlight .devices .laptop path {
  stroke: var(--ac-180);
  fill: var(--ac-60) !important;
}

.pricing_section .pricing_col.highlight .devices .tv path,
.pricing_section .pricing_col.highlight .devices .tab path {
  fill: var(--ac-180) !important;
}

.pricing_section .pricing_col .devices {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing_section .pricing_col .features {
  list-style: none;
  margin: 30px 0 !important;
  padding: 0;
}

.pricing_section .pricing_col .features svg {
  width: 26px;
  height: 26px;
  margin-right: 10px;
}

.pricing_section .pricing_col:hover .features svg path {
  fill: var(--secondary-color) !important;
}

.pricing_section .pricing_col:hover .features li {
  color: var(--secondary-color);
}

.pricing_section .pricing_col .features li {
  display: flex;
  align-items: center;
  font-size: 16px;
  text-align: left;
  font-family: var(--secondary-font);
  color: var(--ac-ash);
  font-weight: bold;
  margin: 20px 0;
  display: flex;
  align-items: center;
}

.pricing_section .highlight svg path {
  fill: var(--secondary-color) !important;
}

.pricing_section .pricing_col.highlight .features li {
  color: var(--secondary-color);
}

.pricing_section .pricing_col .get_start_btn {
  display: inline-block;
  background: var(--primary-color);
  color: var(--secondary-color);
  border: none;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--secondary-font);
  padding: 12px 40px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.4s;
}

.pricing_section .pricing_col.highlight .get_start_btn {
  background: var(--secondary-color);
  color: var(--ac-black);
}

.pricing_section .pricing_col:hover .get_start_btn {
  background: var(--secondary-color);
  color: var(--ac-black);
}

.pricing_section .pricing_col .get_start_btn:hover {
  background: var(--ac-black);
  color: var(--secondary-color);
}

@media screen and (max-width: 992px) {
  .pricing_section .title {
    font-size: 34px;
  }

  .pricing_section .pricing_col .category {
    font-size: 24px;
  }

  .pricing_section .pricing_col .get_start_btn {
    padding: 10px 30px;
    font-size: 16px;
  }

  .pricing_section .tag span {
    padding: 10px 30px;
    font-size: 16px;
  }
}
/* Packages Price End */

/* Counter Section Start */
.counter_wrapper {
  position: relative;
  background: var(--ac-BG);
  padding-top: 80px;
  padding-bottom: 80px;

}
.counter_wrapper .container {
  position: relative;
  z-index: 11 !important;
}
.counter_wrapper .shape {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  aspect-ratio: 16 / 16;
  background: radial-gradient(
    50% 50% at 50% 50%,
    #000 0%,
    rgba(0, 0, 0, 0) 100%
  );
  position: absolute;
  top: 0;
  left: -50px;
  bottom: 0;
}
.counter_wrapper .shape img {
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
  background: radial-gradient(
    50% 50% at 50% 50%,
    #000 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background-size: cover;
  object-fit: cover;
}

.counter_wrapper .tag {
  display: inline-block;
  text-align: center;
  border: 1px solid var(--ac-ash);
  border-radius: 30px;
  z-index: 1;
}

.counter_wrapper .tag span {
  font-size: 18px;
  font-weight: 500;
  display: block;
  text-align: center;
  font-family: var(--secondary-font);
  color: var(--ac-ash);
  background: var(--ac-BG);
  border-radius: 30px;
  padding: 10px 40px;
  margin: 0;
}

.counter_wrapper .title {
  font-size: 46px;
  max-width: 480px;
  font-family: var(--primary-font);
  margin: 20px 0;
  font-weight: bold;
  background: var(--text-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.counter_wrapper .desc {
  display: block;
  margin: auto;
  text-align: left;
  font-size: 16px;
  font-family: var(--secondary-font);
  color: var(--ac-ash);
  font-weight: 400;
  margin-bottom: 40px;
}

.counter_wrapper .counter-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  height: 100%;
}

.counter_wrapper .counters {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  z-index: 1;
}
.counter_wrapper .counter {
  width: 100%;
  text-align: center;
  border-radius: 10px;
  padding: 20px;
  text-align: left;
}
.counter_wrapper .counter .count_num {
  font-size: 48px;
  font-family: var(--primary-font);
  font-weight: bold;
  background: var(--text-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.counter_wrapper .counter p {
  margin: 0;
  color: var(--primary-color);
  font-size: 22px;
  font-weight: 500;
  font-family: var(--secondary-font);
  text-align: left;
}
.counter_wrapper .availability form {
  position: relative;
  display: flex;
  gap: 20px;
  z-index: 2;
}
.counter_wrapper .availability .address {
  position: relative;
  width: 100%;
  border: 1px solid var(--ac-border);
  border-radius: 30px;
  overflow: hidden;
}
.counter_wrapper .availability .address .fa-location-dot {
  position: absolute;
  right: 20px;
  top: 30%;
  font-size: 20px;
  color: var(--primary-color);
}
.counter_wrapper .availability input {
  padding: 10px 20px;
  height: 51px;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--secondary-font);
  color: var(--secondary-color);
  width: 100%;
  font-size: 16px;
  font-weight: 400;
}
.counter_wrapper .availability input::placeholder {
  color: var(--ac-ash);
  font-size: 16px;
  font-weight: 400;
}

.counter_wrapper .availability .availability_btn {
  display: inline-block;
  white-space: nowrap;
  background: var(--primary-color);
  color: var(--secondary-color);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--secondary-font);
  padding: 12px 40px;
  border-radius: 30px;
  transition: 0.4s;
}
.counter_wrapper .availability button:hover {
  background: var(--secondary-color);
  color: var(--ac-black);
}

@media screen and (max-width: 992px) {
  .pricing_section .title {
    font-size: 34px;
  }

  .pricing_section .pricing_col .category {
    font-size: 24px;
  }

  .counter_wrapper .availability {
    text-align: center;
  }

  .counter_wrapper .title {
    max-width: 100%;
    text-align: center;
    font-size: 34px;
  }

  .counter_wrapper .tag span {
    padding: 10px 20px;
    font-size: 16px;
  }

  .counter_wrapper .desc {
    text-align: center;
  }

  .counter_wrapper .counter {
    padding: 10px;
    text-align: center;
  }

  .counter_wrapper .availability .availability_btn {
    padding: 10px 30px;
    font-size: 16px;
    margin-top: 16px;
  }

  .counter_wrapper .availability form {
    display: block;
    text-align: center;
    margin-bottom: 30px;
  }

  .counter_wrapper .shape {
    width: 100%;
    position: absolute;
    top: auto;
    left: auto;
    bottom: 0;
  }

  .counter_wrapper .counter p {
    font-size: 18px;
    text-align: center;
  }

  .counter_wrapper .counter .count_num {
    font-size: 34px;
  }
}
/* Counter Section End */

/* Brand Start */
.brand_infinity {
  margin: auto;
  text-align: center;
  overflow: hidden;
  position: relative;
  background: var(--ac-BG);
  width: 100%;
  padding: 80px 0px;
}

.brand_infinity .tag {
  position: relative;
  display: inline-block;
  text-align: center;
  border: 1px solid var(--ac-ash);
  border-radius: 30px;
  z-index: 2 !important;
}

.brand_infinity .tag span {
  font-size: 18px;
  font-weight: 500;
  display: block;
  text-align: center;
  font-family: var(--secondary-font);
  color: var(--ac-ash);
  background: var(--ac-BG);
  border-radius: 30px;
  padding: 10px 40px;
  margin: 0;
}

.brand_infinity .bg_shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  aspect-ratio: 16 / 16;
}

.brand_infinity .bg_shape img {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  object-fit: contain;
  background-size: contain;
}

.brand_infinity .slide_track {
  animation: scroll 240s linear infinite;
  display: flex;
  width: 100%;
  background: var(--ac-black);
  z-index: 3;
  -webkit-animation: scroll 240s linear infinite;
}

.brand_infinity .slide_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(
      to right,
      rgba(2, 8, 15, 0.5) 10%,
      #8634da 50%,
      #8634da 50%,
      rgba(2, 8, 15, 0.5) 90%
    )
    1 stretch;

  margin-top: 30px;
  z-index: 3;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.brand_infinity:hover .slide_track {
  animation-play-state: paused;
}

.brand_infinity .slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  width: 100%;
}

.brand_infinity .slide .brand {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 170px;
  aspect-ratio: 16 / 8.5;
  border: 1px solid var(--ac-border);
  border-radius: 12px;
  overflow: hidden;
}

.brand_infinity .slide .brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
a.view_plan_btn.view_plan_btn_desktop.call {
    background-color: transparent;
    fill: #FFF;
    color: #FFF;
    background-image: linear-gradient(180deg, #0F0F0F 0%, #303030 100%);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .5);
    transition-duration: 0.6s;
    border-radius: 52px 52px 52px 52px;
    padding: 12px 32px 12px 32px;
}
.brand_infinity .scroller {
  max-width: 100%;
}

.scroller__inner {
  padding-block: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.scroller[data-animated="true"] {
  overflow: hidden;
}

.scroller[data-animated="true"] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 120s)
    var(--_animation-direction, reverse) linear infinite;
  -webkit-animation: scroll var(--_animation-duration, 120s)
    var(--_animation-direction, reverse) linear infinite;
}

.scroller:hover .scroller__inner {
  animation-play-state: paused;
  -webkit-animation-play-state: paused; /* For Safari */
}

.scroller[data-direction="right"] {
  --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
  --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
  --_animation-duration: 20s;
}

.scroller[data-speed="slow"] {
  --_animation-duration: 60s;
}

/* Separate Keyframes for clearer control */
@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
    -webkit-transform: translate(calc(-50% - 0.5rem));
  }
}

@media screen and (max-width: 992px) {
  .our_client .heading_wrap .title {
    font-size: 32px;
    max-width: 100%;
  }
}

@media screen and (max-width: 992px) {
  .brand_infinity .tag span {
    padding: 10px 20px;
    font-size: 16px;
  }
}

/* Brand End */

/* New Collection Slider Start */
.new_collection {
  text-align: center;
  background: var(--ac-BG);
  padding-top: 30px;
}

.new_collection .slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.new_collection .tag {
  display: inline-block;
  text-align: center;
  border: 1px solid var(--ac-ash);
  border-radius: 30px;
  margin: auto;
}

.new_collection .tag span {
  font-size: 18px;
  font-weight: 500;
  display: block;
  text-align: center;
  color: var(--ac-ash);
  background: var(--ac-BG);
  font-family: var(--secondary-font);
  border-radius: 30px;
  padding: 10px 40px;
  margin: 0;
}

.new_collection .title {
  font-size: 46px;
  font-family: var(--primary-font);
  margin: 20px 0;
  text-align: center;
  font-weight: bold;
  background: var(--text-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.new_collection .desc {
  display: block;
  margin: auto;
  max-width: 750px;
  font-size: 16px;
  font-family: var(--secondary-font);
  color: var(--ac-ash);
  font-weight: 400;
  margin-bottom: 40px;
}

.new_collection .slider .slider-list {
  display: grid;
  grid-auto-columns: 100%;
  grid-auto-flow: column;
  margin: 0;
  padding: 1rem 0;
  list-style: none;
  transition: transform 5s linear;
  gap: 15px;
}

.new_collection .slider-list .slider-item {
  display: inline-block;
  color: white;
  text-align: center;
}
.new_collection .slider-list .image {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.new_collection .slider-list .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-size: cover;
  background-position: center;
}

.new_collection .slider-list .image .rating {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0px;
  right: 0px;
  background: var(--ac-black);
  padding: 6px 12px;
  border-radius: 8px 0px 12px 0px;
}

.new_collection .slider-list .rating svg {
  width: 20px;
  height: 20px;
}

.new_collection .slider-list .rating .point {
  font-size: 16px;
  font-weight: bold;
  font-family: var(--secondary-font);
  margin: 0;
  padding-left: 10px;
}

.new_collection .slider-list .details .heading {
  font-size: 18px;
  font-weight: 500;
  font-family: var(--secondary-font);
  color: var(--secondary-color);
  margin: 16px 0px 10px 0px;
}

.new_collection .slider-list .details .date {
  display: block;
  margin: auto;
  max-width: 750px;
  font-size: 16px;
  font-family: var(--secondary-font);
  color: var(--ac-ash);
  font-weight: 400;
}

@media screen and (max-width: 992px) {
  .new_collection .title {
    font-size: 34px;
  }
}

/* New Collection Slider End */

/* Our Gadget Store Start */
.gadget_store {
  padding-top: 80px;
  background-color: var(--ac-BG);
}

.gadget_store .heading_wrapper {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 40px;
}

.gadget_store .tag {
  display: inline-block;
  text-align: left;
  border: 1px solid var(--ac-ash);
  border-radius: 30px;
  margin: auto;
}

.gadget_store .tag span {
  font-size: 18px;
  font-weight: 500;
  display: block;
  text-align: center;
  color: var(--ac-ash);
  background: var(--ac-BG);
  font-family: var(--secondary-font);
  border-radius: 30px;
  padding: 10px 40px;
  margin: 0;
}

.gadget_store .title {
  font-size: 46px;
  font-family: var(--primary-font);
  margin: 20px 0;
  text-align: left;
  font-weight: bold;
  background: var(--text-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gadget_store .desc {
  display: block;
  text-align: left;
  margin: 0;
  max-width: 750px;
  font-size: 16px;
  font-family: var(--secondary-font);
  color: var(--ac-ash);
  font-weight: 400;
}

.gadget_store .slider {
  position: relative;
}

.gadget_store .swiper-wrapper {
  display: flex;
  padding-bottom: 50px !important;
  padding-top: 10px;
}

.gadget_store .card {
  position: relative;
  background-color: var(--ac-BG);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  padding: 20px;
  border: 1px solid var(--ac-border);
  text-align: center;
  transition: 0.4s;
}

.gadget_store .card .add_to_cart {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  visibility: hidden;
  opacity: 0;
  cursor: none;
  transition: 0.4s;
  z-index: 1;
}

.gadget_store .card .add_to_cart .cart {
  background: var(--secondary-color);
  color: var(--ac-black);
  font-size: 16px;
  font-family: var(--primary-font);
  font-weight: 500;
  border-radius: 30px;
  padding: 10px 20px;
  transition: 0.4s;
}

.gadget_store .card .add_to_cart .cart:hover {
  background: var(--ac-black);
  color: var(--secondary-color);
}

.gadget_store .card:hover {
  transform: translateY(-4px);
  background: var(--ac-80);
  box-shadow: var(--box-shadow);
}

.gadget_store .card:hover .add_to_cart {
  visibility: visible;
  opacity: 1;
  cursor: pointer;
}

.gadget_store .card:hover .price {
  color: var(--secondary-color);
}

.gadget_store .card:hover img {
  opacity: 0.6;
}

.gadget_store .card img {
  width: 100%;
  height: 100%;
  background-size: cover;
  object-fit: contain;
  background-position: center;
}

.gadget_store .card-content .name {
  font-size: 18px;
  font-weight: 500;
  font-family: var(--secondary-font);
  color: var(--secondary-color);
  margin: 0px;
}

.gadget_store .card-content {
  border-top: 1px solid var(--ac-border);
  margin-top: 10px;
}

.gadget_store .rating {
  display: inline-flex;
  align-items: center;
  margin: 16px auto;
  gap: 6px;
}

.gadget_store svg {
  width: 20px;
  height: 20px;
}

.gadget_store .price {
  font-size: 32px;
  font-family: var(--primary-font);
  font-weight: bold;
  padding-top: 10px;
  margin: 0;
  color: var(--primary-color);
  transition: 0.4s;
}

.gadget_store .heading_wrapper .view_more_btn {
  display: inline-block;
  white-space: nowrap;
  background: transparent;
  color: var(--secondary-color);
  border: 1px solid var(--primary-color);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--secondary-font);
  padding: 12px 40px;
  border-radius: 30px;
  transition: 0.4s;
}

.gadget_store .heading_wrapper .view_more_btn svg {
  width: 20px;
  height: 20px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.gadget_store .heading_wrapper .view_more_btn:hover {
  background: var(--primary-color);
}

.gadget_store .heading_wrapper .view_more_btn:hover svg {
  transform: translate(15%);
  -webkit-transform: translate(15%);
  -moz-transform: translate(15%);
  -ms-transform: translate(15%);
  -o-transform: translate(15%);
}

/* Swiper Container Styles */
.gadget_store .slider {
  position: relative;
}

/* Swiper Pagination */
.gadget_store .swiper-pagination {
  position: absolute;
  bottom: -10px !important;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  z-index: 2;
}

.gadget_store .swiper-pagination-bullet {
  background-color: var(--secondary-color) !important;
  opacity: 0.7;
  width: 14px !important;
  height: 14px !important;
}

.gadget_store .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--primary-color) !important;
}

/* Responsive Styles */
@media (min-width: 1200px) {
  .gadget_store .swiper-slide {
    width: 30%;
  }
}

@media screen and (max-width: 992px) {
  .gadget_store .heading_wrapper {
    flex-direction: column;
    text-align: center;
    gap: 0px;
    justify-content: center;
    align-items: center;
  }

  .gadget_store .desc {
    text-align: center;
  }

  .gadget_store .title {
    font-size: 34px;
    text-align: center;
  }

  .gadget_store .heading_wrapper .view_more_btn {
    padding: 10px 30px;
    font-size: 16px;
    margin-top: 20px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .gadget_store .swiper-slide {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .gadget_store .swiper-slide {
    width: 100%;
  }
}

/* Our Gadget Store End */

/* Latest Blog Start */

.latest_blog {
  width: 100%;
  background: var(--ac-black);
  padding-top: 80px;
  overflow: hidden;
}

.latest_blog .heading_wrapper {
  margin-bottom: 40px;
}

.latest_blog .tag {
  display: block;
  text-align: center;
  margin: auto;
}

.latest_blog .tag span {
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  border: 1px solid var(--ac-ash);
  border-radius: 30px;
  text-align: center;
  color: var(--ac-ash);
  background: var(--ac-BG);
  font-family: var(--secondary-font);
  border-radius: 30px;
  padding: 10px 40px;
  margin: 0;
}

.latest_blog .title {
  font-size: 46px;
  font-family: var(--primary-font);
  margin: 20px 0px 40px 0px;
  text-align: center;
  font-weight: bold;
  background: var(--text-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.latest_blog .blog_content .tag {
  display: block;
  text-align: left;
  margin: auto;
}

.latest_blog .blog_content .tag span {
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  border: 1px solid var(--ac-ash);
  border-radius: 30px;
  text-align: center;
  color: var(--ac-ash);
  background: var(--ac-BG);
  font-family: var(--secondary-font);
  border-radius: 30px;
  padding: 10px 40px;
  margin: 0;
}

.latest_blog .blog_content .title {
  font-size: 32px;
  font-family: var(--primary-font);
  margin: 20px 0;
  text-align: left;
  font-weight: bold;
  background: var(--text-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.latest_blog .blog_content .desc {
  display: block;
  text-align: left;
  margin: 0;
  max-width: 750px;
  font-size: 16px;
  font-family: var(--secondary-font);
  color: var(--ac-ash);
  font-weight: 400;
}

.latest_blog .blog_content {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}

.latest_blog .blog_content .content_img {
  width: 100%;
  display: flex;
  align-items: center;
  border-radius: 16px;
  overflow: hidden;
}

.latest_blog .blog_content .content_img img {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  object-fit: cover;
}

.latest_blog .blog_content .read_more_btn {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: var(--secondary-color);
  background: transparent;
  transition: 0.4s;
  margin-top: 20px;
}

.latest_blog .blog_content .read_more_btn span {
  font-family: var(--secondary-font);
}

.latest_blog .blog_content .read_more_btn svg {
  width: 28px;
  height: 28px;
  transition: 0.4s;
}

.latest_blog .blog_content .read_more_btn svg path {
  transition: 0.4s;
}

.latest_blog .blog_content .read_more_btn:hover {
  color: var(--primary-color);
}

.latest_blog .blog_content .read_more_btn:hover svg path {
  stroke: var(--primary-color);
}

.latest_blog .button {
  text-align: center;
  margin-top: 40px;
}

.latest_blog .view_more_btn {
  display: inline-block;
  white-space: nowrap;
  background: transparent;
  color: var(--secondary-color);
  border: 1px solid var(--primary-color);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--secondary-font);
  padding: 12px 40px;
  border-radius: 30px;
  transition: 0.4s;
}

.latest_blog .view_more_btn svg {
  width: 20px;
  height: 20px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.latest_blog .view_more_btn:hover {
  background: var(--primary-color);
}

.latest_blog .view_more_btn:hover svg {
  transform: translate(15%);
  -webkit-transform: translate(15%);
  -moz-transform: translate(15%);
  -ms-transform: translate(15%);
  -o-transform: translate(15%);
}

@media screen and (max-width: 992px) {
  .latest_blog .title {
    font-size: 34px;
  }
  .latest_blog .blog_content .title {
    font-size: 24px;
  }

  .latest_blog .blog_content {
    flex-direction: column;
    gap: 30px;
  }

  .latest_blog .blog_content1 {
    margin-bottom: 30px;
  }
}

/* Latest Blog End */

/* FAQ Start */

#faq {
  position: relative;
  width: 100%;
  background: var(--ac-black);
  padding-top: 80px;
}

#faq .faq_wrapper .heading_wrapper {
  margin-bottom: 40px;
}

#faq .faq_wrapper .tag {
  display: block;
  text-align: center;
  margin: auto;
}

#faq .faq_wrapper .tag span {
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  border: 1px solid var(--ac-ash);
  border-radius: 30px;
  text-align: center;
  color: var(--ac-ash);
  background: var(--ac-BG);
  font-family: var(--secondary-font);
  border-radius: 30px;
  padding: 10px 40px;
  margin: 0;
}

#faq .faq_wrapper .title {
  font-size: 22px;  
  font-family: var(--primary-font);
  margin: 20px 0px 40px 0px;
  text-align: center;
  font-weight: bold;
  background: var(--text-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
h2.title.wow.fadeInUp{
  font-size: 40px;
  color: #fff;
  margin-bottom: 20px;
}
#faq .faq_wrapper .blog_content .tag {
  display: block;
  text-align: left;
  margin: auto;
}

#faq .faq_wrapper .blog_content .tag span {
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  border: 1px solid var(--ac-ash);
  border-radius: 30px;
  text-align: center;
  color: var(--ac-ash);
  background: var(--ac-BG);
  font-family: var(--secondary-font);
  border-radius: 30px;
  padding: 10px 40px;
  margin: 0;      
}  

#faq .faq_animation {
  position: relative;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: cover;
}

#faq .faq_animation img {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  object-fit: cover;
}

#faq .faq_animation .question_icon {
  position: absolute;
  top: 8%;
  left: 18%;
  transform: rotate(22deg);

  display: inline-block;
}

#faq .faq_animation .question_icon2 {
  position: absolute;
  top: 2%;
  right: 32%;
  transform: rotate(22deg);
  display: inline-block;
}

#faq .faq_animation .question_icon3 {
  position: absolute;
  top: 40%;
  right: 24%;
  transform: rotate(34deg);
  display: inline-block;
}
/*  */
#faq .faq_animation .question_icon svg {
  width: 60px;
  height: 60px;
}
#faq .faq_animation .question_icon::before,
#faq .faq_animation .question_icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  z-index: -1;
  animation: grow1 1.8s ease-in-out infinite;
  -webkit-animation: grow1 1.8s ease-in-out infinite;
}

#faq .faq_animation .question_icon::after {
  background: rgba(255, 255, 255, 0.4);
  animation-delay: 0.5s;
}

#faq .faq_animation .question_icon::before {
  background: rgba(255, 255, 255, 0.6);
  animation-delay: 1.5s;
}

@keyframes grow1 {
  0% {
    transform: scale(1, 1);
    opacity: 1;
  }
  100% {
    transform: scale(1.8, 1.8);
    opacity: 0;
  }
}
/*  */
#faq .faq_animation .question_icon2 svg {
  width: 35px;
  height: 35px;
}
#faq .faq_animation .question_icon2::before,
#faq .faq_animation .question_icon2::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  z-index: -1;
  animation: grow2 1.7s ease-in-out infinite;
  -webkit-animation: grow2 1.7s ease-in-out infinite;
}

#faq .faq_animation .question_icon2::after {
  background: rgba(255, 255, 255, 0.4);
  animation-delay: 0.5s;
}

#faq .faq_animation .question_icon2::before {
  background: rgba(255, 255, 255, 0.6);
  animation-delay: 1.5s;
}

@keyframes grow2 {
  0% {
    transform: scale(1, 1);
    opacity: 1;
  }
  100% {
    transform: scale(1.8, 1.8);
    opacity: 0;
  }
}
/*  */

#faq .faq_animation .question_icon3 svg {
  width: 44px;
  height: 44px;
}
#faq .faq_animation .question_icon3::before,
#faq .faq_animation .question_icon3::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  z-index: -1;
  animation: grow3 1.6s ease-in-out infinite;
  -webkit-animation: grow3 1.6s ease-in-out infinite;
}

#faq .faq_animation .question_icon3::after {
  background: rgba(255, 255, 255, 0.4);
  animation-delay: 0.5s;
}

#faq .faq_animation .question_icon3::before {
  background: rgba(255, 255, 255, 0.6);
  animation-delay: 1.5s;
}

@keyframes grow3 {
  0% {
    transform: scale(1, 1);
    opacity: 1;
  }
  100% {
    transform: scale(1.8, 1.8);
    opacity: 0;
  }
}

#faq .faq_acc details {
  margin-bottom: 20px;
  border: 1px solid var(--ac-border);
  border-radius: 8px;
  overflow: hidden;
}

#faq .faq_acc summary {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 16px;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  list-style: none;
}

#faq .faq_acc summary .icon {
  transition: transform 0.3s ease;
}

#faq .faq_acc details[open] summary .icon {
  transform: rotate(180deg);
}

#faq .faq_acc details summary .icon svg {
  width: 32px;
  height: 32px;
}

#faq .faq_acc .content {
  background-color: transparent;
  border-top: 1px solid var(--ac-border);
  padding: 0 10px;
  overflow: hidden;
  transition: height 0.3s ease-out;
}

#faq .faq_acc details .heading {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--primary-font);
  background: var(--text-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--secondary-font);
  margin-bottom: 0px;
}

#faq .faq_acc .content p {
  display: block;
  text-align: left;
  margin: 0;
  margin-top: 20px;
  max-width: 750px;
  font-size: 16px;
  font-family: var(--secondary-font);
  color: var(--ac-ash);
  font-weight: 400;
}
  #faq .faq_animation img {
    width: 40%;
    height: auto;
    background-position: center;
    background-size: cover;
    object-fit: contain;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.faq_animation {
    display: flex
;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 992px) {
  #faq .faq_wrapper .title {
    font-size: 20px
  }
  #faq .faq_acc {
    margin-top: 20px;
  }
}

/* FAQ End */
  @media (max-width: 992px) {
    a.view_plan_btn.view_plan_btn_desktop.call {
    display: none;
}
  }
    @media (max-width: 769px) {
a.cta_button.wow.fadeInUp {
    margin-bottom: 10px;
}
 #faq .faq_animation img {
    width: 100%;
    height: auto;
    background-position: center;
    background-size: cover;
    object-fit: contain;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
  }
  .service_card {
    margin-bottom: 10px;
}
.timeline {
      position: relative;
      padding: 0;
      list-style: none;
    }
    .timeline:before {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 40px;
      width: 2px;
      margin-left: -1.5px;
      content: "";
      background-color: #e9ecef;
    }
    .timeline > li {
      position: relative;
      margin-bottom: 50px;
    }
    .timeline > li:after, .timeline > li:before {
      display: table;
      content: " ";
    }
    .timeline > li:after {
      clear: both;
    }
    .timeline > li .timeline-panel {
      position: relative;
      float: right;
      width: 100%;
      padding: 0 20px 0 100px;
      text-align: left;
    }
    .timeline > li .timeline-panel:before {
      right: auto;
      left: -15px;
      border-right-width: 15px;
      border-left-width: 0;
    }
    .timeline > li .timeline-panel:after {
      right: auto;
      left: -14px;
      border-right-width: 14px;
      border-left-width: 0;
    }
    .timeline > li .timeline-image {
      position: absolute;
      z-index: 1;
      left: 0;
      width: 80px;
      height: 80px;
      margin-left: 0;
      text-align: center;
      color: white;
      border: 7px solid #3a185ce3;
    border-radius: 100%;
    background-color: #8634dafc;

    }
    .timeline > li .timeline-image h4, .timeline > li .timeline-image .h4 {
      font-size: 10px;
      line-height: 14px;
      margin-top: 12px;
    }
    .timeline > li.timeline-inverted > .timeline-panel {
      float: right;
      padding: 0 20px 0 100px;
      text-align: left;
    }
    .timeline > li.timeline-inverted > .timeline-panel:before {
      right: auto;
      left: -15px;
      border-right-width: 15px;
      border-left-width: 0;
    }
    .timeline > li.timeline-inverted > .timeline-panel:after {
      right: auto;
      left: -14px;
      border-right-width: 14px;
      border-left-width: 0;
    }
    .timeline > li:last-child {
      margin-bottom: 0;
    }
    .timeline .timeline-heading h4, .timeline .timeline-heading .h4 {
      margin-top: 0;
      color: inherit;
    }
    .timeline .timeline-heading h4.subheading, .timeline .timeline-heading .subheading.h4 {
      text-transform: none;
    }
    .timeline .timeline-body > ul,
    .timeline .timeline-body > p {
      margin-bottom: 0;
    }
    
    @media (min-width: 768px) {
      .timeline:before {
        left: 50%;
      }
      .timeline > li {
        margin-bottom: 100px;
      }
      .timeline > li .timeline-panel {
        float: left;
        width: 45%;
        padding: 0 20px 20px 30px;
        text-align: right;
      }
      .timeline > li .timeline-image {
        left: 50%;
        width: 100px;
        height: 100px;
        margin-left: -50px;
      }
      .timeline > li .timeline-image h4, .timeline > li .timeline-image .h4 {
        font-size: 13px;
        line-height: 18px;
        margin-top: 16px;
      }
      .timeline > li.timeline-inverted > .timeline-panel {
        float: right;
        padding: 0 30px 20px 20px;
        text-align: left;
      }
      .elementor-heading-title {
    font-weight: 600;
    line-height: 1em;
    color: #FFF;
    font-size: 28px;
    width: 420px;
    margin-bottom: 10px;
}
h2.title.wow.fadeInUp {
    max-width: 100%;
    font-size: 40px;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
    margin-bottom: 40px;
    -webkit-text-fill-color: #fff;
}
    }
    @media (min-width: 992px) {
      .timeline > li {
      }
      .timeline > li .timeline-panel {
        padding: 0 20px 20px;
      }
      .timeline > li .timeline-image {
        width: 100px;
        height: 100px;
        margin-left: -48px;
      }
      .timeline > li .timeline-image h4, .timeline > li .timeline-image .h4 {
        font-size: 18px;
        line-height: 26px;
        margin-top: 30px;
      }
      .timeline > li.timeline-inverted > .timeline-panel {
        padding: 0 20px 20px;
      }
    }
    @media (min-width: 1200px) {
      .timeline > li {
      }
      .timeline > li .timeline-panel {
        padding: 0 20px 20px 100px;
      }
      .timeline > li .timeline-image {
        width: 100px;
        height: 100px;
        margin-left: -48px;
      }
      .timeline > li .timeline-image h4, .timeline > li .timeline-image .h4 {
        margin-top: 40px;
      }
      .timeline > li.timeline-inverted > .timeline-panel {
        padding: 0 100px 20px 20px;
      }
    }
    
    .page-section-1 {
      padding: 0rem 0 0 0;
    }
    .page-section h2.section-heading, .page-section .section-heading.h2 {
      font-size: 2.5rem;
      margin-top: 0;
      margin-bottom: 1rem;
    }
.timeline .timeline-body > ul, .timeline .timeline-body > p{
		font-size: 16px;
    color: #fff !important;
	}
.timeline .timeline-heading h4.subheading, .timeline .timeline-heading .subheading.h4{
	font-size: 18px;
  color: #fff;
}
section#about .timeline-image img {
    width: 80px;
    height: 80px;
}
.timeline-image {
    display: flex
;
    justify-content: center;
    align-items: center;
}
section#about {
    margin: 50px 0px;
}
h2.light-heading.our-guilding-heading.text-uppercase.aos-init.aos-animate {
    text-align: center;
    color: #fff;
    margin-bottom: 50px !important;
    /* font-weight: 500; */
}
.elementor-heading-title {
    font-weight: 600;
    line-height: 1em;
    color: #FFF;
    font-size: 28px;
}
.elementor-widget-container ul {
    list-style: disc;
    color: #fff;
        margin: 0 0 1.5em 3em !important;
}
.elementor-button {
    background-color: rgba(3, 40, 107, 0);
    fill: #FFF;
    color: #FFF;
    border-style: solid;
    border-width: 3px 3px 3px 3px;
    border-color: #FFF;
    border-radius: 6px 6px 6px 6px;
        font-size: 13px;
    padding: 10px 20px;
    margin-top: 20px;
}
.elementor-element.elementor-element-cf0e0e2.elementor-align-left.elementor-mobile-align-left.elementor-widget.elementor-widget-button {
    margin-top: 30px;
}
@media (max-width: 768px ) {
  section#about .timeline-image img {
    width: 60px;
    height: 60px;
}
.elementor-heading-title {
        font-size: 19px;
    }
}
.counter_wrapper .d-flex {
    display: flex !important
;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
}

.form_wrapper {
  max-width: 100%;
  background: var(--ac-BG);
  padding: 20px;
  border-radius: 24px;
  border: 1px solid var(--ac-border);
  pointer-events: painted;
  overflow: hidden;
  margin: 50px 0px;
}

.form_wrapper .heading {
  display: block !important;
  font-size: 48px;
  font-family: var(--primary-font);
  margin-bottom: 40px;
  margin-top: 20px;
  text-align: center;
  font-weight: bold;
  background: var(--text-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 1;
}
.form_wrapper form textarea {
  height: 140px !important;
  margin-bottom: 0px !important;
}

.form_wrapper form textarea:focus,
.form_wrapper form input:focus {
  border-color: var(--primary-color);
}

.form_wrapper form textarea::placeholder,
.form_wrapper form input::placeholder {
  color: var(--ac-ash);
}

.form_wrapper form textarea,
.form_wrapper form input {
  width: 100%;
  font-size: 16px;
  font-family: var(--secondary-font);
  color: var(--ac-ash);
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid var(--ac-border);
  border-radius: 30px;
  padding: 12px 20px;
  background: transparent;
  outline: none;
  box-shadow: none;
  transition: 0.3s;
}

.form-group {
  display: block;
  margin-bottom: 20px;
}

.form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.form-group label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  font-size: 16px;
  font-family: var(--secondary-font);
  color: var(--ac-ash);
  font-weight: 600;
}

.form-group label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid var(--ac-ash);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  border-radius: 6px;
  cursor: pointer;
  margin-right: 8px;
}

.form-group input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 9px;
  width: 6px;
  height: 14px;
  border: solid #0079bf;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.emailjs_response {
  margin: 0;
}

#emailjs-response {
 margin-bottom: 10px;
}

.form_wrapper .submit_btn {
  width: 100%;
  font-size: 18px;
  font-family: var(--secondary-font);
  color: var(--secondary-color);
  font-weight: 500;
  background: var(--primary-color);
  padding: 12px 20px;
  /* margin-top: 20px; */
  border-radius: 30px;
  transition: 0.4s;
}

.form_wrapper .submit_btn:hover {
  background: var(--secondary-color);
  color: var(--ac-black);
}

@media screen and (max-width: 992px) {
  .form_wrapper .heading {
    font-size: 34px;
  }



  .form_wrapper {
    margin-bottom: 80px;
  }
}
.dropdown-container1 {
      width: fit-content;
      margin: 20px;
    }

    .dropdown-toggle1 {
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 16px;
      font-weight: 600;
      color: #333;
    }

    .dropdown-toggle1 svg {
      transition: transform 0.3s ease;
    }

    .dropdown-toggle1.active svg {
      transform: rotate(180deg);
    }

    .dropdown-list1 {
      margin-top: 10px;
      padding-left: 20px;
      list-style: disc;
      display: none;
      animation: fadeIn 0.3s ease-in-out;
    }

    .dropdown-list1.show {
      display: block;
          text-align: left;
    }
ul#dropdownList1 li {
    color: #fff !important;
}
div#toggleDropdown1 {
    color: #fff;
}

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-5px); }
      to { opacity: 1; transform: translateY(0); }
    }

    div#toggleDropdown1 path {
  stroke: #fff;
}