@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

@font-face {
    font-family: 'Kabel';
    src: url('KABEL.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}
/* h1, h2 {
    font-family: 'Kabel', sans-serif;
} */

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #102467 0%, #000927 100%);
    z-index: 0;
    top: 0;
    left: 0;
    filter: blur(1px);
}
body {
    font-family: 'Montserrat', Arial, sans-serif;
    
}
.content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
}

.logo-section {
    text-align: center;
    padding: 80px 20px 30px;
}

.logo-text {
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 0 0 15px #0dcaf0;
    display: inline-block;
    font-family: "Noto Sans JP", sans-serif;
}

.logo-text .i {
    color: #ff1e1e;
    animation: bounce 1s infinite;
}
.logo-text .i img{
    margin-top: -25px;
}
.solutions-text {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    animation: fadeInUp 2s ease-in-out forwards;
    text-shadow: 0 0 10px #0dcaf0;
    opacity: 0;
    margin-top: -30px;
    /* margin-right: 10px; */
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.angled-banner {
    background: #00aaff;
    color: white;
    font-weight: bold;
    padding: 20px 40px;
    font-size: 1.5rem;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    box-shadow: 0 5px 20px rgba(0, 170, 255, 0.3);
    margin-left: 0px;
    opacity: 0;
    transform: translateX(-100px);
    animation: slideIn 1s ease-out forwards;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.modal-backdrop{
    z-index: -1 !important;
}
/* Modal Styling */
.futuristic-modal {
    background: linear-gradient(135deg, rgba(16, 36, 103, 0.9) 0%, rgba(0, 9, 39, 0.9) 100%);
    border: 1px solid #00aaff;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 170, 255, 0.5);
    backdrop-filter: blur(5px);
    color: white;
    font-family: "Noto Sans JP", sans-serif;
    animation: fadeInModal 0.5s ease-out;
}

@keyframes fadeInModal {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-header {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 0 10px #0dcaf0;
    animation: fadeInUp 1s ease-out;
}

.btn-close-white {
    filter: invert(100%);
    transition: transform 0.3s;
}

.btn-close-white:hover {
    transform: rotate(90deg);
}

/* Form Styling */
.form-group {
    position: relative;
    opacity: 0;
    animation: slideInForm 0.5s ease-out forwards;
    animation-delay: calc(0.1s * var(--i));
}

.form-group:nth-child(1) { --i: 1; }
.form-group:nth-child(2) { --i: 2; }
.form-group:nth-child(3) { --i: 3; }

@keyframes slideInForm {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-label {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 0 5px #0dcaf0;
    margin-bottom: 5px;
}

.futuristic-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #00aaff;
    border-radius: 8px;
    color: white;
    padding: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 170, 255, 0.2);
}

.futuristic-input:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: #0dcaf0;
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.5);
    transform: scale(1.02);
}

.futuristic-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Button Styling */
.futuristic-btn {
    background: #00aaff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: 0 0 5px #0dcaf0;
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.futuristic-btn:hover {
    background: #0dcaf0;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 170, 255, 0.5);
}

.futuristic-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #00aaff;
}

.futuristic-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.3);
}
.text-bleu{
    color: #00aaff;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .futuristic-modal {
        border-radius: 10px;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .futuristic-input {
        padding: 8px;
    }
    
    .futuristic-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    .logo-text{
        font-size: 4rem;
    }
    .logo-text .i img{
        height: 80px;
    }
}

@media (min-width: 768px) {
    .angled-banner {
        font-size: 1.2rem;
        padding: 20px;
        padding-right: 70px;
        margin-left: -10px;
        clip-path: polygon(0 0, 100% 0, 93% 100%, 0% 100%);
        text-align: end;
    }
    .logo-text {
        font-size: 7rem;
    }
}
.form-control:focus{
color: white !important ;
}
.data-bg{
    background-image: url(bg.jpeg);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
}
.height-100vh{
    height: 100vh;
}
.logo{
    /* height: 350px; */
    width: 350px ;
    object-fit: contain;
}
.launch-text{
    font-size: 65px;
    letter-spacing: 20px;
    /* font-weight: bold; */
       font-family: 'Kabel', sans-serif;
}
@media(max-width : 764px){
    .launch-text{
    font-size: 25px;
    letter-spacing: 20px;
    /* font-weight: bold; */
       font-family: 'Kabel', sans-serif;
}
}