* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: thin;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins';
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

.common_space {
  padding: 90px 0;
}

h1 {
  font-size: 38px;
  font-weight: 600;
  color: #333333;
  line-height: 46px;
}

h2 {
  font-size: 35px;
  font-weight: 500;
  color: #333333;
}

h3 {
  font-size: 25px;
  font-weight: 600;
  color: #333333;
}

p {
  font-size: 16px;
  font-weight: 300;
  color: #333333;
}

.primary_button {
  background: linear-gradient(150deg, #00C1FF 12%, #00BEFF 31%, #00B4FF 47%, #00A2FF 61%, #008AFF 75%, #006CFF 87%, #0046FF 100%);
  box-shadow: 0px 4px 10px 0px #00000026;
  border-radius: 10px;
  padding: 12px 25px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}

.primary_button::after {
  content: "";
  position: absolute;
  top: -50px;
  left: -75px;
  width: 50px;
  height: 155px;
  background: white;
  opacity: 0.2;
  transform: rotate(35deg);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 1;
}

.primary_button:hover::after {
  left: 120%;
}

.primary_button span {
  position: relative;
  z-index: 2;
}

.primary_button:focus-visible {
  color: #ffffff;
}

.primary_button:hover {
  color: #ffffff;
}

.primary_button svg {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.25, 1.5, 0.5, 1);
  will-change: transform;
  z-index: 2;
}

.primary_button:hover svg {
  transform: translateX(8px) scale(1.2);
}

/*--======== header css start here  =======----*/
header {
  padding: 10px 0;
  position: absolute;
}

header .navbar-nav .nav-item .nav-link {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  padding: 25px;
  transition: color 0.3s ease;
}

header .navbar-nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  left: 25px;
  bottom: 23px;
  width: 0;
  height: 2px;
  background: linear-gradient(150deg, #00C1FF 12%, #00BEFF 31%, #00B4FF 47%, #00A2FF 61%, #008AFF 75%, #006CFF 87%, #0046FF 100%);
  transition: width 0.4s ease-in-out;
}

header .navbar-nav .nav-item .nav-link:hover::after, header .navbar-nav .nav-item .nav-link.active::after {
  width: 35%;
}

header.scroll_header {
  position: fixed;
  top: 0;
  padding: 0;
  z-index: 9999;
  background-color: #ffffff77;
  animation: header_animation 0.7s;
  -webkit-box-shadow: 0px 4px 20px 7px rgb(255 255 255 / 3%);
  -moz-box-shadow: 0px 4px 20px 7px rgb(255 255 255 / 3%);
  box-shadow: 0px 4px 20px 7px rgb(255 255 255 / 3%);
  backdrop-filter: blur(10px);
}

@keyframes header_animation {
  from {
    top: -90px;
  }

  to {
    top: 0px;
  }
}

header #offcanvasDarkNavbar {
  width: 320px;
  background: #fff;
}

/* dropdown css start  */
header.scroll_header .dropdown-content {
  top: 74px;
  margin-top: 0;
}

header .dropdown-content {
	position: absolute;
	top: 70%;
	left: 63%;
	transform: translateX(-50%);
	background: #ffffff77;
	padding: 6px 10px;
	min-width: 125px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
	margin-top: 10px;
	backdrop-filter: blur(10px);
	pointer-events: none;
	z-index: 99999;
	position: relative;
}
header.scroll_header .dropdown-content::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  z-index: -1;
  box-sizing: border-box;
  pointer-events: none;
}

.nav-dropdown:hover .dropdown-content,
.nav-dropdown:has(.dropdown-content:hover) .dropdown-content {
  display: block;
  opacity: 1;
  visibility: visible;
  animation: dropdownSlide 0.3s ease forwards;
  pointer-events: auto;
}

.nav-dropdown:hover .nav-link svg {
  transform: rotate(180deg);
}

@keyframes dropdownSlide {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.dropdown-item {
  padding: 5px;
  transition: all 0.3s ease;
  color: #333333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.dropdown-item::after {
	content: "";
	position: absolute;
	left: 6px;
	bottom: 3px;
	width: 0;
	height: 2px;
	background: linear-gradient(150deg, #00C1FF 12%, #00BEFF 31%, #00B4FF 47%, #00A2FF 61%, #008AFF 75%, #006CFF 87%, #0046FF 100%);
	transition: width 0.4s ease-in-out;
}

header .dropdown-item:hover::after{
  width: 25%;
}
/*--======== header css end here  =======----*/

/*==========----- home page css start here  ---=============*/
.home_banner_sec {
  background-image: url(../images/banner_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
}

.home_banner_sec .banner_content {
  max-width: 750px;
}

.home_banner_sec .banner_content img {
  left: -35px;
}

.rocket_img {
  animation: rocketBounce 3s ease-in-out infinite;
  will-change: transform;
  backface-visibility: hidden;
}

@keyframes rocketBounce {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

.home_banner_sec .banner_content h1 span {
  font-size: 32px;
}

.home_banner_sec .banner_content h1::before {
  position: absolute;
  content: "";
  left: 60%;
  top: -30%;
  background-image: url(../images/heading_after.svg);
  background-size: contain;
  background-repeat: no-repeat;
  height: 80px;
  width: 80px;
}

.home_banner_sec .banner_content p {
  color: #333333;
}

.home_product_sec {
  background-color: #041027;
}

.home_product_sec .product_heading {
  max-width: 1090px;
}

.home_product_sec .feature_card {
  background-color: #364052;
  padding: 50px 40px;
  border-radius: 20px;
}

.home_product_sec .footer_links li {
  padding: 7px 0;
}

.home_product_sec .grid_img_one {
  height: 426px;
}

.home_product_sec .grid_img_two {
  height: 205px;
}

.home_product_sec .grid_img_three {
  height: 205px;
}

.oot_access_sec {
  background: url(../images/oot_bg_new.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: bottom;
}

.oot_access_sec .oot_access_content {
  max-width: 500px;
}

.oot_access_sec .oot_access_content h3 {
  font-size: 18px;
  font-weight: 600;
}

.oot_access_sec .oot_access_content ul li {
  font-size: 15px;
  font-weight: 400;
}

.oot_access_sec .oot_access_content ul li::before {
  position: absolute;
  content: "";
  top: 5px;
  left: -24px;
  height: 12px;
  width: 12px;
  background-image: url(../images/li_before.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.future_sec {
  background: none;
  color: #333333;
}

.future_sec::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 10%;
  background-image: url(../images/vision_before.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 122px;
  width: 118px;
}

.contact_us_sec .wrapper_contact {
  padding: 20px;
  background-image: url(../images/contact_us_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px;
}

.contact_us_sec .contact_with_us_content {
  border: 1px solid #FFFFFF85;
  border-radius: 20px;
  padding: 40px;
}

.contact_us_sec .contact_with_us_content h3 {
  font-size: 18px;
  font-weight: 600;
}

.contact_inner_content {
  max-width: 550px;
}

.choose_kad_slider_sec .card_slider_container {
  transition: all 0.5s ease;
}

.choose_kad_slider_sec .card_slider_container.initial {
  padding-left: 70px;
}

.choose_kad_slider_sec .card_slider_container.active {
  padding-left: 0;
}

.choose_kad_slider_sec .slide_item {
  /* padding: 15px; */
  outline: none;
}

.choose_kad_slider_sec .feature_card {
  height: 400px;
  padding: 20px;
  box-shadow: 0px 4px 10px 0px #00000026;
}

.choose_kad_slider_sec .feature_card::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #00000063;
  border-radius: 10px;
}

.card_slider_container .slide_item .feature_card.slide_one {
  background-image: url(../images/slide1.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.card_slider_container .slide_item .feature_card.slide_two {
  background-image: url(../images/slide2.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.card_slider_container .slide_item .feature_card.slide_three {
  background-image: url(../images/slide3.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.card_slider_container .slide_item .feature_card.slide_four {
  background-image: url(../images/slide4.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.feature_card .card_content p {
  font-size: 14px;
  font-weight: 400;
}

.feature_card .card_content {
  flex-grow: 1;
}

.choose_kad_slider_sec .custom_dots .dot {
  width: 10px;
  height: 10px;
  background-color: #DDDDDD;
  border-radius: 50%;
  cursor: pointer;
}
.choose_kad_slider_sec .custom_dots .dot.active {
  background-color: #0046FF;
}

.core_slider_container {
  display: block;
  height: 600px;
  width: auto;
  margin: 20px auto 0;
  position: relative;
  max-width: 1314px;
}

.core_slider_container .arrow-left,
.core_slider_container .arrow-right {
  position: absolute;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  cursor: pointer;
  z-index: 9;
  background-color: #00000033;
  border-radius: 100%;
  height: 32px;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.core_slider_container .arrow-left {
  left: 0;
}

.core_slider_container .arrow-right {
  right: 0;
}


@media (max-width: 768px) {

  .core_slider_container .arrow-left,
  .core_slider_container .arrow-right {
    display: none;
  }
}

.core_slider_container .dots {
  display: inline-block;
  width: 100%;
  text-align: center;
  top: 16px;
}

.core_slider_container .dots span {
  display: inline-block;
  width: 20px;
  height: 0;
  margin-right: 2px;
  cursor: pointer;
  user-select: none;
  padding: 10px 0;
  position: relative;
}

.core_slider_container .dots span:before {
  content: "";
  position: absolute;
  transform: translate3d(-50%, -50%, 0);
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: #ccc;
  opacity: 0.6;
}

.core_slider_container .dots span.active:before {
  background-color: #0046FF;
  opacity: 1;
}

.core_slider_container .slider {
  display: block;
  width: 650px;
  height: 93%;
  margin: 0 auto;
  position: relative;
}

.core_slider_container .slider .slide {
  display: inline-block;
  width: 100%;
  height: 500px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0) scale3d(.4, .4, 1);
  transition: transform 0.3s ease-in-out 0s, z-index .2s ease-in-out .1s;
  border-radius: 50px;
}

.core_slider_container .slider .slide:nth-child(1) {
  background-image: url(../images/coreslide1.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
}

.core_slider_container .slider .slide:nth-child(2) {
  background-image: url(../images/coreslide2.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.core_slider_container .slider .slide:nth-child(3) {
  background-image: url(../images/coreslide3.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.core_slider_container .slider .slide.prev-2 {
  transform: translate3d(-105%, -50%, 0) scale3d(.4, .4, 1);
  z-index: 1;
  opacity: 0.5;
}

.core_slider_container .slider .slide.prev-1 {
  transform: translate3d(-113%, -50%, 0px) scale3d(0.6, 0.6, 1);
  z-index: 2;
}

.core_slider_container .slider .slide.next-1 {
  z-index: 2;
  transform: translate3d(13%, -50%, 0) scale3d(.6, .6, 1);
}

.core_slider_container .slider .slide.active {
  z-index: 3;
  transform: translate3d(-50%, -50%, 0) scale3d(1, 1, 1);
  box-shadow: 0px 5px 15px 3px rgba(0, 0, 0, 0.3);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.core_slider_container .speedotv_content {
  background-color: #FFFFFFed;
  border-radius: 20px;
  padding: 15px 20px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.core_brands_slider_sec {
  background-image: url(../images/core_slider_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.core_slider_container .speedotv_content h3 {
  color: #333333;
  font-size: 20px;
  font-weight: 600;
}

.core_slider_container .speedotv_content p {
  color: #333333;
  font-size: 14px;
  font-weight: 400;
}

.slide .speedotv_content {
  opacity: 0;
  pointer-events: none;
  filter: blur(100px);
  transition: all 0.5s ease;
}

.slide.active .speedotv_content {
  opacity: 1;
  pointer-events: auto;
  filter: blur(0px);
}

.slide.prev-1,
.slide.next-1 {
  opacity: 0.6;
  transform: scale(0.95);
  transition: all 0.5s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

/*==========----- home page css end here  ---=============*/


/*========--- footer css start here  --===========*/
.footer_sec {
  background-color: #000000;
}

.footer_sec .footer_menu_content h2 {
  font-size: 16px;
  font-weight: 600;
}

.footer_sec .footer_menu_content h2::before {
  position: absolute;
  content: "";
  bottom: -5px;
  left: 0;
  height: 1px;
  width: 43px;
  background-color: #ffffff;
}

.footer_sec .footer_menu_content .footer_links a {
  font-size: 14px;
  font-weight: 300;
  color: #ffffff;
  position: relative; 
  display: inline-block;
  padding-bottom: 4px; 
  transition: color 0.3s ease;
}

.footer_sec .footer_menu_content .footer_links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0; 
  width: 0;
  height: 1px;
  background: linear-gradient(150deg, #00C1FF 12%, #00BEFF 31%, #00B4FF 47%, #00A2FF 61%, #008AFF 75%, #006CFF 87%, #0046FF 100%);
  transition: width 0.4s ease-in-out;
}

.footer_sec .footer_menu_content .footer_links a:hover::after {
  width: 100%; 
}

.footer_sec .footer_menu_content .footer_links a:hover {
  color: #0098FE;
}


.footer_sec .footer_menu_content .footer_links li {
  padding: 5px 0;
}

.footer_sec .footer_newsletter input {
  border: 1px solid #FFFFFF66;
  background: transparent;
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}

.footer_sec .footer_newsletter input:focus {
  box-shadow: none;
}

.footer_sec .footer_newsletter input::placeholder {
  color: #ffffff;
}

.footer_sec .border-start {
  height: 12px;
  display: inline-block;
  vertical-align: middle;
}

.footer_sec .sub_footer_sec {
  border-top: 1px solid #808080;
}

.sub_footer_sec a,
.sub_footer_sec span {
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 400;
}

.sub_footer_sec a:hover {
  color: #0098FE;
}

/*========--- footer css end here  --===========*/

/*---============ about page css start here  ==========-------*/
.about_banner_section {
  background-image: url(../images/about_us_banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 550px;
  padding: 3rem 0px;
}

.about_banner_section .banner_content{
  padding: 7rem 0 0;
  position: relative;
  z-index: 1;
}

.banner_after_image {
  position: absolute;
  right: 0;
  bottom: 0;
}
.about_who_are_sec {
  background-color: #041027;
  padding: 70px 0 70px 0;
}

.about_who_are_sec .who_about_card {
  background: #364052;
  border: 1px solid #FFFFFF4D;
  box-shadow: 0px 4px 10px 0px #00000026;
  border-radius: 10px;
}

.our_journey_section {
  background-image: url(../images/journey_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  min-height: 100vh;
}

.our_journey_section .our_journey_content {
  max-width: 870px;
  padding-top: 60px;
}

.about_vision_sec .about_vision_content {
  max-width: 350px;
}

.about_vision_sec::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 225px;
  background-image: url(../images/about_vision_before.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.about_values_section .value_card {
  background: linear-gradient(180deg, #FFFFFF 0%, #A3E9FF 100%);
  padding: 20px 30px;
  box-shadow: 0px 4px 10px 0px #00000026;
  border-radius: 10px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about_values_section .value_card img {
  transition: transform 0.6s ease;
  transform-origin: center;
}

.about_values_section .value_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.about_values_section .value_card:hover img {
  transform: scale(1.2) rotateY(180deg);
}

.about_values_section .value_card h5 {
  color: #333333;
  font-size: 18px;
  font-weight: 600;
}

.about_join_section .wrapper_join_sec,.about_join_section .wrapper_join_sec.build_together {
  background-image: url(../images/about_join_letter_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px;
  border-radius: 10px;
  max-width: 1000px;
}
/* .about_join_section .wrapper_join_sec.build_together {
  background-image: url(../images/build_together_banner.png);
} */
.about_join_content strong{
  font-size: 18px;
  font-weight: 500;
}


/*---============ services page css start here  ==========-------*/
.services_overview_content  {
  max-width: 850px;
}
.services_overview_content h3 {
  font-size: 20px;
  font-weight: 500;
}

.broadband_content {
  max-width: 390px;
}

.our_approach_sec {
  background: url(../images/approach_bg.png), #041027;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

.our_approach_content {
  max-width: 470px;
}

.ott_platform_section {
  background-color: #041027;
  padding-top: 150px;
}

.ott_platform_section .ott_wrapper {
  background: linear-gradient(180deg, #17284A 0%, #26498D 50.48%, #17284A 100%);
  border: 1px solid #FFFFFF33;
  border-radius: 50px;
  padding: 40px 50px;
}

.ott_platform_section .ott_wrapper .ott_platform_img {
  top: -100px;
}

.ott_platform_section .inner_content_box {
  background-color: #333333;
  border-radius: 20px;
  padding: 20px;
  max-width: 500px;
  margin-bottom: -80px;
}

.video_hosting_sec .broadband_content {
  max-width: 470px;
}

.video_hosting_sec::before {
  position: absolute;
  content: "";
  right: -38px;
  bottom: 33%;
  background-image: url(../images/vision_before.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 122px;
  width: 118px;
}

.enterprise_solution_sec .ott_wrapper {
  background-image: url(../images/solution_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0px 4px 10px 0px #00000026;
  height: 450px;
}

.enterprise_solution_sec .inner_content_box {
  background: #FFFFFF;
  box-shadow: 0px 4px 10px 0px #00000026;
  border-radius: 20px;
  padding: 40px 50px;
  max-width: 1024px;
  margin-bottom: -100px;
}

.choose_services_sec .value_card h4 {
  color: #333333;
  font-size: 18px;
  font-weight: 600;
}

.custom_app_sec .broadband_content {
  max-width: 470px;
}

.custom_app_sec .our_approach_content {
  max-width: 478px;
}

/*---============ Contact us page css start here  ==========-------*/
.contact_form_section{
  padding: 70px 0;
}
.contact_form_inner{
  border-radius: 20px;
  background-color: #ffffff;
  box-shadow: 0px 4px 10px 0px #00000026;
}
.contact_form_info{
  padding: 60px 50px;
  background-color: #102143;
}
.cfi-ul li{
  display: flex;
  gap: 30px;
}
.cfi-ul li:not(:last-child){
  padding-bottom: 30px;
  margin-bottom: 30px;
  border: none;
  border-bottom: 2px solid transparent;
  border-image-slice: 1;
  border-image-source: linear-gradient(90deg, rgba(93, 187, 217, 0.5) 0%, rgba(93, 187, 217, 0) 100%);
}
.contact_form_form{
  padding: 50px;
}
.contact_form .form-control{
  padding: 10px 15px;
  border-color: #DDDDDD;
  border-radius: 5px;
}
.contact_form .form-control:focus{
  box-shadow: unset;
  border-color: #102143;
}
.contact_form .form-control::placeholder{
  color: #BBBBBB;
}
.offcanvas {
  transition: transform 0.6s ease;
  height: 100dvh;
}
.mobileNavbar .nav-item .nav-link .fa-angle-down{
  transition: all 0.3s ease;
}
.mobileNavbar .nav-item .nav-link[aria-expanded="true"] .fa-angle-down{
  transform: rotate(180deg);
}
.mobileNavbar .nav-item .nav-link + .collapseCont .card{
  background-color: #f3f3f3;
  border: 0;
  padding-left: 25px;
}
.mobileNavbar .nav-item .nav-link + .collapseCont .card .nav-link{
  padding: 0;
}
.mobileNavbar .nav-item .nav-link + .collapseCont .card .nav-link:last-child {
  margin-bottom: 0 !important;
}
.mobileNavbar .nav-item .nav-link + .collapseCont .card .nav-link:not(:last-child){
  margin-bottom: 12px;
}




.privacy_policy_banner_section {
  background-image: url(../images/about_us_banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 550px;
  padding: 3rem 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.privacy_policy_banner_section::after {
  content: "";
  background-image: url(../images/terms_vector.png);
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  background-position: top right;
  background-repeat: no-repeat;
}

.text-gray {
  color: #333 !important;
}

.contact_form .has-error .form-control,
.footer_newsletter .has-error .form-control {
    border-color: red;
}

.contact_form .has-error .help-block,
.footer_newsletter .has-error .help-block {
    color: red;
}

ul.list-disc li {
  list-style: disc !important;
}