@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Helvetica';
    /* background-color: #0d3354; */
    color: #CAD1E9;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 !important;
}

body {
    /* background: url(../assets/images/body-bg.webp);
    background-size: cover;
    background-repeat: no-repeat; */
    background: linear-gradient(180deg, rgba(0, 10, 36, 1) 0%, rgba(0, 16, 61, 1) 20%, rgba(0, 34, 102, 1) 50%, rgba(0, 12, 43, 1) 80%, rgba(0, 5, 25, 1) 100%);
}

@font-face {
    font-family: 'Helvetica';
    src: url('../assets/fonts/fonnts.com-Helvetica_Regular.ttf');
    /* src: url('assets/fonts/custom-font.eot?#iefix') format('embedded-opentype'),
        url('assets/fonts/custom-font.woff2') format('woff2'),
        url('assets/fonts/custom-font.woff') format('woff'),
        url('assets/fonts/custom-font.ttf') format('truetype'); */
}

.helvetica {
    font-family: 'Helvetica';
}

.IBM {
    font-family: "IBM Plex Sans", sans-serif;
}

.touch-btn {
    white-space: nowrap;
    color: #CAD1E9;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.3px;
    text-transform: capitalize;
    text-decoration: none;
}

.gradient-border {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 8px;
    width: 100%;
    height: 100%;
}

.gradient-border::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    background: linear-gradient(90deg, rgba(9, 156, 219, 1) 52%, #0d3354 78%);
    border-radius: 8px;
    width: 120%;
    height: 420%;
    transform-origin: center center;
    animation: gradient-line 5s linear infinite;
}

@keyframes gradient-line {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.gradient-border::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    background-color: #0d3354;
    border-radius: 6px;
    width: 97%;
    height: 90%;
}

.nav-item .nav-link {
    color: #FFFFFF6E !important;
    letter-spacing: 0.4px;
}

.nav-item .nav-link.active {
    color: white !important;
    letter-spacing: 0.4px;
}

.border-custom-1 {
    border: 1.6px solid rgba(9, 156, 219, 1);
    border-radius: 8px;
}

.primary-heading {
    font-family: "IBM Plex Sans", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
}

.explore-btn {
    text-decoration: none;
    white-space: nowrap;
    font-size: 15px;
    padding: 12px 40px;
    font-weight: 500;
    letter-spacing: 0.4px;
}

.navbar-toggler {
    border: none !important;
}

.navbar-toggler-icon {
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
    width: 40px !important;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none !important;
    border: none;
}

.svg-arrow {
    position: absolute;
    bottom: -24%;
    left: 0;
}

.swiper-slide {
    display: flex !important;
    justify-content: center !important;
    align-items: start !important;
}

.slide-image {
    filter: grayscale(1);
    aspect-ratio: 16/9 !important;
    height: auto;
    object-fit: contain;
    transition: 0.4s ease;
}

.slide-image:hover {
    opacity: 1;
    filter: none;
}

.line-bg {
    background: url(../assets/images/about-line.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cursor {
    position: absolute;
    width: 90px;
    height: 90px;
    background: rgba(32, 189, 246, 0.59);
    filter: blur(20px);
    border-radius: 100%;
    opacity: 0;
    transition: opacity 0.3s ease; /* Smooth transition */
    pointer-events: none;
}

.gradient-btn {
    position: relative;
    padding: 10px 20px;
    background-color: transparent;
    border-radius: 8px;
    overflow: hidden;
    z-index: 1;
}

.gradient-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(90deg, #099CDB, #000000ba, #099CDB, #000000ba);
    background-size: 300% 300%;
    animation: rotate-border 5s linear infinite;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

@keyframes rotate-border {
    0% {
        background-position: 0% 50%;
        background-size: 300% 300%;
    }

    100% {
        background-position: 100% 50%;
        background-size: 300% 300%;
    }
}

.border-grad-set svg {
    width: 100%;
    height: 100%;
}

.input-grad {
    padding: 8px 10px;
    border: none;
    background: transparent;
    border-bottom: 2px solid;
    border-image: linear-gradient(to right, #099CDB, #000000ba) 1;
}

.input-grad:focus {
    outline: none !important;
}

.svg-border-grad {
    position: absolute;
    width: 100%;
    height: fit-content;
    top: 0;
    left: 0;
    z-index: 0;
}

.accordion-item {
    background-color: transparent !important;
    border: 2px solid !important;
    border-image: linear-gradient(to right, #099CDB, #000000ba) 1 !important;
}

.accordion-button {
    background-color: transparent !important;
    border: none;
    color: #CAD1E9 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px !important;
    padding: 30px 20px !important;
}

.accordion-button:not(.collapsed) {
    color: #CAD1E9 !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

.accordion-collapse {
    background-color: transparent !important;
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-button::after {
    background-image: url(../assets/images/accord-arrow.png) !important;
    scale: 1.4;
}

.navbar {
    transition: background-color 0.3s ease;
}

.bg-scroll {
    background-color: #000c2a93;
    backdrop-filter: blur(25px);
}

.slider-cover {
    background-color: #04124b95;
    backdrop-filter: blur(20px);
    border: 2px solid #099CDB;
    overflow: hidden;
    position: relative;
}

.slider-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    width: 800px;
    height: 800px;
    mix-blend-mode: exclusion;
    opacity: 0.7;

}

.swiper-slide-active img,
.swiper-slide-next img,
.swiper-slide-prev img {
    filter: none;
}

.svg-round-bg {
    height: 100px;
    width: 100px;
    border-radius: 100%;
    border: 1px solid #099CDB;
    background-color: #0d3354;
    display: flex;
    justify-content: center;
    align-items: center;
}

#swipe-view-2,
#swipe-view-3 {
  transform: translateY(0);
  transition: transform 0.5s ease-out;
}

#swipe-up-container {
  position: relative;
}

.swipe-view {
  position: absolute;
  width: 100%;
  height: 100%;
  will-change: transform;
}

.boxOne {
    background-color: #04124b95;
    border: 2px solid #099CDB;
    backdrop-filter: blur(20px);
}

.boxTwo {
    background-color: #04124b95;
    border: 2px solid #0d3354;
    backdrop-filter: blur(20px);
}

.sim-card-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 0;
}

.area{
    width: 100vw;
    height:100vh;
    
   
}

.circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgb(255 255 255 / 7%);
    animation: animate 25s linear infinite;
    bottom: -150px;
    
}

.circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}



@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}

.levitating{
    transform: scale(0.98);
    transition: transform 0.6s ease;
}

.levitating:hover{
    transform: translateY(-20px) scale(1);
}
.charLimit-2{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.charLimit{
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration:none;
    transition:text-decoration 0.3s ease;
}
.charLimit:hover{
    text-decoration:underline;
}
.offcanvas.offcanvas-start {
    background-color: #00154496;
    backdrop-filter: blur(15px);
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}
.form-control:focus,
.btn-close:focus{
    box-shadow:none !important;
}

.btn-close {
    filter: invert(1) !important;
}

#brand{
    position:absolute;
    top:-85px;
    left:0;
}
.hero-vid{
    object-fit: contain;
    object-position: right;
    position: absolute;
    top: 70%;
    bottom: 0;
    right: 0;
    transform: translate(0, -50%);
    z-index: 0;
}