*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: 'Open sans';
}
:root{
    --card-height:400px;
    --padding-top:100px;
    --card-top:150px;
    --black:#1D1D1F;

}
html, body {
    scroll-behavior: smooth;
}
  
/* ----------------loader-------------------- */
 /* Styles for the loader container */
.loader-container {
   display: flex;
   justify-content: center;
   align-items: center;
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: #fff; /* Change this to your desired background color */
   z-index: 9999; /* Make sure the loader appears on top of everything else */
 }
 /* Styles for the outer circle (loader) animation */
 .loader {
   border: 4px solid #f3f3f3; /* Light grey */
   border-top: 4px solid #3498db; /* Blue */
   border-radius: 50%;
   width: 50px;
   height: 50px;
   animation: spin 2s linear infinite;
   position: relative; /* Add this for proper nesting */
 }
 /* Styles for the inner circle (opposite direction) animation */
 .inner-loader {
   border: 4px solid #f3f3f3; /* Light grey */
   border-top: 4px solid #f39c12; /* Orange */
   border-radius: 50%;
   width: 30px;
   height: 30px;
   position: absolute; /* Position the inner circle inside the outer circle */
   top: 50%; /* Position at 50% from the top of the outer circle */
   left: 50%; /* Position at 50% from the left of the outer circle */
   animation: spin-opposite 1s linear infinite; /* Animation for the inner circle */
 }
 @keyframes spin {
   0% { transform: rotate(0deg); }
   100% { transform: rotate(360deg); }
 }
 @keyframes spin-opposite {
   0% { transform: translate(-50%, -50%) rotate(0deg); }
   100% { transform: translate(-50%, -50%) rotate(-360deg); }
 }

  
/* -------------banner-------------- */
.head1 h1{
    color: #F5F5F7;
    font-family: Open Sans;
    font-size: calc(4.2vw + 0.39vw);
    font-style: normal;
    font-weight: 700;
    line-height: 110px;
}
.head2{ padding: 60px 0;}

/* background video */
.video-container {
    position: absolute;
    inset:0;
    z-index: -1;
}
.video-container video {
    min-width: 100%; 
    min-height: 100%; 
    /* Setting width & height to auto prevents the browser from stretching or squishing the video */
    width: auto;
    height: auto;

    object-fit: cover;
    position:fixed;
}
.head-container{
    width: 100%;
    min-height: 110vh;
    background-color: rgba(0, 80, 175, 0.2);
}
.mg{
    margin-right:calc(20px + 0.39vw);
}

/* buttons */
.uplifted-button{
    color:white;
    background: linear-gradient(180deg, rgba(29, 29, 31, 0.50) 0%, rgba(29, 29, 31, 0.20) 100%);
    background-blend-mode: overlay;
    backdrop-filter: blur(2px);
    border: 1.5px solid #0050AF;
}
.demo-button{
    width:160px;
    height:60px;
   
    border-radius: 16px;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    padding:10px;
    border: 1.5px solid #0050AF;
}
.demo-button:hover,.demo-button.active, .square-button:hover, .submit-button:hover{
    border-color: rgb(8, 204, 8);
}
.theme-light .circle-white-small{
    background-color: #0050AF;
    color: #F5F5F7;
}
.theme-light .demo-button:hover .circle-white-small{
    background-color: rgb(8, 204, 8);
}
.theme-light .demo-button{color:var(--black);}
.head2 .blue{
    width: 300px;
    height: 100px;
    border-radius: 24px;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    padding:14px;
}

.head2 .square-button{  
    font-size: 20px;
    border-radius: 24px;
    width: 100px;
    height: 100px;
    padding: 50px 20px 20px 50px;
    flex-shrink: 0;
}
.blue{
    background-color: #0050AF !important;
    color:white;
    border:none!important;
}
.blue:hover {
    background-image:  linear-gradient(to bottom,#0050AF 1%,#5bd3ec 100%);
    border:none;
    transition: 2s !important;
}
.info .square-button{
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    width: 180px;
    height: 160px;
    border-radius: 24px;
}
.circle-white-large{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color:#F5F5F7;
    color:black;
    line-height: 30px;
}

.circle-white-small{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color:#F5F5F7;
    color:black;
    line-height: 19px;
}

.circle-white-larger{
    width:60px;
    height:60px;
    border-radius: 50%;
    background-color:#F5F5F7;
    color:black;
    line-height: 60px;
    font-size:40px;
}

.uplifted-button:hover i, .demo-button:hover i,.demo-button.active i, #card3:hover i{
    transition: 0.70s;
    -webkit-transition: 0.70s;
    -moz-transition: 0.70s;
    -ms-transition: 0.70s;
    -o-transition: 0.70s;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
} 
.rotated {
    transform: rotate(-45deg); /* Equal to rotateZ(45deg) */
}

/* themes */
.theme-light{
    max-width:100%;
    background-color:#F5F5F7;
    color:var(--black);
    padding: var(--padding-top) 0px;
}
.theme-blue{
    background-color:#05183B;
    color:white;
    padding: 120px 0px;
}
p:not(p.text ){
    text-align: justify;
}
p {  hyphens: auto;}
.icon{margin-right: 10px;}

.theme-light p, ul>li, .theme-light-2 p{
    color: #555;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}
.theme-light h3{
    font-family: Open Sans;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.theme-light h4{
    float:left;
    color: var(--black, #1D1D1F);
    font-family: Open Sans;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.image1{
    display: flex;
    justify-content:center;
}
.image2{
    display: flex;
    justify-content:end;
}
.info h2{
    color: var(--white, #F5F5F7);
    font-family: Open Sans;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.globe-article{
    padding-top:120px;
}
.globe-img {
    display:flex;
    justify-content: flex-end;
    padding-top: 40px;
}

.blue-footer{
    background-color:#05183B;
    color:white;
    padding-top:100px;
}
.logo-footer{
    width:142.35px;
    margin-bottom: 20px;
}
.blue-footer ul>li, .blue-footer a{
    color:white;
}
.blue-footer ul>li:hover a, ul>li:hover i{
    color:#5BD3EC;
}
.blue-footer .m-width-top{
    margin-bottom: 0;
    margin-top: auto;
}
.social-icons .circle{
    width:36px;
    height:36px;
    border-radius: 50%;
    line-height: 36px;
    border: 1.5px solid var(--main-1, #5BD3EC);
}
.social-icons i{
    color:#5BD3EC;
    align-items: center;
}
.social-icons li:hover {
    transform: translateY(-5px);
    transition: 0.4s;
    -webkit-transition: 0.4s;
}

/* --------------SATATISTICS CARDS----------- */
.sticky_parent{
    width:100%;
    padding:0;
    height: 260vh;
}
.sticky{
    overflow: hidden;
    position:sticky;
    top:0;
    height:100vh;
    display:flex;
    align-items: center;
    background-image: url('.././images2/Statistics.svg');
    background-repeat: no-repeat;
    background-position: 50% 30%; 
    background-size: 75vw;
}

.media-card-scroller{
    position:absolute;
    top: 43%;
    /* height:100%; */
    width: 260vw;
    will-change: transform;
    display: flex;
    align-items: center;
    padding-left: 40%;
    padding-right: 20px;
    justify-content: space-evenly;
}
.media-card-scroller::-webkit-scrollbar {display: none;}
.media-card{
    display: flex;
    width: 320px;
    height: 360px;
    padding: 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color:white;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(0, 80, 175, 0.90) 0%, rgba(1, 41, 88, 0.70) 91.67%);
    backdrop-filter: blur(4px);
}
.media-card h4{
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.media-card-2 h4{
    text-align: center;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
p.text{
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
}
.media-card:hover{
    border: 1px solid #5BD3EC;
}
.media-card .circle,.media-card-2 .circle, .media-card-3 .circle{
    display: flex;
    width: 132px;
    height: 132px;
    padding: 40px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius:50%;
    border: 2px solid #5BD3EC;
}

/* ---------CASE STUDIES CARDS--------------- */

.stack-cards{
    /* display:grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 55vh); */
  --stack-cards-gap: calc(0.75 * 1em); 
}
.stack-cards__item{
    width: 777px;
    height:var(--card-height);
    border-radius: 24px;
    border: 2px solid #DDDDDD;
    background-color: white;
    justify-content: center;
    padding:40px;
    overflow: hidden;
} 
.stack-cards__item {
    position: relative !important;
    position: -webkit-sticky;
    position: sticky !important;
    top: var(--card-top);
    /* height: 0; */
    /* padding-bottom: 50%; */
    -webkit-transform-origin: center top;
            transform-origin: center top;
    overflow: hidden; 
}

.card-text{
    color: var(--black, #1D1D1F);
    font-family: Open Sans;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.card-text-bottom{
    color: var(--main-1, #5BD3EC);
    text-align: right;
    font-family: Open Sans;
    font-size: 86px;
    font-style: normal;
    font-weight: 700;
    line-height: 100px; /* 116.279% */
}

.card-side-text h2{
    color: var(--blacK);
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%; 
}
.card-side-text{
    text-align: right;
}
.copyright {
    text-align: center;
    margin-top: 65px;
    padding: 31px 0;
    border-top: 1px solid #2b465e;
}
#sticky-text{
    position:sticky;
    top: var(--card-top);
}

/* -----------------ABOUT------------------ */
.head-blue{
    background-color: #05183B;
    color:white;
    height: auto;
}
#banner{
    display: flex;
    align-items: center;
    padding: 50px 0;
}
#banner h1{
    /* font-size:calc(86px + 0.39vw); */
    font-size: calc(76px - 0.39vw);
    font-weight: 600; border-bottom: 50px;}
#phishing-image{
    margin: -80px;
    width: 110vw;
}
.grid1{width:88%;}
.use-cases{margin:50px 0;}
.use-cases .media-card-2{height:auto;}
.use-cases .media-card-2 .circle{
    display: flex;
    width: 120px;
    height: 120px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius:50%;
    background-color: #F5F5F7;
    border:none;
    font-size: 40px;
    color:#105AB3;
    font-weight: 700;
}

/* -------------------media cards----------------------- */
.media-card-2{
    display: flex;
    width: 308px;
    height: 360px;
    padding: 30px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    background-color: #FFFFFF;
    color:black;
    border-radius: 28px;
    backdrop-filter: blur(4px);
    margin-right:15px;
    margin-bottom:15px;
}
.media-card-2:hover{
    background-color: linear-gradient(180deg, rgba(0, 80, 175, 0.90) 0%, rgba(1, 41, 88, 0.70) 91.67%);
}
.media-2{
    width: 100%;
    display: grid;
    gap:5%;
    grid-auto-flow: column;
    justify-content: space-between;
}
.media-card-3{
    display: flex;
    width: 100%;
    height: 380px;
    padding: 30px;
    flex-direction: column;
    align-items: center;
    gap: 16.552px;
    border-radius: 24px 24px 0px 0px;
    background: linear-gradient(180deg, #0050AF 0%, rgba(0, 80, 175, 0.00) 91.67%);
}

/* ----------------INDUSTRIES---------------- */
.service_contentbox{
    display:inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.service-box{
    border-radius: 24px;
    background: #FFF;
    backdrop-filter: blur(15px);
    /* margin-bottom: 60px; */
    margin: 0 -30px 60px 0px;
    /* width: 32%; */
}
.service-box figure img{
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}
.service-box-content{
    display: flex;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding:40px;
    width: 100%;
}
.service-box-content h2{
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
}
.service-box-content p{
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}
.service-box:hover{
    transform:scale(1.03);
    transition: 0.4s;
}
/* ------------------CONTACT------------------- */
.content-left h2{
    font-size: 46px;
    font-weight: 900;
}
.content-box{
    display: flex;
    flex-direction: row;
    padding: 30px;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    background-color: #FFFFFF;
    color:black;
    border-radius: 28px;
    backdrop-filter: blur(4px);
}
.box-image figure{
    width:80px;
    height:80px;
    display:flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, rgba(0, 80, 175, 0.90) 0%, rgba(1, 41, 88, 0.70) 91.67%);
    border-radius:50%;
    margin:0;
}
.box-content h4{
    font-size:22px;
    font-weight: 700;
}
.box-content p, .box-content a {
    font-size: 18px;
    margin-top: 2px;
    color: black !important;
    text-align: start!important;
    /* width: 100%; */
    display: inline-block;
}
.m-r-l-10{margin-left: 10px;}

.need-box{
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
form.contactform input, form.contactform textarea, .need_content input, .need_content textarea, .need_content select{
    border: 1px solid #dae7fb;
    border-radius: 10px;
    margin-bottom: 17px;
    overflow: visible;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    box-shadow: 1px 1px 57px rgba(95 208 243 / 7%);
    background-color: #fff;
    color: #b2b2b2;
    padding: 14px 18px;
    outline: 0;
    width: 100%;
}
::placeholder {
    color: #b2b2b2;
    opacity: 1; /* Firefox */
  }
  
  :-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: #b2b2b2;
  }
  
  ::-ms-input-placeholder { /* Microsoft Edge */
   color: #b2b2b2;
  }
.need_content textarea{
    resize: none;
    overflow: auto;
}

/* ------------------------------report--------------------------------- */
.need_content {
    border-radius: 25px 25px 35px 35px;
    width: 100%;
    height:100%;
    padding: 50px 30px;
    background-color: #fff;
    border: 2px solid #2a72be;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.need_content h3 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
}
label {
    display: inline-block;
    margin-bottom: 0.5rem;
}
.lefttext {
    text-align: left;
    float: left;
    padding-left: 20px;
    font-size: 1rem;
    font-weight: 400;
}
select {
    -webkit-appearance: menulist-button !important;
    color: #b2b2b2!important;
    margin-right: 10px;
}
.gj-datepicker-md [role=right-icon] {
    position: absolute;
    right: 16px!important;
    top: 50px!important;
    font-size: 24px;
}
#hidden_div {
    display: none;
}

/* ---------------NAVBAR ORIGINAL-------------- */
.banner-logo{
    width:142px;
}
a.nav-link{
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    color: #fff !important;
    text-decoration: none;
    padding: 8px 15px!important;
    transition: text-shadow .3s; 
}
.nav-link:hover, .nav-link.active{
    color: #5bd3ec !important;
    text-shadow: 0 0 .99px #5bd3ec, 0 0 .99px #5bd3ec!important;
}
nav.navbar{
    margin: 0 !important;
    padding: 20px 0;
    width: 100%;
}

/* -----------------SLIDING NAVBAR----------------- */
.sliding-navbar{
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 1000;
    transition: ease-in-out;
    transition-duration: 0.3s;
}
.sliding-navbar a{
    color: black !important;
}
.sliding-navbar a:hover{
    color: #5BD3EC !important;
}
.navbar-toggler {
    border : 1px solid blue !important;
}
.sliding-navbar .custom-ham{
    background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.sliding-navbar .uplifted-button{
    background-color: #fff;
    color:black;
}
/* -------------------SIDENAV-------------------- */
.navbar-open li.nav-item{
    border-bottom: 1px solid #b2b2b2 !important;
}
.sliding-navbar.navbar-open .demo-button{margin: 10px 15px;}
.sliding-navbar.navbar-open{
    background-color: #fff !important; 
    position:fixed;
    top:0 !important;
    width:100%;
}
