@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Lexend:wght@100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

*
{
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
}

:root
{
    /* --background-color-body:#FFFFFF; */
    --background-color-body: #020014;
    --black-color:#000000;
    --light-black:#868686e0;
    --blue-light:#00AFEF;
    --white:#ffffff;
    /* --black:#000000; */
    --black-color:#ffffff;
}

.dark-mode {
    --background-color-body: #020014;
    --black-color:#ffffff;
}
.dark-mode .start-btn-white
{
    background-color: var(--black);
    border: 2px solid #ffffff21;

}
.dark-mode .svg-line-color
{
    color: #252525b7;
}

body
{
    background-color: var(--background-color-body) !important; 
}
body::-webkit-scrollbar
{
    display: none;
}

.header-font-color .nav-item a
{
    color: var(--black-color) !important;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.4s;
}
.header-font-color .nav-item a:hover
{
    color: var(--blue-light) !important;
   
}

#toggle-dark-mode
{
    background-color: var(--blue-light);
    color: var(--black-color);
    border: none;
    padding: 2px 5px;
    border-radius: 6px;
    position: fixed;
    right: 0;
    top:20% ;
    z-index: 2;
}
.navbar-toggler
{
    background-color: var(--blue-light);
}
.gradient-svg
{
    position: absolute;
    right: 0;
    top: 0;
    z-index: -2;
}


.start-btn-blue
{
    background-color: var(--blue-light);
    color: var(--white);
    font-size: 14px;
    padding: 6px 6px;
    border-radius: 6px;
    border: 1px solid var(--blue-light);
    transition: background-color 0.4s ;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}
.start-btn-blue:hover
{
    background-color:rgba(0, 175, 239, 0.771);
}

.start-btn-white
{
    background-color: var(--white-color);
    color: var(--black-color);
    font-size: 14px;
    padding: 6px 6px;
    border-radius: 6px;
    margin-left: 3px;
    border: 2px solid #ffffff21;
    transition: background-color 0.4s ;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}
.start-btn-white:hover
{
    background-color: #cccccc13;
    
}

.first-big-font h1 {
    font-size: 45px;
    font-weight: 400;
    color: var(--black-color);
    letter-spacing: 1.5px;
}
.first-big-font p 
{
    font-size: 15px;
    font-weight: 400;
    color: var(--light-black);
}


.svg-line-color
{
    color: #ececec8c;
}
.tos-by-numbers h5 
{
    color: var(--black-color);

}
.tos-by-numbers p 
{
    color: var(--light-black);
}
.tos-by-numbers-hedding
{
    color: var(--black-color);
    margin-bottom: 50px;
    font-size: 20px;
}

.line-bg-contant
{
    position: absolute;
    width: 100%;
    top: 37%; left: 50%; transform: translate(-50%, -50%);
}
.tos-by-numbers h5 
{
    font-size: 25px;
}
.section-hedding
{
  color: var(--black-color);
  
  font-size: 26px;
}
.redar-box-position
{
  position: absolute;
  right: -45px;
  top: 100px;
}
.redar-box-position .start-btn-white-gradiant {
  background-color: white;
  color: var(--black-color);
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 8px;
  margin-left: 3px;
  border: 2px solid transparent;
  background-image: linear-gradient(white, white), linear-gradient(90deg, #37B7FF, #85A7FF);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
  width: fit-content;
  
  /* Animation properties */
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInOut 8s infinite ease-in-out;
}

/* Stagger the animation for each child */
.redar-box-position .start-btn-white-gradiant:nth-child(1) {
  animation-delay: 0s;
}
.redar-box-position .start-btn-white-gradiant:nth-child(2) {
  animation-delay: 1s;
}
.redar-box-position .start-btn-white-gradiant:nth-child(3) {
  animation-delay: 2s;
}
.redar-box-position .start-btn-white-gradiant:nth-child(4) {
  animation-delay: 3s;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  10% {
    opacity: 1;
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(0);
  }
  30% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}

.dark-mode .redar-box-position  .start-btn-white-gradiant
{
  background-color: #cccccc13;
  background-image: linear-gradient(rgb(29, 29, 29), rgb(0, 0, 0)), linear-gradient(90deg, #37B7FF, #85A7FF);
}
.dark-mode .svg-btn
{
  background-color: #000000;
  border: 2px solid #85a8ff8a;
}
.svg-btn
{
  background-color: white;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
  padding: 8px 10px;
  border-radius: 8px;
}
.redar-box-position-btn-1 {
  position: absolute;
  left: 130px;
  top: 40px;
  opacity: 0;
  animation: fadeInOut 12s infinite;
}
.redar-box-position-btn-2 {
  position: absolute;
  left: 60px;
  top: 150px;
  opacity: 0;
  animation: fadeInOut 12s infinite 2s;
}
.redar-box-position-btn-3 {
  position: absolute;
  left: 80px;
  top: 350px;
  opacity: 0;
  animation: fadeInOut 12s infinite 4s;
}
.redar-box-position-btn-4 {
  position: absolute;
  left: 160px;
  top: 250px;
  opacity: 0;
  animation: fadeInOut 12s infinite 6s;
}
.redar-box-position-btn-5 {
  position: absolute;
  left: 250px;
  top: 40px;
  opacity: 0;
  animation: fadeInOut 12s infinite 8s;
}
.redar-box-position-btn-6 {
  position: absolute;
  left: 170px;
  top: 130px;
  opacity: 0;
  animation: fadeInOut 12s infinite 10s;
}

@keyframes fadeInOut {
  0%, 15% {
    opacity: 0;
    transform: scale(0.8);
    z-index: 1;
  }
  20%, 30% {
    opacity: 1;
    transform: scale(1.1);
    z-index: 2;
  }
  35%, 65% {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
  }
  70%, 80% {
    opacity: 0;
    transform: scale(0.9);
    z-index: 1;
  }
  85%, 100% {
    opacity: 0;
    transform: scale(0.8);
    z-index: 1;
  }
}

/* This ensures maximum 3 buttons visible at any time */
body {
  counter-reset: visibleButtons;
}

[class^="redar-box-position-btn-"]:not(:checked) {
  counter-increment: visibleButtons;
}

[class^="redar-box-position-btn-"] {
  animation-play-state: paused;
}

body:has([class^="redar-box-position-btn-"]:nth-last-child(n+4)) 
[class^="redar-box-position-btn-"] {
  animation-play-state: running;
}
.box-slider .card-box {
  background-color: var(--white);
  border: 2px solid #8a8a8a1a;
  border-radius: 7px;
  padding: 20px 25px;
  margin: 20px 15px;
  margin-top: 0px !important;
  box-shadow: rgba(17, 17, 26, 0.034) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}
.box-slider .card-box p {
  font-size: 14px;
  color: var(--black-color);
}
.box-slider .owl-carousel::before {
  content: "";
  position: absolute;
  top: 0;
  left: -2px;
  width: 100px;
  height: 80%;
  background: linear-gradient(to right, rgba(254, 254, 254, 0.804), transparent);
  z-index: 1;
}
.box-slider .owl-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  right: -2px;
  width: 100px;
  height: 80%;
  background: linear-gradient(to left, rgba(254, 254, 254, 0.804), transparent);
  z-index: 1;
}
.dark-mode .box-slider .card-box {
  background-color: #020014;
}
.dark-mode .box-slider .owl-carousel::before {
  background: linear-gradient(to right, #020014, transparent);
}
.dark-mode .box-slider .owl-carousel::after {
  background: linear-gradient(to left, #020014, transparent);

}
.text-slider-img p
{
  font-weight: 500;
}
.text-slider-img span {
  font-size: 14px;
  font-weight: 500;
  color: var(--light-black);
}

.doat-svg-margin
{
  margin-bottom: -130px;
  width: 100%;
  height: 200px;
}
.box-slider #theme-image
{
  background: #FFF;
background: linear-gradient(360deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 0%, rgba(234, 245, 255, 1) 71%, rgba(234, 245, 255, 1) 100%, rgba(234, 245, 255, 1) 100%);
  border-radius: 13px;
}
.dark-mode .box-slider #theme-image
{

  background: linear-gradient(360deg, #02001400 0%, #02001400 0%, #0b1133c2 71%, #85a8ff28  100%, #0b1133 100%);
}
.margin-bottom-heading
{
  margin-bottom: 55px;
}

.icon-box {
  width: 53px;
  background-color: #e0e0e008;
  padding: 10px;
  border-radius: 7px;
  border: 2px solid transparent;
  box-shadow: rgba(50, 50, 93, 0.103) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.158) 0px 18px 36px -18px inset;
}
.Services-section h6
{
  color: var(--black-color);
  font-size: 16px;
  font-weight: 500;
}
.service-btn
{
  background-color: transparent;
  border: none;
  color: var(--blue-light);
  font-size: 16px;
}

.dark-mode .icon-box {
  background-color: #13131354;
  box-shadow: rgba(50, 50, 93, 0.514) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.158) 0px 18px 36px -18px inset;
  border: 2px solid #36363685;
}
.icon-box-main {
  margin-bottom: 30px;
}
.gradiant-box-section-1 .gradiant-img
{
  border-radius: 13px; 
  overflow: hidden;
  border: 2px solid #8a8a8a1a;
  border-bottom: none;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  /* margin-top: -210px; */
  transform: rotate(180deg);
}

.gradiant-box-section .gradiant-img
{
  border-radius: 13px; 
  overflow: hidden;
  border: 2px solid #8a8a8a1a;
  border-bottom: none;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  margin-bottom: -210px;
}
.dark-mode .gradiant-box-section .gradiant-img
{
  border: 2px solid #36363685;
  border-bottom: none;
}
.margin-bottom-map
{
  margin-bottom: 30px;
}

.arrow-animation-bottom
{
  position: absolute;
  top: 80px;
  left: -50px;

}

.wave, .waves:after, .waves:before {
  position: absolute;
  top: 115px;
  left: 7px;
  background: rgba(19, 170, 252, 0.29);
  margin-left: -12px;
  margin-top: -12px;
  width: 13px;
  height: 13px;
  content: "";
  display: block;
  border-radius: 50%;
  -webkit-backface-visibility: hidden;
}

.waves:before {
  animation: wave-animate 2s infinite ease-out;
}

.waves:after {
  opacity: 0;
  animation: wave-animate 3s 1.5s infinite ease-out;
}

@keyframes wave-animate {
  0% {
    transform: scale(0);
    opacity: 1;
    transform-origin: center;
  }
  100% {
    transform: scale(4);
    opacity: 0;
    transform-origin: center;
  }
}

.arrow-animation {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 222;
  animation: float 1.5s infinite ease-in-out;
}

@keyframes float {
  0% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(10px);
  }
  100% {
      transform: translateY(0);
  }
}

.full-animation-set
{
    position: absolute;
    top: 22px;
    left: 56%;
}
.full-animation-set-1
{
  position: absolute;
  top: 24px;
  left: 64%;
}
.full-animation-set-2
{
    position: absolute;
    top: 72px;
    right: 22%;
}
.full-animation-set-3
{
    position: absolute;
    top: -60px;
    left: 16%;
}
.full-animation-set-4
{
    position: absolute;
    top: -16px;
    left: 11%;

}

.start-btn-white-TOI
{
  background-color: white;
  border: 2px solid #8a8a8a1a;
  border-radius: 12px;
  padding: 10px 10px;
  z-index: 3;
  cursor: pointer;
}
.dark-mode  .start-btn-white-TOI
{
  background-color: #100D24;
  
    border: 2px solid #36363685;
}

.start-btn-white-TOI h6  , .start-btn-white-TOI-2 h6
{
  color: var(--black-color);
  font-size: 15px;
  font-weight: 500;
}

.start-btn-white-TOI-2
{
  width: 120px;
  text-align: center;
  background-color: white;
  border: 2px solid #8a8a8a1a;
  border-radius: 8px;
  padding: 5px 5px;
}

.dark-mode  .start-btn-white-TOI-2
{
  background-color: #100D24;
  
    border: 2px solid #36363685;
}
.margin-left-toi
{
  margin-left: -25px;
}
.chart-line
{
  height: 280px;
    margin-top: 21px;
}
.logo-center {
  width: 35%;
  position: absolute;
  left: 57px;
  top: 59px;
  opacity: 0;
  animation:
    fadeInn 2s ease-in-out forwards,
    zoomPulse 2s ease-in-out infinite;
}

/* Fade in once */
@keyframes fadeInn {
  to {
    opacity: 1;
  }
}

/* Continuous zoom in/out */
@keyframes zoomPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.09);
  }
}


.first-svg
{
  width: 30%;
}

#four-image
{
  height: 315px;

}
.svg-width-font
{
  color: var(--black-color);
}
.svg-width-font h6
{
  font-size: 15px;
}
.Threat-Labs-tabel img{
  background-color: white;
  border: 2px solid #8a8a8a1a; 
  border-radius: 6px;
  padding: 4px;
  width: 35px;
  height: 30px;
  box-shadow: rgba(17, 17, 26, 0.034) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
  
}
.Threat-Labs-tabel h6 {
  font-size: 14px;
  color: var(--black-color);
  margin-bottom: 15px;
}
.icons-networks
{
  position: absolute;
  top: 25px;
  right: 30px;
  width: 80%;
}
.icons-networks-1 img {
  position: absolute;
  top: 12%;
  right: 233px;
  width: 35%;
}
.w-75-choosus
{
  width: 75% !important;
}
.dark-mode  .Threat-Labs-tabel img{
  background-color: #100D24;
  border: 2px solid #8a8a8a1a; 
 
  box-shadow: rgba(17, 17, 26, 0.034) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
  
}
.margin-logo-start
{
  margin-left: 10px;
}
.card-img-top-area-bg {
  background-color: #c8c8c824;
  height: 100%;
}
.card-img-top-area {
  border-radius: 8px !important;
  height: 260px;
  overflow: hidden;
  border: 1px solid transparent;
  background: linear-gradient(white, white) padding-box, linear-gradient(to bottom, rgba(171, 171, 171, 0.49), white) border-box;
}
.tab-content .card .card-body .card-title
{
  font-size: 14px;
  color: var(--light-black);
}
.tab-content .card .card-body  .card-text
{
  color: var(--black-color);
  font-size: 15px;
  font-weight: 500;
}
.dark-mode .card-img-top-area {
  
  background: linear-gradient(rgb(0, 0, 0), rgb(0, 0, 0)) padding-box, linear-gradient(to bottom, rgba(0, 0, 0, 0.49), rgb(0, 0, 0)) border-box;
}
.dark-mode .card-img-top-area-bg {
  background-color: #c8c8c800;
}
.dark-mode .tab-content .card
{
  background-color: #100D24;
  border: 2px solid #8a8a8a1a; 
}
.dark-mode .blog-sec .nav-tabs .active {
  background-color: var(--blue-light) !important;
  color: white;
  border: 2px solid #8a8a8a1a;
 
}
.blog-sec .nav-tabs .active {
  background-color: var(--blue-light);
  color: white;
  border: 2px solid #8a8a8a1a;
 
}
.blog-sec .nav-tabs .nav-link
{
  border: 2px solid #8a8a8a1a;
  transition: all 0.4s;
}
.dark-mode .blog-sec .nav-tabs .nav-link
{
  background-color: var(--black);
  border: 2px solid #ffffff21;
}
.blog-sec .nav-tabs .nav-link:hover
{
  background-color: var(--blue-light);
  color: white;
  border: 2px solid #8a8a8a1a;
}
.logo-gradiant-img-box {
  box-shadow: rgba(130, 209, 255, 0.804) 0px 30px 60px -18px inset, rgba(126, 87, 255, 0.825) 0px 18px 36px -10px inset;
  width: 45px !important;
  padding: 8px !important;
  border-radius: 6px;
}
.box-footer-logo {
  background-color: var(--white);
  width: 65px;
  height: 64px;
  border-radius: 7px;
  box-shadow: 0 1px 13px rgba(130, 209, 255, 0.308), 0 5px 13px rgba(126, 87, 255, 0.37);
}
/* .dark-mode .box-footer-logo {
  background-color: #100D24;
} */
.tab-content .card 
{
  border: 2px solid #8a8a8a1a; 
  border-radius: 12px;
}
.border-top-footer
{
  border-top: 2px solid #8a8a8a2a;
}
.footer-a a
{
  color: var(--black-color);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
display: block;
margin-bottom: 12px;
transition: color 0.4s;
}
.footer-a a:hover
{
  color: var(--light-black);
  
}
.footer-p
{
  color: var(--light-black);
  font-size: 15px;
  font-weight: 500;
}
.section-margin-padding
{
  padding-top:45px ;
  padding-bottom: 45px;
}

.margin-br
{
  margin: 0px 233px;
}
.doat-svg-margin-new {

  width: 100%;
  height: 300px;
}

.center-img
{
  position: absolute;
  top: 28%;
  right: 18% ;
}
.about-information h5
{
  color: var(--black-color);
  font-size: 25px;
}
.about-information p
{
  color: var(--blue-light);
}
.width-p-50
{
  width: 50%;
}
.box-scroll  #theme-image
{
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 0%, rgba(234, 245, 255, 1) 71%, rgba(234, 245, 255, 1) 100%, rgba(234, 245, 255, 1) 100%);
  border-radius: 13px;
  /* transform: rotate(180deg); */
}
.dark-mode .box-scroll #theme-image {
  background: linear-gradient(180deg, #02001400 0%, #02001400 0%, #0b1133c2 71%, #85a8ff28 100%, #0b1133 100%);
}
.doat-svg-margin-scroll {
  /* margin-bottom: -130px; */
  width: 100%;
  height: 350px;
}
.scroll-abs
{
  position: absolute;
  width: 100%;
  top: 0%;
  left: 1%;
  padding: 0px 50px !important;
}
.inner-box
{
  background-color: white;
  border: 2px solid #8a8a8a1a; 
  border-radius: 12px;
  padding: 10px 10px;
}

.box-scroll-height {
  overflow-y: auto;
  height: 325px;
  padding-right: 20px;
  scroll-behavior: smooth;
}

.box-scroll-height::-webkit-scrollbar {
  width: 6px; 

}

.box-scroll-height::-webkit-scrollbar-track {
  background-color: #00000000; 
  border-radius: 0px;
  border: 2px solid #8a8a8a1a;
}

.box-scroll-height::-webkit-scrollbar-thumb {
  background-color: var(--light-black); 
  border-radius: 4px;
}


.box-scroll-height::-webkit-scrollbar-button {
  display: none;
}
.dark-mode .box-scroll-height::-webkit-scrollbar-thumb {
  background-color:#777c9b ; 

}

.dark-mode .inner-box
{
  background-color: #020014;
  border: 2px solid #8a8a8a1a; 
  border-radius: 12px;
  padding: 10px 10px;
}
.gradiant-1-imge
{
  background: linear-gradient(182deg,rgba(61, 139, 255, 1) 0%, rgba(0, 175, 239, 1) 40%);
  padding: 6px 7px;
  border-radius: 5px ;
  margin-right: 15px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}
.timeline {
  position: relative;
  padding-left: 20px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 33px;
  top: 5px;
  bottom: 0;
  width: 0; /* Set width to 0 to allow border to show instead */
  border-left: 2.3px dashed var(--blue-light); /* Make the line dotted */
  z-index: 0;
}

.timeline-item {
  position: relative;
  margin-bottom: 2.4rem;
  padding-left: 65px;
  z-index: 0; /* Content stays behind the icon box */
}
.heading-text-inside-box 
{
  color: var(--black-color);
  font-size: 15px;
}
.dark-mode  .heading-text-inside-box 
{
  font-size: 15px;
}
.dark-mode  .timeline-icon-box
{
  background: linear-gradient(182deg, rgba(61, 139, 255, 1) 0%, rgba(0, 175, 239, 1) 40%);
  color: white;
}
.timeline-icon-box {
  position: absolute;
  left: -19px;
  top: 5px;
  width: 65px;
  height: 35px;
  background-color: white; /* Solid color to hide anything underneath */
  border: 2px solid #8a8a8a1a;
  border-radius: 13px;
 color: #00AFEF;
 font-size: 17px;
 font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2; /* Ensure it's on top of everything */
}
.owl-bg-slider
{
  background-color: #FBFBFB;
}
.dark-mode .owl-bg-slider
{
  background-color: #100D24;
}
.dark-mode .white-round-slider
{
  background-color: var(--black);
}
.white-round-slider
{
  background-color: white;
  width: 80px;
  padding: 10px;
  border-radius: 47%;
}
.white-round-slider img 
{
width: 30%;
height: 30%;

}
.footer-last-contact .first-big-font p
{
  color: var(--black) !important;
}
.dark-mode .footer-last-contact .first-big-font p
{
  color: var(--white) !important;
}
.form-box
{
  background-color: white;
  border: 2px solid #8a8a8a1a;
  border-radius: 12px;
  padding: 20px 20px;
}
.dark-mode .form-box
{
  background-color: #100D24 ;

}
.dark-mode .form-control
{
  background-color: transparent !important;
  border: 2px solid #8a8a8a1a !important;
  color: var(--white);
}
.form-control
{
  background-color: transparent !important;
  border: 2px solid #8a8a8a1a !important;
  color: var(--black);
  font-size: 14px;
  padding: 8px;
}
.form-control::placeholder
{
  color: var(--light-black);
}

.domy-box-bg {
  background: linear-gradient(0deg, rgb(255 255 255 / 0%) 0%, rgba(255, 255, 255, 0.521) 100%);
  height: 400px;
  width: 50%;
  border-radius: 7px;
  z-index: -1;
  position: absolute;
  top: 25px;
  right: -1px;
}
.domy-box-bg1 {
  background: linear-gradient(0deg, rgb(255 255 255 / 0%) 0%, rgba(255, 255, 255, 0.521) 100%);
  height: 400px;
  width: 50%;
  border-radius: 7px;
  z-index: -1;
  position: absolute;
  top: 45px;
  right: -15px;
}
.dark-mode .domy-box-bg {
  background: linear-gradient(0deg, rgb(255 255 255 / 0%) 0%, #100d2493 100%);
 
}
.dark-mode .domy-box-bg1 {
  background: linear-gradient(0deg, rgb(255 255 255 / 0%) 0%, #100d2493 100%);
 
}


.dark-mode .accodian-section .accordion-button
{
  color: var(--white);
}
.dark-mode .accodian-section .accordion-button:not(.collapsed) {
  color:var(--white);
  
}
.dark-mode .accodian-section .accordion-button::after {
  
  border: 2px solid #eeeeee2d !important;

}




.accodian-section .accordion-button {
 
    color: var(--black);
    font-weight: bold;
    border: none;
    border-radius: 8px;
   font-size: 15px;
   font-weight: 500;
   background-color: transparent !important;
   /* padding-left: 0;
   padding-right: 0; */
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.accodian-section .accordion-item
{
  border: 2px solid #8a8a8a1a !important;
  background-color: transparent !important;
}

.accodian-section .accordion-button::after {
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    border: 2px solid #8a8a8a1a !important;
  
    border-radius: 50%;
    height: 20px;
    width: 20px;
    color: var(--blue-light);
    font-size: 12px;
    margin-top: 2px;
}

.accodian-section .accordion-button:not(.collapsed) {
    color:var(--black);
    box-shadow: none;
    background-color: transparent !important;
}

.accodian-section .accordion-button:not(.collapsed)::after {
    content: "\f068"; 
    color: var(--light-black);
}

.accodian-section .accordion-collapse {
    border: none;
    border-radius: 8px;
    margin-top: 5px;
    transition: height 0.4s ease;
}
.accodian-section .accordion-button::after
{
    background-image: none;
}
.accodian-section .accordion-button::before
{
    background-image: none;
}
.accodian-section .accordion-button:not(.collapsed)::after 
{
    background-image: none;
}
.accodian-section .accordion-button:focus
{
    box-shadow: none;
}
.w-75-accodian
{
  width: 75%;
}
.country-wrapper {
  position: relative;
  display: inline-block; 
}

.country-shadow {
  display: block;
  width: 100%;
  animation: rotate 2s infinite ease-in-out;
}

.country-1 {
  position: absolute;
  top: -20px;
  left: -1px;
  width: 100%;
  z-index: 1;
  animation: bounceac 4s infinite ease-in-out;
}


@keyframes bounceac {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px); /* smaller bounce */
  }
}

@keyframes rotate {
  0%, 100% {
      transform: rotate(0);
  }
  50% {
      transform: rotate(180deg);
  }
}

.country-1-position {
    position: absolute;
    bottom: 222px;
    left: 63%;
}

.country-2-position {
 position: absolute;
    top: 166px;
    left: 55%;
}
.country-3-position {
    position: absolute;
    top: 234px;
    right: 20%;
}

.country-4-position {
      position: absolute;
    top: 52px;
    left: 15%;
}

.country-5-position {
     position: absolute;
    top: 118px;
    left: 10%;
}
/* 
.country-6-position
{
  position: absolute;
  bottom: 131px;
  right: 48px;
}

.country-7-position
{
  position: absolute;
  bottom: 46px;
  right: 8px;
} */

.our-team .card .card-body .card-title
{
  color: var(--black-color);
  font-size: 16px;
  font-weight: 500;
}
.our-team .card .card-body .card-text
{
  color: var(--light-black);
  font-size: 14px;
}
.our-team .card
{
  border: 2px solid #8a8a8a1a !important;
  border-radius: 13px;
}
.dark-mode .our-team .card
{
  background-color: #100D24;
  border: 2px solid #8a8a8a1a;
}
.Careers-section
{
  background-color: var();
}
.dark-mode .career-box
{
  background-color: #100D24;
 
}
.career-box
{
  background-color: #F8F8F8;
  border-radius: 14px;
  padding: 15px 15px;
  border-top: 3px solid var(--blue-light);
}
.headding-page-box
{
  /* height: 550px; */
  overflow: hidden;
  border: 2px solid #8a8a8a1a;
  background-color: #6d6d6d0c;
  border-radius: 13px;
}

.headding-page-box .gradiant-img
{
    position: absolute;
    top: 0;
    z-index: -1;
}
.headding-page-box .theme-image
{
  position: absolute;
  bottom: 0;
  z-index: -1;
  width: 100%;
}
.managed-soc-image-margin
{
  margin-left: 60px;
}
.managed-soc-image-margin-contemt
{
  margin-left: 60px;
}

.Top-Challenges-bg .domy-box-bg {
  background: linear-gradient(0deg, rgb(237 237 237) 0%, rgb(237 237 237) 100%);
  height: 400px;
  width: 90%;
  border-radius: 17px;
  z-index: -1;
  position: absolute;
  top: 21px;
  right: -20px;
}
.Top-Challenges-bg .domy-box-bg1 {
  background: linear-gradient(0deg, rgba(237, 237, 237, 0.541) 0%, rgba(237, 237, 237, 0.719) 100%);
  height: 400px;
  width: 90%;
  border-radius: 17px;
  z-index: -1;
  position: absolute;
  top: 41px;
  right: -37px;
}
.dark-mode .career-box
{
  background-color: #100D24;
 
}
.dark-mode .Top-Challenges-bg .domy-box-bg1 {
  background: linear-gradient(0deg, #100d24c4, #100d24c4 100%);
}
.dark-mode .Top-Challenges-bg .domy-box-bg {
  background: linear-gradient(0deg, #100d24fa, #100d24fa 100%);
}


.white-box-chart-new-1 .accordion-button::after
{
  display: none;
}
.white-box-chart-new-1 .accordion-button
{
  background-color: var(--inside-box-bg-color); 
  /* border: 1px solid var(--border) !important; */
}
.white-box-chart-new-1 .accordion-item
{
  border: 1px solid transparent !important;
  border-radius: 10px;
}

.white-box-chart-new-1 .accordion-item:has(.accordion-button:not(.collapsed)) {
  background: 
    linear-gradient(#F7F7F9, #F7F7F9) padding-box,
    linear-gradient(135deg, #37B7FF, #85A7FF) border-box;
  border-radius: 10px;
}
.dark-mode  .white-box-chart-new-1 .accordion-item:has(.accordion-button:not(.collapsed)) {
  background: 
    linear-gradient(#100d24, #100d24) padding-box,
    linear-gradient(135deg, #37B7FF, #85A7FF) border-box;
  border-radius: 10px;
}

.white-box-chart-new-1 .accordion-item:has(.accordion-button:not(.collapsed)) .accordion-button {
  background-color: transparent;
  
}
.soc-box-slider .box-slider #theme-image {
  background: #FFF;
  background: linear-gradient(360deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 0%, rgb(255 255 255) 71%, rgb(243 243 243) 100%, rgba(234, 245, 255, 1) 100%);
  border-radius: 13px;
}
.soc-box-slider .doat-svg-margin {
  margin-bottom: -195px;
  width: 100%;
  height: 230px;
}
.dark-mode  .soc-box-slider .box-slider #theme-image
{

  background: linear-gradient(360deg, #02001400 0%, #02001400 0%, #0b1133c2 71%, #85a8ff28  100%, #0b1133 100%);
}
.section-hedding span 
{
  color: var(--blue-light);
}
.container-chart-soc .headding-page-box {
  /* height: 550px; */
  overflow: hidden;
  border: 2px solid #8a8a8a05;
  background-color: #6d6d6d05;
  border-radius: 13px;
}
.container-chart-soc-fonts
{
  position: absolute;
  top: 33%;
 right: 0px;
 z-index: 1;
}
.container-chart-soc-fonts p 
{
  font-size: 13px;
  /* width: 76%;
  padding-left: 20px;
  text-align: center; */
  color: var(--black-color);
}
.fast-forward-span span
{
  color: var(--black-color);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}
.Ingestion-text  p
{
  color: var(--black-color);
  font-weight: 500;
  font-size: 14px;

}
.Ingestion-text {
  position: absolute;
  top: 15px;
  left: 40px;
}
.fonts-enterprise p
{
  color: var(--black-color);
  font-size: 15px;
}
.fonts-enterprise
{
  margin-bottom: 40px;
  background-color: rgba(206, 206, 206, 0.062);
  padding: 20px 25px;
  border-radius: 13px;
}
.Integration-gradiant-box img
{
  background-color: white;
  animation: glowShadow 1s ease-in-out infinite alternate;
  padding: 7px;
  border-radius: 9px;
  width: 40px;
}
.Integration-gradiant-box-round
{
  background-color: white;
  animation: glowShadow 1s ease-in-out infinite alternate;
  padding: 10px;
  border-radius: 49%;

}
.Integration-gradiant-box-round img
{

  width: 26px;
}
.Integration-gradiant-box-round {
  position: absolute;
  left: 39px;
  top: 2px;
}
.Integration-gradiant-box-round-1 {
  position: absolute;
  left: 147px !important;
  top: 95px !important;
}
.Integration-gradiant-box-round-2 {
  position: absolute;
  left: 178px !important;
  top: 216px !important;
}
.Integration-gradiant-box-round-3 {
  position: absolute;
  left: 140px !important;
  top: 343px !important;
}
.Integration-gradiant-box-round-4 {
  position: absolute;
  left: 37px !important;
  top: 430px !important;
}



.Integration-gradiant-box {
  position: absolute;
  left: 70px;
  top: 30px;
}
.Integration-gradiant-box-1 {
  position: absolute;
  left: -8px !important;
  top: 140px !important;
}
.Integration-gradiant-box-2 {
  position: absolute;
  left: -8px !important;
  top: 285px !important;
}
.Integration-gradiant-box-4 {
  position: absolute;
  left: 82px !important;
  left: 74px !important;
  top: 400px !important;
}
.Integration-gradiant-box span 
{
  color: var(--black-color);
    font-weight: 500;
    font-size: 13px;
}
.dark-mode .Integration-gradiant-box img , .dark-mode .Integration-gradiant-box-round 
{
  background-color: #100D24;
 
}
.soc-bottom-gradiant 
{
  background-color: white;
  color: var(--black-color);
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 8px;
  margin-left: 3px;
  border: 2px solid transparent;
  background-image: linear-gradient(white, white), linear-gradient(90deg, #37B7FF, #85A7FF);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transition: background-color 0.4s;

  width: fit-content;
}

.line-right
{
  color: var(--blue-light);
  margin: 0px 10px;
}
.dark-mode  .soc-bottom-gradiant 
{
  background-image: linear-gradient(#100D24, #100D24), linear-gradient(90deg, #37B7FF, #85A7FF);
}
.soc-text
{
  color: var(--black-color);
  font-size: 16px;
  font-weight: 500;
}
.Deliverables-card .card .card-body .card-title{
  color: var(--black-color);
font-size: 16px;
font-weight: 500;
} 
.Deliverables-card .card .card-body .card-text{
  color: var(--light-black);
font-size: 14px;
font-weight: 400;
} 
.dark-mode .Deliverables-card .tab-content .card {
  background-color: #020014;
  border: 2px solid #8a8a8a3d;
}
.dark-mode .Advantages-box
{
  background-color: #100D24;
  border: 2px solid #8a8a8a3d;

}
.Advantages-box
{
  background-color: #F8F8F8;
  border: 2px solid #8a8a8a1a;
  border-radius: 13px;
  padding: 25px 10px;
}
.Advantages-box p 
{
  color: var(--black-color);
  font-size: 15px;
  font-weight: 500;
}
.TechnologyInnovation
{
  margin: 96px 0px 105px 0px;
}
.TechnologyInnovation-padding
{
  padding-top: 25px;
}
.TechnologyInnovation-left-section
{
  color: var(--black-color);
    font-size: 15px;
    font-weight: 500;
    height: 33vh;
}
.inner-chart-point {
  position: absolute;
  top: 155px;
  transform: rotate(14deg);
  left: 150px;
}
.inner-chart-point-1
{
  top: 274px !important;
}
.inner-chart-point-2
{
  top: 400px !important;
  left: 150px !important;
}
.inner-chart-point p 
{
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  margin-right: 15px;
}
.inner-chart-point-new {
  position: absolute;
  top: 180px;
  left: 423px;
}
.inner-chart-point-new p 
{
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  margin-right: 10px;
  margin-bottom: 0px !important;
}

.inner-chart-point-new-1
{
  top: 310px !important;
  left: 423px !important;
}
.inner-chart-point-new-2
{
  top: 435px !important;
  left: 423px !important;
}

.Key-Benefits-svg
{
  position: absolute;
  left: 30%;
  top: -66px;
  z-index: -1;
}
.Key-Benefits-svg img
{
  width: 80%;

}

.Email-edr-chart
{
  background-color: white;
  padding: 5px 10px;
  border: 2px solid #8a8a8a1a;
  border-radius: 8px;
  color: var(--black-color);
  margin-right: 10px;
  font-size: 13px;
  margin-bottom: 10px;
}

.dark-mode .Email-edr-chart , .dark-mode .navbar-pills-chart-1 .nav-link {
  background-color: #020014;
  border: 2px solid #8a8a8a3d;
}

.navbar-pills-chart-1 .nav-link
{
  background-color: white;
  padding: 10px 10px;
  border: 2px solid #8a8a8a1a;
  border-radius: 8px;
  color: var(--black-color);

  font-size: 14px;
  margin-bottom: 10px;
}
.nav-pills .nav-link.active
{
  background-color: var(--blue-light);
}
.table
{
 --bs-table-bg: #00000000 !important;
}

.table>:not(caption)>*>*
{
  color: var(--light-black);
      font-size: 15px;
    font-weight: 400;
    vertical-align: middle;
}
.table th 
{
  color: var(--black) !important;
     font-size: 15px;
    font-weight: 500;
}
.dark-mode  .table th 
{
  color: var(--white) !important;
}

.table thead
{
  border-bottom: 3px solid var(--blue-light) !important;
}

.Architecture-Review-font p {
    color: var(--black-color);
    font-size: 15px;
    font-weight: 500;
}
.Architecture-Review-bg
{
  background-color: #FBFBFB;
  width: 100%;
  border-radius: 13px;
  padding: 10px 20px;
}
.dark-mode .Architecture-Review-bg
{
  background-color: #100D24;
}
.gradiant-box-section-footer
{
  padding: 0px 50px;
}
.ts-control
{
      background-color: transparent !important;
    border: 2px solid #8a8a8a1a !important;
    color: var(--black) !important;
    font-size: 14px !important;
    padding: 8px ;
    padding-right: 20px !important;
    border-radius: 8px !important;
    line-height:22px !important;
}
.dark-mode .ts-control
{
  color: white !important;
}
.dark-mode .ts-dropdown .active {
    background-color: #00AFEF;
    color: white !important;
}
.dark-mode .ts-dropdown {
    background-color: #000000;
        border: 2px solid #ffffff21 !important;
        color: white !important;
}

.ts-dropdown
{
  border-radius: 8px !important;
  overflow: hidden;
  border: none !important ;
}
.ts-control input
{
  color: var(--black-color) !important;

}
.ts-control > input::placeholder
{
  color: var(--light-black);
      font-size: 14px !important;
}
.form-check-input
{
  height: 22px;
  width: 22px;
}
.form-check-label
{
  font-size: 14px;
    font-weight: 400;
    color: var(--light-black);
}
.form-check-input:checked {
    background-color: var(--blue-light);
    border-color: var(--blue-light);
}
.dark-mode .modal-content {
    background-color: #100D24;
}
.dark-mode  .modal-title
{
  color: white;
}
.modal-header
{
  color: var(--black-color);
  border-bottom: none;
}
.margin-Datasheets
{
  margin: 60px 0px;
}

.Releases-box
{
  background-color: #F8F8F8;
  border-radius: 13px;
  padding: 20px;
  cursor: pointer;
  border: 2px solid #8a8a8a1a;
  transition: all 0.4s;
}
.Releases-box:hover
{
  background-color: white;
}
.Releases-box:hover .Services-section h6
{
 color: var(--blue-light);
}
.dark-mode  .Releases-box
{
   background-color: #020014;
  border: 2px solid #8a8a8a3d;
}
.Releases-box-Knowledge {
  background: 
    linear-gradient(white, white) padding-box, 
    linear-gradient(90deg, #37B7FF, #85A7FF) border-box;
  border: 2px solid transparent;
  border-radius: 13px;
  padding: 30px;
}
.service-badge span
{
  background-color: #00afef27;
  color: var(--blue-light);
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 8px;
}
.dark-mode .Releases-box-Knowledge {
  background: 
    linear-gradient(#020014, #020014) padding-box, 
    linear-gradient(90deg, #37B7FF, #85A7FF) border-box;
  border: 2px solid transparent;
  border-radius: 13px;
  padding: 30px;
}
.pagination .page-item
{
  margin: 0px 4px;

}
.active>.page-link, .page-link.active
{
  background-color: var(--blue-light);
  border: 2px solid var(--blue-light);
      box-shadow: none !important;
}
.page-link
{
  border: 2px solid #8a8a8a1a;
  border-radius: 8px;
    box-shadow: none !important;
    color: var(--black-color);
    background-color: transparent;
}
.page-link:hover
{
   background-color: transparent;
    color: var(--black-color);
}
.page-link:focus
{
   background-color: transparent;
    color: var(--black-color);
}
.dark-mode  .page-link
{
    border: 2px solid #8a8a8a3d;
}
.pagination .disabled .page-link
{
  background: transparent;
  border: none !important;
  color: var(--light-black);
}
.service-p-1 h3
{
  color: var(--black-color);
}
.Events-box
{
  border: 2px solid #8a8a8a1a;
  border-radius: 13px;
  padding: 15px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 3px;
}
.dark-mode .Events-box
{
 
  border: 2px solid #8a8a8a3d;
}
.w-75-box
{
  width: 75%;
}
.w-75-box .first-big-font p
{
  color: var(--black-color);
  font-size: 15px;
  font-weight: 500;
}
.advantages-section-p
{
  color: var(--black-color);
  font-size: 15px;
  font-weight: 500;
}
.center-advantages span
{
  color: var(--black-color);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
}
.center-advantages
{
  position: absolute;
  top: 27px;
  right: 48%;
}
.Key-Services-section .navbar-pills-chart-1 .nav-link
{
  border:2px solid transparent;
  background-color: transparent;
  text-align: start;
  margin-bottom: 0px;
}
.Key-Services-section .nav-pills .nav-link.active
{
background-color: #F8F8F8 !important;
color: var(--black-color);
    border: 2px solid #8a8a8a1a;
}

.dark-mode .Key-Services-section .nav-pills .nav-link.active {
    background-color: #100D24 !important;
    border: 2px solid #8a8a8a3d;
}
.Ransomware-box
{
  background-color: var(--white);
  border: 2px solid var(--blue-light);
  border-radius: 13px;
  padding: 20px 20px;
}
.Ransomware-box p
{
  font-size: 20px;
  font-weight: 500;
  color: var(--black-color);
}
.Ransomware-box p span
{
  font-size: 15px;
  font-weight: 500;
  color: var(--blue-light);
}
.dark-mode .Ransomware-box
{
 background-color: #100d2400 !important;
}
.first-big-font-n p {
    font-size: 15px;
    font-weight: 400;
    color: var(--light-black);
}
.border-bottom-packages
{
     border-bottom: 2px solid #8a8a8a1a;
}
.bg-round-position
{
  position: absolute;
      top: -13px;
    left: 143px;

}
.heading-ransomware
{
  color: var(--black-color) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
}

.monitoring-text-position p
{
    color: var(--black-color);
    font-size: 26px;
    position: absolute;
    font-weight: 500;
        top: 48%;
    right: 40%;
}
.monitoring-text-position-1
{
  font-size: 15px;
  font-weight: 500;
  color: var(--black-color);
  position: absolute;
top: -27px;
    right: 15%;
}

.monitoring-text-position-2
{
    top: 85px;
    right: -4%;
}
.monitoring-text-position-3
{
top: 315px !important;
    right: -9%;
}
.monitoring-text-position-4
{
    top: -49px;
    right: 69%;
}
.monitoring-text-position-5
{
    top: 86px;
    right: 89%;
    width: 100%;
}
.monitoring-text-position-6
{
        top: 316px;
    right: 89%;
width: 100%;
}
.Key-Benefits-bg
{
      background: #6d6d6d0c !important;
}
.dark-mode .Key-Benefits-bg
{
          background: linear-gradient(360deg, #02001400 0%, #02001400 0%, #0b1133c2 71%, #85a8ff28 100%, #0b1133 100%) !important; 
}

.center-img-new-1
{
  top: 49% !important;
}
.center-img-new-margin
{
  margin-top:160px;
}
.width-p-75
{
  width: 75%;
}
.model-bottom-lebal p
{
  background-color: var(--white);
  border: 2px solid #8a8a8a1a;
  width: 185px;
  justify-content: center;
  height: 60px;
  border-radius: 30px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  margin-top: -9px;
  color: var(--black-color);
   position: relative;
}
.model-bottom-lebal-in 
{
    background-color: var(--white);
  border: 2px solid #8a8a8a1a;

  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  color: var(--black-color);
}

.model-bottom-lebal p::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    height: 40px;
    width: 2px;
    background: repeating-linear-gradient(
        to bottom,
        var(--blue-light),
        var(--blue-light) 3px,
        transparent 3px,
        transparent 5px
    );
    animation: moveDottedLine 1s linear infinite;
}

@keyframes moveDottedLine {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 8px;
    }
}



#five-image
{
  color: var(--black-color);
  z-index: 1;
}
.center-svg-five-image
{
  position: absolute;
  top: 22px;
  right: 48.7%;
}
.center-svg-five-image-1 {
    position: absolute;
    top: 23px;
    right: 44.7%;
}
.center-svg-five-image-2
{
 position: absolute;
      top: 18px;
    right: 27.7%;
}

.dark-mode .model-bottom-lebal p , .dark-mode .model-bottom-lebal-in 
{
   background-color: #020014;
  border: 2px solid #8a8a8a3d;
 
}
.border-modal {
  width: 75%;
  position: absolute;
  top: 40px;
  right: 140px;
  height: 2px;
  background-image: repeating-linear-gradient(
    to right,
    var(--blue-light) 0px,
    var(--blue-light) 3px,
    transparent 3px,
    transparent 5px
  );
  background-size: 200% 100%;
  animation: moveDots 3.1s linear infinite; /* Slower animation */
}

@keyframes moveDots {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 0;
  }
}


.box-bottom-modal {
  position: relative;
  padding: 10px;
  margin-top: 25px;
  border-radius: 30px;
  z-index: 0;
  overflow: hidden;
}

.box-bottom-modal::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px dotted var(--blue-light);
  border-radius: 30px;
  animation: borderDrawBottom 5s ease-in-out infinite;
  clip-path: inset(0 0 100% 0); /* Start hidden from bottom */
}

@keyframes borderDrawBottom {
  0% {
    clip-path: inset(0 0 100% 0); /* Fully hidden at bottom */
  }
  50% {
    clip-path: inset(0 0 0 0);   /* Fully visible */
  }
  100% {
    clip-path: inset(0 0 100% 0); /* Hidden again */
  }
}


.blue-light-color
{
  color: var(--blue-light);
}
.section-hedding-f
{
  font-size: 20px !important;
}
.potentialpositin-1 p 
{
  font-size: 14px;
  font-weight: 500;
  color: var(--black-color);
  position: absolute;
    top: 150px;
    left: 20px;
}
.potentialpositin-2 p 
{
    top: 240px;
    left: 195px;  
}
.potentialpositin-3 p 
{
     top: 150px;
    left: 395px;
}
.potentialpositin-4 p 
{
    top: 240px;
    left: 590px;  
}
.potentialpositin-5 p 
{
     top: 150px;
    left: 780px;
}
.potentialpositin-6 p 
{
    top: 240px;
    left: 960px;  
}
.potentialpositin-7 p 
{
     top: 140px;
    left: 1150px;
}
.hexagon {
      width: 120px;
      aspect-ratio: 1 / 0.900; 
      background: #00bfff;
      clip-path: polygon(
        50% 0%,
        93% 25%,
        93% 75%,
        50% 100%,
        7% 75%,
        7% 25%
      );
      display: flex;
      align-items: center;
      justify-content: center;
       animation: pulseHex 2s ease-in-out infinite;

    }
    @keyframes pulseHex {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.04); }
    }
    .hexagon-inner {
      width: 91%;
      height: 91%;
      background: white;
      clip-path: inherit;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hexagon-inner img {
      width: 50px;
      height: auto;
    }
.dark-mode .hexagon-inner {
     
      background: rgb(0, 0, 0);
    
    }
.hexagon-line,
.hexagon-line2 {
  border: none;
  height: 2px;
  background: var(--blue-light);
  position: absolute;
  width: 0;
  animation: drawLine 2s ease forwards;
}

.hexagon-line {
  top: 55px;
  animation-delay: 0.3s;
}

.hexagon-line2 {
  top: 230px;
  animation-delay: 0.6s;
}

@keyframes drawLine {
  to {
    width: 100%;
  }
}



.incident-response .owl-prev span 
{
     position: absolute;
    font-size: 38px;
    top: -15px;
    left: 9px;
    color: white;
}
.incident-response .owl-nav button.owl-prev 
{
    background-color: var(--blue-light) !important;
  width: 30px !important;
  height: 30px !important;
  margin-right: 5px !important;
  border-radius: 6px;
}
.incident-response .owl-next span 
{
     position: absolute;
    font-size: 38px;
    top: -15px;
    left: 45px;
    color: white;
}
.incident-response .owl-next
{
    background-color: var(--blue-light) !important;
  width: 30px !important;
  height: 30px !important;
    border-radius: 6px;
} 
.incident-response .owl-nav{
    position: absolute;
    top: -46px;
    right: 0px;
    display: block !important;
}


.incident-response-box
{
  background-color: var(--white);
    border: 2px solid #8a8a8a1a;
    border-radius: 13px;
    padding: 15px;
}
.dark-mode .incident-response-box
{
  background-color: var(--background-color-body);
}
.ttps-in-position img{
     position: absolute;
    top: 58px;
    width: 56% !important;
    right: 117px;
}

.bas-helps-box
{
  border: 2px solid var(--blue-light);
  border-radius: 13px;
  padding: 15px;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  background: linear-gradient(360deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 0%, rgb(255 255 255) 71%, rgb(243 243 243) 100%, rgba(234, 245, 255, 1) 100%);
}
.dark-mode .bas-helps-box
{
  background: linear-gradient(360deg, #02001400 0%, #02001400 0%, #0b1133c2 71%, #85a8ff28  100%, #0b1133 100%);
}

 .image-box-hover-image .image-box {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
    }

  .image-box-hover-image .image-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

  .image-box-hover-image .shadow-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 61%;
    background: linear-gradient(to top, rgb(0 0 0), #00000000);
    z-index: 1;
}

    .image-box-hover-image .text-content {
      position: absolute;
      bottom: 20px;
      left: 20px;
      color: white;
      z-index: 2;
      transition: all 0.3s ease;
    }

    .image-box-hover-image .text-content h3 {
      margin: 0;
      font-size: 20px;
    }

    .image-box-hover-image .text-content p {
      margin-top: 8px;
      font-size: 14px;
      opacity: 0;
      padding-right: 10px;
      color: rgb(199, 199, 199);
      max-height: 0;
      transition: opacity 0.3s ease, max-height 0.3s ease;
      overflow: hidden;
    }

    .image-box-hover-image .image-box:hover .text-content p {
      opacity: 1;
      max-height: 180px;
    }
.control-and-comand-box-2
{
  background: linear-gradient(360deg,rgba(112, 46, 255, 0.027) 0%, rgba(255, 255, 255, 0) 94%);

  padding: 20px;
  border-radius: 13px;
  padding-top:10px;
}
.control-image-box
{
  background-color: white;
  padding: 10px;
  border-radius: 8px;
  border: 2px solid #8a8a8a1a;
box-shadow: rgba(190, 190, 240, 0.342) 0px 1px 0px, rgba(190, 190, 240, 0.342) 0px 0px 8px;
  width: 60px;
  margin-bottom: 60px;
  height: 55px;
  display: grid;
  justify-content: center;
  align-items: center;
}
.control-image-box-q
{
  padding-top: 5px !important;
     background-color: white;
    padding: 3px;
    border-radius: 14px;
    /* border: 2px solid #8a8a8a1a; */
    box-shadow: rgba(190, 190, 240, 0.342) 0px 1px 0px, rgba(190, 190, 240, 0.342) 0px 0px 8px;
    width: 106px;
    height: 82px;
}
.dark-mode .control-image-box 
{
   background-color: #020014;
  border: 2px solid #8a8a8a3d;
  box-shadow: rgb(61 61 255 / 50%) 0px 1px 0px, rgba(190, 190, 240, 0.342) 0px 0px 8px;
}
 .dark-mode .control-image-box-q
{
   background-color: none;
  /* border: 2px solid #8a8a8a3d; */
}
.up-arrow-1-position {
    position: absolute;
    z-index: -1;
    top: 53px;
    right: 12px;
      animation: floatUpw 4s ease-in-out infinite;
}
@keyframes floatUpw {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  50% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-20px);
    opacity: 0;
  }
}

.right-arrow-1-position {
  position: absolute;
  right: -377px;
  top: 10px;
  z-index: -1;
  animation: floatRight 5s linear infinite;
}

@keyframes floatRight {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  50% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(100px);
    opacity: 0;
  }
}

.down-arrowo-1-position {
  position: absolute;
  right: 11px;
  top: 0;
  z-index: -1;
  animation: floatDown 5s ease-in-out infinite;
}

@keyframes floatDown {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  50% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(20px);
    opacity: 0;
  }
}


.flar-arrow-1-position {
    position: absolute;
    bottom: 20px;
    right: 25px;
    z-index: -1;
}

.blur-rec-position
{
  position: absolute;
  top: -61px;
  left: -61px;
  z-index: -1;
}
.down-main-1-position {
  position: absolute;
  top: 85px;
  left: 35px;
  z-index: -1;
  animation: floatDownw 4s ease-in-out infinite;
}
@keyframes floatDownw {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  50% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(20px);
    opacity: 0;
  }
}


.control-and-comand-box-1
{
background: linear-gradient(182deg,rgba(0, 176, 240, 0.075) 0%, rgba(255, 255, 255, 0) 94%);
border-radius: 13px;
margin-top: 80px;
}
.box-width-75-arrow
{
  width: 75%;
}
.right-small-arrow-position
 {
    position: absolute;
    right: -150px;
    top: 85px;
}
.text-arrow-position {
    position: absolute;
    top: -22px;
    left: 165px;
}
.text-arrow-position-1 {
    position: absolute;
    top: 82px;
    left: 135px;
}
.text-arrow-position-2 {
    position: absolute;
    top: 195px;
    left: 135px;
}
.text-arrow-position-3 {
    position: absolute;
    top: 82px;
    right: 111px;
}
.text-arrow-position-4
 {
    position: absolute;
    top: 211px;
    right: 155px;
}

.tom-select .ts-control::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  width: 1.5em;         
  height: 1.5em;       
  pointer-events: none;
  transform: translateY(-50%);
  background-image: url('data:image/svg+xml;utf8,<svg fill="currentColor" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"><path d="M5.23 7.21a.75.75 0 011.06.02L10 11.06l3.71-3.83a.75.75 0 111.08 1.04l-4.25 4.39a.75.75 0 01-1.08 0L5.21 8.27a.75.75 0 01.02-1.06z"/></svg>');
  background-repeat: no-repeat;
  background-size: 1.5em; 
}
.search-icone-1 {
    position: absolute;
    top: 12px;
    left: 7px;
    color: var(--black-color);
}
.input-form-style input::placeholder
{
  color: var(--light-black);
  font-size: 15px;
}
.input-form-style input
{
  font-size: 15px;
}
.gradiant-border-advisory
{
      background: linear-gradient(white, white) padding-box, linear-gradient(90deg, #37B7FF, #85A7FF) border-box;
    border: 2px solid transparent;
    border-radius: 13px;
}
 .dark-mode  .gradiant-border-advisory
{
      background: linear-gradient(#020014, #020014 ) padding-box, linear-gradient(90deg, #37B7FF, #85A7FF) border-box;
    border: 2px solid transparent;
    border-radius: 13px;
}
.first-big-font-light p {
    font-size: 15px;
    font-weight: 400;
    color: var(--light-black) !important;
}
.Deception
{
  color: var(--black-color);
}
.heading-ransomware-small
{
      font-size: 15px !important;
    font-weight: 400 !important;
    color: var(--light-black) !important;
}
.padding-top-owl
{
  padding-top: 50px;
}
.anti-phising-img , .anti-phising-img1 {
    height: 155px !important;
    background-size: cover;

    background-position: center;
    width: 44% !important;
    margin: 0px auto;
    margin-bottom: -60px;
}
.anti-phising-img1
{
   height: 155px !important;
    width: 58% !important;
}
.padding-top-owl .Advantages-box
{
  height: 225px !important;
  border: none !important;
}

 .progress {
        height: 46px;
        background: transparent;
        border-radius: 9999px;
        border: 1px solid #00b6ff;
        overflow: hidden;
        padding: 3px;
    }

    .progress-bar {
        position: relative;
        background: linear-gradient(90deg, #ffffff00 0%, #7bd1ff 100%);
        overflow: hidden;
        color: #fff;
        font-weight: 600;
        font-size: 0.9rem;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        padding-right: 12px;
        border-radius: 9999px;
    }

    /* Animation classes for each percentage */
    .animate-75 {
        animation: expand75 5s ease-in-out forwards infinite alternate;
    }

    .animate-60 {
        animation: expand60 5s ease-in-out forwards infinite alternate;
    }

    .animate-85 {
        animation: expand85 5s ease-in-out forwards infinite alternate;
    }

    .animate-90 {
        animation: expand90 5s ease-in-out forwards infinite alternate;
    }

    /* Keyframes for each animation */
    @keyframes expand75 {
        from { width: 12%; }
        to { width: 75%; }
    }

    @keyframes expand60 {
        from { width: 12%; }
        to { width: 60%; }
    }

    @keyframes expand85 {
        from { width: 12%; }
        to { width: 85%; }
    }

    @keyframes expand90 {
        from { width: 12%; }
        to { width: 90%; }
    }
/* 
.progress-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  height: 100%;
  width: 50%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.24) 50%,
    rgba(255, 255, 255, 0.2) 100%
  );
  animation: shineSweep 2s infinite;
}

@keyframes shineSweep {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
} */

.animated-sections {
  position: relative;
  height: 130px; /* Adjust based on your content */
  overflow: hidden; /* Ensures sliding content doesn't overflow */
}

.section {
  position: absolute;
  opacity: 0;
  width: 100%; /* Ensure full width */
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  transform: translateX(100%); /* Start from right */
}

.section.active {
  opacity: 1;
  transform: translateX(0); /* Move to normal position */
}

.section.leaving {
  transform: translateX(-100%); /* Slide out to left */
}

.progress-wrapper p 
{
  font-size: 14px;
  font-weight: 400;
  color: var(--black-color);
}

.glow-line{
  position: relative;
  height: 370px;        
     margin: 0 75px;
}

.glow-line::before{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:50%;
  transform:translateX(-50%);
  width:2px;
  background:#00c5ff;
  z-index:1;
}

.line‑label
 {
    position: absolute;
    top: 48%;
       left: -70px;
width: 140px;
text-align: center;
    padding: 4px 12px;
    background: #ffffff;
    color: var(--black-color);
    transform: rotate(270deg);
    font-weight: 500;
    font-size: 15px;
    border-radius: 4px;
    z-index: 2;
}

 .dark-mode .line‑label
 {
  background: var(--background-color-body);
 }

  .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
  .navbar-nav .dropdown-menu a
  {
    font-size: 14px !important;
    font-weight: 500!important;
    color: #242424b2 !important;
  }
   .dark-mode .navbar-nav .dropdown-menu a
  {
      font-size: 14px !important;
    font-weight: 500!important;
    color: #ecececcb !important;
  }
  .navbar-nav .dropdown-item:hover {
    background-color: #c8c8c824;
    color: var(--blue-light) !important;
  }
  .dark-mode   .navbar-nav .dropdown-item:hover {
    background-color: #c8c8c824;
    color: var(--blue-light) !important;
  }
 .navbar-nav .dropdown-menu
{
  background-color: var(--white);
  border: 2px solid #8a8a8a1a;
   /* border-bottom: 3px solid var(--blue-light) !important; */
   box-shadow: rgba(70, 70, 70, 0.295) 0px 25px 20px -20px;
   border-radius: 8px;
}
.dark-mode .navbar-nav .dropdown-menu
{
  background-color: #020014;
   border: 2px solid #8a8a8a49;
}
a
{
  text-decoration: none;
  color: var(--black-color);
}
.footer-last a 
{
  color: var(--light-black);
}

  .arrow-down {
    animation: slideDown 2s infinite ease-in-out;
  }

  @keyframes slideDown {
    0% { transform: translateY(0); }
    50% { transform: translateY(5px); }
    100% { transform: translateY(0); }
  }

 .line-row img {
    animation: slideRight 2s infinite ease-in-out;
  }

  @keyframes slideRight {
    0%   { transform: translateX(-10px); opacity: 0.2; }
    50%  { transform: translateX(10px); opacity: 1; }
    100% { transform: translateX(-10px); opacity: 0.2; }
  }
  .line-row-1 img {
    animation: slideRighte 2s infinite ease-in-out;
  }

  @keyframes slideRighte {
    0%   { transform: translateX(-10px); opacity: 0.2; }
    50%  { transform: translateX(10px); opacity: 1; }
    100% { transform: translateX(-10px); opacity: 0.2; }
  }
   .line-row-3 img {
    animation: slideRighte1 5s infinite ease-in-out;
  }

  @keyframes slideRighte1 {
    0%   { transform: translateX(-10px); opacity: 0.2; }
    50%  { transform: translateX(10px); opacity: 1; }
    100% { transform: translateX(-10px); opacity: 0.2; }
  }
  .line-row-2 img {
    animation: slideRighte 2s infinite ease-in-out;
  }

  @keyframes slideRighte {
    0%   { transform: translateX(-5px); opacity: 0.2; }
    50%  { transform: translateX(5px); opacity: 1; }
    100% { transform: translateX(-5px); opacity: 0.2; }
  }
    .line-row-7 img {
    animation: slideRighte 2s infinite ease-in-out;
  }

  @keyframes slideRighte {
    0%   { transform: translateX(5px); opacity: 1; }
    50%  { transform: translateX(-5px); opacity: 0.2; }
    100% { transform: translateX(5px); opacity: 1; }
  }

@keyframes glowShadow {
    0% {
        box-shadow: 0 1px 10px rgba(130, 209, 255, 0.3), 0 3px 10px rgba(126, 87, 255, 0.4);
    }
    100% {
        box-shadow: 0 1px 11px rgba(130, 209, 255, 0.534), 0 3px 11px rgba(126, 87, 255, 0.521);
    }
}
.flip-card {
  background-color: transparent;
  perspective: 1000px;
  cursor: pointer;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 200px;
  text-align: start;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 80%;
  backface-visibility: hidden;
  border-radius: 10px;
  padding: 3px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.flip-card-front {
  background: #fff; /* Or your theme color */
  color: #000;
  height: 100%;
}

.flip-card-back {
  
  transform: rotateY(180deg);
  height: 100%;
}
.start-btn-white-TOI {
    position: relative;
    overflow: hidden;
}

.start-btn-white-TOI .hover-text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff; /* or transparent or your section bg */
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    color: var(--light-black);
    font-size: 14px;
    font-weight: 400;
    z-index: 1;
}
.dark-mode .start-btn-white-TOI .hover-text {
    background-color: #100D24;
    border: 2px solid #36363685;
}
.start-btn-white-TOI:hover .hover-text {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

  .chart-container {
      width: 100%;
      max-width: 800px;
      aspect-ratio: 1.1 / 1;
    }

     .chart-container svg {
      width: 100%;
      height: 100%;
      
    }

     .chart-container .segment text.label {
      fill: var(--black-color);
      font-size: 13px;
      font-weight: 500;
      text-anchor: middle;
      dominant-baseline: middle;
    }

     .chart-container .icon {
      pointer-events: none;
    }

     .chart-container .center-label {
      fill: var(--black-color);
      font-size: 20px;
      font-weight: 500;
      text-anchor: middle;
    }

     .chart-container .segment .inner {
      opacity: 1;
      transform-box: fill-box;
      transform-origin: center;
      animation-duration: 12s;
      animation-iteration-count: infinite;
      animation-timing-function: ease-in-out;
     
    }

    @keyframes seg1 {
      0%, 16.66%, 100% { transform: translate(0, 0); opacity: 1; }
      8.33% { transform: translate(7px, -10px); opacity: 1; }
    }

    @keyframes seg2 {
      0%, 16.66%, 100% { transform: translate(0, 0); opacity: 1; }
      8.33% { transform: translate(10px, 0px); opacity: 1; }
    }

    @keyframes seg3 {
      0%, 16.66%, 100% { transform: translate(0, 0); opacity: 1; }
      8.33% { transform: translate(7px, 12px); opacity: 1; }
    }

    @keyframes seg4 {
      0%, 16.66%, 100% { transform: translate(0, 0); opacity: 1; }
      8.33% {     transform: translate(-5px, 10px); opacity: 1; }
    }

    @keyframes seg5 {
      0%, 16.66%, 100% { transform: translate(0, 0); opacity: 1; }
      8.33% { transform: translate(-10px, 0px); opacity: 1; }
    }

    @keyframes seg6 {
      0%, 16.66%, 100% { transform: translate(0, 0); opacity: 1; }
      8.33% { transform: translate(-5px, -10px); opacity: 1; }
    }

    .segment:nth-of-type(1) .inner { animation-name: seg1; animation-delay: 0s; }
    .segment:nth-of-type(2) .inner { animation-name: seg2; animation-delay: 2s; }
    .segment:nth-of-type(3) .inner { animation-name: seg3; animation-delay: 4s; }
    .segment:nth-of-type(4) .inner { animation-name: seg4; animation-delay: 6s; }
    .segment:nth-of-type(5) .inner { animation-name: seg5; animation-delay: 8s; }
    .segment:nth-of-type(6) .inner { animation-name: seg6; animation-delay: 10s; }


.center-shape {
  transform-origin: center;
  animation: rotate-center 39s linear infinite;
   transform-box: fill-box;
  transform-origin: center;
}

@keyframes rotate-center {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.bg-path
{
  fill: white;
  stroke:#86868656;
 
}
.def-text
{
  fill: var(--black-color);
  font-weight: 500;
}
.dark-mode .bg-path {
    fill: #020014;
    stroke: 36363685;
}
.wid-img-hover
{
  width: 4.5%;
}
.none-md-carousel .list-group-item-action.active, .none-md-carousel .list-group-item-action:focus {
    color: var(--blue-light) !important;
}

.none-md-carousel .list-group-item-action {
    color: var(--black-color)!important;
    font-size: 14px !important;
}
.list-group-item-action {
    width: auto !important;
}

.arrow-position img

 {
    position: absolute;
    top: 9px;
    margin-left: 35px;
}
.padding-top-mpsection
{
      padding-top: 33px !important;
}
.d-flex-mp-section
{
  display: flex;
}
.font-one-white p
{
  color: var(--black-color);
  font-weight: 500;
}

#header-menu {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999999;
  transition: background-color 0.6s ease;
  background-color: transparent;
}

#header-menu.active {
  background-color: var(--background-color-body); /* Or any desired color */
  border-bottom: 2px solid #8a8a8a1a;
}
.dark-mode #header-menu.active {
  border-bottom: 2px solid #36363685;
}
.border-start
{
  border-left: 2px solid #8a8a8a1a !important;
}
.dark-mode .border-start
{
  border-left: 2px solid #36363685 !important;
}
.d-flex-lg-header
{
  display: flex;
}
.logo-box-slide img
{
  width: 80% !important;
  height: 45px;
}
.owl-carousel-34
{
  background-color: white;
  padding: 15px 0px;
  align-items: center;
  vertical-align: middle;
  margin-bottom:-70px;
}
.owl-carousel-34 .owl-dots
{
  display: none;
}
.service-box
{
  background-color: #020014d8;
  border: 2px solid #75757533;
  padding: 10px;
  text-align: center;
  border-radius: 8px;
  height: 100%;
}
.footer-images a img
{
  width: 70px;
}




/*------------------------------- chart --------------------- */
.chart-radar
{
    display: flex;
    justify-content: center;
    align-items: center;
}

.box-footer-logo-new
{
    background-color: var(--white-color);
    width: 70px;
    height: 70px;
    border-radius: 45%;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    position: absolute;
    top:43%;
    right: 43.7%;
    z-index: 22222222;
}
.box-footer-logo-new-1
{
    background-color: var(--white-color);
    width: 175px;
    height: 175px;
    border-radius: 49%;
    animation: glowShadow 1s ease-in-out infinite alternate, rotate360 2s linear infinite;
    z-index: 22222222;
}
.logo-gradiant-img-box-new-1
{
  box-shadow: rgb(130, 209, 255) 0px 10px 40px -10px inset, rgb(126, 87, 255) 0px 20px 61px 10px inset;
  width: 151px !important;
  height: 151px;
  padding: 20px !important;
  border-radius: 49%;
  margin-top: 12px !important;
  z-index: 3;
}

.logo-gradiant-img-box-new
{
    box-shadow: rgb(130, 209, 255) 0px 10px 40px -10px inset, 
    rgb(126, 87, 255) 0px 20px 36px -2px inset;

   width: 52px !important;
   padding: 9px !important;
   border-radius: 47%;

}
.dark-mode .radar {
   
    background: repeating-radial-gradient(transparent, transparent 4.5%, rgba(170, 170, 170, 0.066) 15%, transparent 15.5%) content-box, linear-gradient(transparent 49.7%, rgba(81, 255, 0, 0) 49.9%, rgba(81, 255, 0, 0.059) 50.1%, transparent 50.3%) content-box, linear-gradient(to right, transparent 49.7%, rgba(81, 255, 0, 0) 49.9%, rgba(81, 255, 0, 0) 50.1%, transparent 50.3%) content-box, radial-gradient(#0025000e, #ffffff00) content-box, linear-gradient(to bottom right, #ffffff00, #ffffff00) border-box;
   
  }

.radar {
    position: relative;
    width: 56vmin;

    height: 56vmin;
    background: repeating-radial-gradient(transparent, transparent 4.5%, rgba(170, 170, 170, 0.066) 15%, transparent 15.5%) content-box, linear-gradient(transparent 49.7%, rgba(81, 255, 0, 0) 49.9%, rgba(81, 255, 0, 0.059) 50.1%, transparent 50.3%) content-box, linear-gradient(to right, transparent 49.7%, rgba(81, 255, 0, 0) 49.9%, rgba(81, 255, 0, 0) 50.1%, transparent 50.3%) content-box, radial-gradient(#0025000e, #ffffff00) content-box, linear-gradient(to bottom right, #ffffffb3, #ffffff) border-box;
    border: 2px solid #a0a0a02f;
    border-radius: 50%;
    box-sizing: border-box;
    overflow: hidden;
    filter: drop-shadow(1vmin 1vmin 1vmin rgba(255, 255, 255, 0.11));
  }
  .radar::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: conic-gradient(
      transparent 69%, 
      rgb(174 151 253 / 31%),
      rgba(130, 209, 255, 0.7),
      rgba(30, 153, 224, 0.571)
   
  
      
    
  );
    border-radius: 50%;
    box-shadow: inset 0 0 2vmin rgba(255, 255, 255, 0.126);
    -webkit-animation: spin 2s linear infinite;
            animation: spin 2s linear infinite;
  }
  .radar__dot {
    position: absolute;
    width: 15px;
    height: 14px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid white;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    -webkit-animation: blink 2s ease-out infinite;
            animation: blink 2s ease-out infinite;
            z-index: 3333;
  }
  .radar__dot:first-of-type {
    bottom: 24%;
    right: 46%;
    -webkit-animation-delay: 0.25s;
            animation-delay: 0.25s;
  }
  .radar__dot:nth-of-type(2) {
    bottom: 30%;
    right: 20%;
    -webkit-animation-delay: 1.25s;
            animation-delay: 1.25s;
  }
  .radar__dot:nth-of-type(3) {
    bottom: 12%;
    right: 30%;
    -webkit-animation-delay: 1.75s;
            animation-delay: 1.75s;
  }
  .radar__dot:nth-of-type(4) {
    bottom: 10%;
    right: 55%;
    -webkit-animation-delay: 1.75s;
            animation-delay: 1.75s;
  }
  
  
  @-webkit-keyframes spin {
    to {
      transform: rotate(1turn);
    }
  }
  
  @keyframes spin {
    to {
      transform: rotate(1turn);
    }
  }
  @-webkit-keyframes blink {
    2%, 20% {
      background-color: #0479ff;
      box-shadow: 0 0 3vmin rgb(255, 255, 255);
    }
    90% {
      background-color: transparent;
    }
  }
  @keyframes blink {
    2%, 20% {
      background-color: #0479ff;
      box-shadow: 0 0 3vmin rgb(255, 255, 255);
    }
    90% {
      background-color: transparent;
    }
  }
