
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: black;
    color: aliceblue;
    
    
}

.logo img {
    width: 120px;
    height: auto;
  }

  @media (max-width: 768px) {
    .logo img {
      width: 70px;
    }
  }

  .navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  z-index: 1000;
  transition: transform 0.4s ease-in-out;
  height: 70px;
  background-size: cover;
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1); 
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit; 
  opacity: 0.6; 
  z-index: -1; 
}


  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: auto;
  }

  .nav-links {
    display: flex;
    gap: 25px;
  }

  .nav-item, .mobile-nav-item {
    position: relative;
    font-family: 'Fira Code', monospace;
    color: #0ff;
    text-decoration: none;
    display: inline-block;
    padding: 8px 15px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 800;
    background: transparent;
    border: none;
  }

  .nav-item:hover, .mobile-nav-item:hover {
    color: #3cfc46;
  }

  .nav-item::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #06f012;
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
  }

  .nav-item:hover::after {
    width: 100%;
    left: 0;
  }

 
.auth-buttons {
    display: flex;
    gap: 10px;
}

.auth-btn {
    position: relative;
    padding: 10px 20px;
    font-size: 16px;
    border: 2px solid green;
    background: transparent;
    color: red;
    cursor: pointer;
    overflow: hidden;
    transition: color 0.4s ease-in-out, border-color 0.4s ease-in-out;
    border-radius: 5px;
    font-weight: 800;
}

.auth-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, #008000, #00b300);
    z-index: -1;
    transition: left 0.4s ease-in-out;
}

.auth-btn:hover::before {
    left: 0;
}

.auth-btn:hover {
    color: white;
    border-color: #00b300;
}


.auth-btn-2 {
    position: relative;
    padding: 10px 20px;
    font-size: 16px;
    border: 2px solid #00b300;
    background: green;
    color: white;
    cursor: pointer;
    overflow: hidden;
    transition: color 0.4s ease-in-out, border-color 0.4s ease-in-out;
    border-radius: 5px;
    font-weight: 800;
}
.auth-btn-2:hover {
    background-color: #009900; 
    border-color: #009900;
}



  .menu-icon {
    display: none;
    font-size: 40px;
    cursor: pointer;
    color: red;
  }

  @media (max-width: 768px) {
    .nav-links {
      display: none;
    }
    .menu-icon {
      display: block;
    }
  }

  .mobile-menu {
    
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 30%;
    width: 70%;
    height: 100vh;
    background: linear-gradient(145deg, #0d1117, #0f141c);
    backdrop-filter: blur(10px);
    padding: 20px;
    text-align: left;

    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    z-index: 999;
  }

  .mobile-menu.show {
    transform: translateX(0);
  }


  .menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 22px;
  }

  .close-icon {
    font-size: 28px;
    cursor: pointer;
    color: red;
    margin-bottom: 20px;
  }

  .mobile-nav-item {
    margin-top: 10px;
    padding: 8px 15px;
    font-size: 16px;
    text-decoration: none;
    color: green;
  }

/* body not scroll when mobile menu is open */
  body.no-scroll {
    overflow: hidden;
}


.hero {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}


.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center;
}


.hero .text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5); 
    padding: 10px 20px;
    border-radius: 10px;
    animation: glitch 0.8s infinite alternate;
}


.hero .text span {
    text-decoration: underline;
    color: rgba(255, 0, 0, 0.795);
    animation: glitch 0.6s infinite alternate-reverse;
}



@media (max-width: 768px) {
    .hero .text {
        font-size: 2.5rem;
        padding: 5px 10px;
    }
}



@media (max-width: 600px){
    marquee{
        font-size: 0.8rem;
    }
}


.info-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 5px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(245, 4, 4, 0.5);
    
}


.hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}


.visible {
    opacity: 1;
    transform: translateY(0);
}



.image-bg-info-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url('login-bg.jpeg')no-repeat center center/cover;
    padding: 50px; 
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 5px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(245, 4, 4, 0.5);
}
.image-bg-info-section h2,
.image-bg-info-section p {
    position: relative;
    z-index: 2;
}
.image-bg-info-section p {
    font-size: 1.5rem;
    max-width: 700px;
    color: rgba(245, 245, 245, 0.816);
}
.image-bg-info-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px
    
}
@keyframes waveText {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(2deg); }
    50% { transform: rotate(-2deg); }
    75% { transform: rotate(2deg); }
    100% { transform: rotate(0deg); }
}

.image-bg-info-section p, .image-bg-info-section h2 {
    display: inline-block;
    animation: waveText 1.5s infinite ease-in-out;
}

@keyframes glitch {
    0% { text-shadow: 2px 2px red, -2px -2px blue; }
    50% { text-shadow: -2px -2px red, 2px 2px blue; }
    100% { text-shadow: 2px -2px blue, -2px 2px red; }
}

.image-bg-info-section p {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.image-bg-info-section p.visible {
    opacity: 1;
    transform: translateY(0);
}



.image-bg-info-section h2 {
    animation: glitch 0.5s infinite alternate;
}


.info-section.reverse {
    flex-direction: row-reverse;
}


.content {
    width: 50%;
    padding: 20px;
}

.content h2 {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.904);
    margin-bottom: 10px;
}

.content p {
    font-size: 1.1rem;
    color: rgba(245, 245, 245, 0.616);
    line-height: 1.6;
}
.content li {
    font-size: 1.1rem;
    color: rgba(245, 245, 245, 0.616);
    line-height: 1.6;
}



.image {
    width: 40%;
    text-align: center;
}

.image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}


@media (max-width: 768px) {
    .info-section {
        flex-direction: column-reverse;
        text-align: center;
        padding: 30px;
    }

    .info-section.reverse {
        flex-direction: column-reverse;
    }

    .content, .image {
        width: 100%;
    }
}



.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100%;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 7px;

}


.image-container img {
    margin-top: 7px;
    max-width: 100%;
    height: auto;
    width: 55%; 
}


@media (max-width: 768px) {
    .image-container img {
        width: 80%; 
    }
}

@media (max-width: 480px) {
    .image-container img {
        width: 80%; 
    }
}


.slider-container {
    width: 90%;
    margin: auto;
    overflow: hidden;
    position: relative;
}


.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 1%; /* Space between slides */
}


.slide {
    min-width: 32.50%;
    transition: 0.5s;
}


.slide img {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.3s ease-in-out;
}


.slide img:hover {
    transform: scale(1.1); 
}


.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    cursor: pointer;
    border: none;
    font-size: 20px;
    border-radius: 5px;
    z-index: 10;
}

.prev { left: 10px; }
.next { right: 10px; }


.prev:hover, .next:hover {
    background: rgba(0, 0, 0, 0.8);
}


@media (max-width: 768px) {
    .slide { min-width: 99%; }
}

.youtube-video-container {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: auto;
}

.youtube-video-container iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    cursor: pointer;
}
.faq-container {
    width: 80%;
    margin: 0 auto;
    margin-top: 50px;
}

.faq-item {
    margin-bottom: 10px;
    border: 1px solid #f10909;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    padding: 15px;
    background: black;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 15px;
    display: none;
    background: #292828;
}

.arrow {
    transition: transform 0.3s ease;
}

.faq-question.active .arrow {
    transform: rotate(180deg);
}


.faq-question span {
    color: white;
}
.faq-answer {
    color: rgba(245, 245, 245, 0.616); 
}


@media (max-width: 768px) {
    .faq-container {
        width: 90%;
    }

    .faq-question, .faq-answer {
        padding: 10px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-answer {
        font-size: 14px;
    }
    
}

@media (max-width: 480px) {
    .faq-container {
        width: 95%;
    }

    .faq-question, .faq-answer {
        padding: 8px;
    }

    .faq-question {
        font-size: 14px;
    }

    .faq-answer {
        font-size: 12px;
    }
    
}
#shield-equation-section {
    
    display: flex;
    align-items: center;
    
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 5px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(245, 4, 4, 0.5);
    display: flex;
    justify-content: center;
    text-align: center;
}

.shield-equation {
    font-family: 'Share Tech Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ffcc;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.7);
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    width: 0; 
    animation: typewriter 4s steps(40) 1s forwards, fadeIn 2s 5s forwards, flashText 1s 8s infinite;
}

.shield-equation .highlight {
    color: #00ff00;
    text-shadow: 0 0 8px rgba(0, 255, 0, 0.7);
}

.shield-equation .shield {
    color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
    font-size: 2.8rem;
}

@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Flashing effect */
@keyframes flashText {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}


.shield-equation {
    font-size: 2.5rem;
}

.shield-equation .shield {
    font-size: 2.8rem;
}


@media (max-width: 1024px) {
    .shield-equation {
        font-size: 1.8rem;
    }

    .shield-equation .shield {
        font-size: 2.2rem;
    }
}


@media (max-width: 768px) {
    .shield-equation {
        font-size: 1rem;
    }

    .shield-equation .shield {
        font-size: 1.2rem;
    }
}


@media (max-width: 480px) {
    .shield-equation {
        font-size: 0.8rem;
    }

    .shield-equation .shield {
        font-size: 1rem;
    }
}

.gradient-video {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0px 0px 15px rgba(0, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.gradient-video:hover {
    box-shadow: 0px 0px 20px rgba(0, 255, 255, 0.9);
}

.gradient-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.chat-box {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 350px;
    background: #0A0F24; 
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 255, 255, 0.5); 
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 255, 0.6);
    z-index: 3;
}


.chat-header {
    background: #00FFC6; 
    color: black;
    padding: 12px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    position: relative;
}

.close-chat {
    position: absolute;
    right: 12px;
    top: 5px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: black;
}

/* Chat Body */
.chat-body {
    padding: 12px;
    height: 200px;
    overflow-y: auto;
    border-bottom: 1px solid #00FFC6;
    font-size: 14px;
    color: white;
}

/* Messages */
.chat-body p {
    padding: 8px;
    border-radius: 5px;
    margin: 5px 0;
    word-wrap: break-word;
}

/* Assistant message */
.chat-body p:not(.user-msg) {
    background: rgba(0, 255, 255, 0.2);
    border-left: 3px solid #00FFC6;
}

/* User message */
.chat-body .user-msg {
    background: rgba(255, 0, 0, 0.6);
    text-align: right;
    border-right: 3px solid red;
}

/* Chat Input */
.chat-input {
    display: flex;
    padding: 8px;
    background: rgba(0, 255, 255, 0.1);
}

.chat-input input {
    flex: 1;
    padding: 8px;
    border: 1px solid #00FFC6;
    border-radius: 5px;
    outline: none;
    font-size: 14px;
    background: #0A0F24;
    color: white;
}

.chat-input input::placeholder {
    color: rgba(0, 255, 255, 0.5);
}

.chat-input button {
    background: #00FFC6;
    color: black;
    border: none;
    padding: 8px 12px;
    margin-left: 5px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    transition: 0.3s;
}

.chat-input button:hover {
    background: #00DDC0;
}

/* Responsive Design */
@media (max-width: 600px) {
    .gradient-video {
        width: 60px;
        height: 60px;
        bottom: 15px;
        left: 15px;
    }

    .chat-box {
        width: 95%;
        max-width: 320px;
    }

    .chat-body {
        height: 180px;
    }

    .chat-input input {
        font-size: 12px;
    }

    .chat-input button {
        padding: 6px 10px;
        font-size: 12px;
    }
}

#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #007bff;;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    box-shadow: 0px 0px 10px rgba(255, 0, 0, 1);
    z-index: 1000;
}

#backToTop:hover {
    background: red;
    box-shadow: 0px 0px 10px rgba(3, 252, 65, 1);
}

/* Scroll Progress Indicator */
#progress {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    clip-path: inset(0% 0% 100% 0%);
    border-radius: 50%;
}

footer {
    background-color: black;
    color: #fff;
    padding: 20px 0;
    font-size: 14px;
    text-align: center;
    border-top: 2px solid #333;
    margin-top: 15px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
    
}

.footer-logo img {
    max-width: 300px; /* Adjust size */
    height: auto;
    margin-right: 100px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
    gap: 2px;
    flex-wrap: wrap;
}

.footer-section {
    text-align: left;
    flex: 1;
}

.footer-section h3 {
    font-size: 16px;
    margin-bottom: 10px;
    text-decoration: underline;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 5px 0;
}

.footer-section ul li a {
    color: #00aaff;
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 15px;
    padding: 10px;
    background-color: #0d0d0d;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom a {
    color: #00aaff;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer-section {
        text-align: center;
    }
    .footer-logo img {
        margin-right:0;
    }
}

