@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

}

body {
    background-color: black;
    color: rgb(255, 255, 255);
    overflow-x: hidden;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    max-width: 100%;
    width: 100%;
    padding: 20px 10%;
    background: transparent;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.548), green, rgba(0, 0, 0, 0.548));
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    /* border-radius: 100px; */
}

.logo {
    font-size: 25px;
    color: green;
    text-shadow: 5px 5px 10px black;
    text-decoration: none;
    font-weight: 600;
    opacity: 0;
    animation: slideTop 1s ease forwards;
    
}

.navbar a {
    display: inline-block;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    opacity: 0;
    animation: slideTop .5s ease forwards;
    animation-delay: calc(.2s * var(--i));
}
.navbar a::after {
    content: '';
    width: 0;
    height: 2px;
    background: black;
    border-radius: 50%;
    position: absolute;
    left: 0;
    bottom: -3px;
    transition: 0.6s;
}

.navbar a:hover::after {
    width: 100%;
}

.navbar a:hover {
    background: linear-gradient(45deg, rgb(0, 0, 0), rgb(0, 0, 0));
    -webkit-text-fill-color: transparent;
    background-clip: border-box;
    -webkit-background-clip: text;
}

.menu-toggle{
    display: none;
}

.home {
    width: 100%;
    display: flex;
    align-items: center;
}

.home-content {
    padding: 50px;
    padding-top: 90px;
    display: flex;
    gap: 20px;
    box-sizing: border-box;
}



.home-content .mu {

    font-weight: 700;
    line-height: 1.2;
    opacity: 0;
    animation: slideRight 1s ease forwards;
    padding-top: 92px;
    padding-left: 145px;

    
}   

.home-content h3 {
    font-size: 30px;
    font-weight: 700;
    opacity: 0;
    animation: slideLeft 1s ease forwards;
    animation-delay: 1s;
}

.caption{
    padding-left: 145px;
    padding-bottom: 0px;
    width: 65%;
    font-size: 0.9rem;
    color: #00FF00;
    line-height: 1.6;
}

.left .right{
    padding: 40px;
    box-sizing: border-box;

}
.left{
    width: 75%;
    padding-right: 87px;
}
.right{
    width: 30%;
    margin-right: 20px;
}

.home-img {
    width: 410px;
    height: 410px;
    opacity: 0;
    animation: zoomIn 1s ease forwards, floatImage 4s ease-in-out infinite;
    animation-delay: 1s, 2.1s;
    padding-bottom: 56px;
}

.home-img .glowing-circle {
    padding-top: 244px;
    padding-right: 95px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-img .glowing-circle::after {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    background-color:black;
    border-radius: 50%;
}

.glowing-circle span {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(black, rgba(0, 128, 0, 0.411));
    border-radius: 50%;
    animation: circleRotate 5s linear infinite;
}

.glowing-circle span:nth-child(1) {
    filter: blur(10px);
}

.image img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    max-width: 379px;
    object-fit: cover;
}

.glowing-circle .image {
    position: relative;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    z-index: 1;
}


.mu {
    margin-top: 50px;
    font-size: 56px;

}



.contact{
    justify-items: center;
    text-align: center;
    padding-top: 35px;
    margin-bottom: 40px;

}

span.pro-text {
    font-size: 20px;
}

.wave{
    font-size: 74px;
}

a {

    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    animation: slideLeft 1s ease forwards;
    animation-delay: 1s;

  text-decoration: none;
  color: transparent;
  background: url("https://wweb.dev/resources/creative-hover-effects/wave.svg") repeat-x #00FF00;
  background-position-x: 0%;
  background-position-y: 0%;
  background-size: auto;
  background-clip: border-box;
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 200% 100%;
  background-position-x: 0;
  background-position-y: 2em;
  -webkit-transition: background-position-y 0.6s ease;
  transition: background-position-y 0.6s ease;
  -webkit-animation: waveAnimation 4s infinite linear;
  animation: waveAnimation 4s infinite linear;
  animation-play-state: running;
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.mu2{
    font-size: 28px;
}

a:hover {
  background-position-x: 0;
  background-position-y: 0;
  -webkit-animation-play-state: running;
  animation-play-state: running;
}

a :hover {
  background-position-y: 0; 
  animation: waveAnimation 4s linear infinite, slideLeft 1s ease forwards 1s; 
}


@keyframes waveAnimation{
  from {
    background-position-x: 0%;
  }
  to {
    background-position-x: 200%;
  }
}



.greenText{
    color: rgb(0, 225, 0);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    opacity: 0;
    animation: slideRight 1s ease forwards;
    animation-delay: 1.9s;
}
.home-content p {
    margin: 30px 0 0;
    text-align: left;
    opacity: 0;
    animation: slideLeft 1s ease forwards;
}

.largetxt{
    padding-left: 145px;
    font-size: 18px;
    width: 65%;
}

.smalltxt{
    font-size: 16px;
}

.home-sci a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: black;
    border: 2px solid green;
    border-radius: 50%;
    font-size: 20px;
    color: green;
    text-decoration: none;
    margin: 30px 15px 30px 0;
    opacity: 0;
    animation: zoomIn 1s ease forwards;
    animation-delay: 0.4s;
    text-align: center;
    
}

.home-sci a:hover {
    background: green;
    color: black;
    box-shadow: 0 0 20px green;
}

.btn-box {
    display: inline-block;
    padding: 12px 28px;
    background: green;
    border-radius: 40px;
    font-size: 16px;
    color: black;
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: 600;
    opacity: 0;
    animation: zoomIn 1s ease forwards;
    animation-delay: 0.4s;
}

.btn-box:hover {
    box-shadow: 0 0 5px green,
    0 0 25px green, 0 0 50px green,
    0 0 100px green, 0 0 200px green;
}



.navbar-1 a {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-left: 50px;
    text-align-last: center;
}

.navbar-1 a.active, 
.navbar-1 a:hover {
    background: linear-gradient(45deg, rgb(0, 0, 0), rgb(0, 0, 0));
    -webkit-text-fill-color: transparent;
    background-clip: border-box;
    -webkit-background-clip: text;
}



canvas {
    position: fixed;
    top: auto;
    left: auto;
    background-color: black;
    z-index: -1;
    background-size:cover;
    background-blend-mode: multiply;
    background-size: auto;
    scroll-behavior: smooth;
}

.text-border{
    margin-top: 40px;
    border: 2px solid #00FF00;
    border-radius: 15px;
    padding: 20px;
    opacity: 0;
    animation: slideLeft 1s ease forwards;
    animation-delay: 1.3s;

    position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: all 0.5s ease;


  font-size: 2rem;
  position: relative;
  z-index: 2;
}

.text-border::before{
    content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    0deg, 
    transparent, 
    transparent 30%, 
    rgba(0, 255, 21, 0.363)
  );
  transform: rotate(-45deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.text-border:hover {
  transform: scale(1.05);
  box-shadow: 0 0 70px rgba(0, 255, 21, 0.678);
}

.text-border:hover::before{
    opacity: 1;
    transform: rotate(-45deg) translateY(100%);
}



.cards-container {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap; /* Wrap for smaller screens */
    margin-top: 53px;
    opacity: 0;
    animation: slideTop 4s ease forwards;
}

.card {
  background-color: #e5eef4;
  border-radius: 15px;
  padding: 15px;
  width: 320px;

}

.card h3 {
  margin-bottom: 30px;
  font-size: 1.1rem;
  color: #333;
}

.card p {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #555;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.bottom-card {
  background-color: #e5eef4;
    font-size: 0.9rem;
  line-height: 1.4;
  color: #555;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  max-width: 600px;
  width: 90%;
}

.bottom-card h3 {
  font-size: 1.2rem;
  color: #333;
}

.holographic-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    opacity: 0;
    animation: slideTop 1s ease forwards;
    animation-delay: 1s, 2.1s;
}

.holographic-card {
    background-color: #e5eef4;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #555;
    border-radius: 15px;
    text-align: left;
    max-width: 600px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    max-height: 700px;
    height: 100%;

}

.holographic-card h2 {
  color: #00FF00;
  font-size: 2rem;
  position: relative;
  z-index: 2;
}

.holographic-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    0deg, 
    transparent, 
    transparent 30%, 
    #00FF00
  );
  transform: rotate(-45deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.holographic-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #00FF00;
}

.holographic-card:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translateY(100%);
}

.footer{
    text-align: center;
    color: grey;
    opacity: 0;
    animation: slideTop 4s ease forwards;
    animation-delay: 1.1s, 2.1s;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: fit-content;
    position: absolute;
    display: inline-block;
    padding: 5px;
    padding-bottom: 20px;
    margin-bottom: 5px;
    font-size: 14px;
}
/* Animation */
@keyframes slideTop {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }    
}

@keyframes slideRight {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }    
}

@keyframes slideLeft {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }    
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floatImage {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-24px);
    }

    100%{
        transform: translate(0);
    }
}

@keyframes circleRotate {
    0% {
        transform: rotate(0);
    }
    
    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }



/* ===========================
   MEDIA QUERIES
   =========================== */

/* Tablet screens and smaller (<= 1024px) */
@media (max-width: 1024px) {
    .header {
        flex-direction: column;
        padding: 10px;
        text-align: center;
    }

    .body{
        width: fit-content;
    }

    .navbar {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        margin-top: 10px;
    }

    .navbar a {

        margin-left: 0;
    }

    .home-content {
        padding-top: 100px; /* space for fixed header */
        padding-left: 30px;
        padding-right: 40px;
    
    }

    .mu{
        text-align: left;
        padding: 0px;

    }
    
    .left{
        text-align: left;
    }
    .wave{
        font-size: 68px;
    }

    .home-content .mu {
        font-size: 26px;
        padding: 0;
        padding-left: 0px;
    }

    .largetxt {
        font-size: 16px;
        width: 100%;
        padding: 0;
    }

    .caption {
        font-size: 14px;
        width: 100%;
        padding: 0;
    }


    .home-img {
        width: 250px;
        height: 220px;
    }

    .image img {
        max-width: 250px;
    }

    .cards-container {
    gap: 20px;
    max-width: 100%;
    width: 90%;   /* let it fill the screen width */
    padding: 0 15px; /* add some padding so content doesn’t touch edges */
    box-sizing: border-box;
    justify-self: center;
    }

    .cards-container:active,
    .cards-container *:active {
        /* reset styles or disable */
        background: none; /* or original background */
        transform: none;  /* remove scale or translate */
        /* reset other properties you used */
    }
 
    .content-wrapper{
        padding-left: 10px;
        padding-right: 10px;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        justify-self: center;
        gap: 20px;
    }

    .card, .bottom-card {
        width: 91%;
        padding: 15px;
        text-align: left;
    }

    .holographic-container {
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        padding-bottom: 65px;
        margin-top: 0px;
    }


    

  /* Ensure the holographic-card doesn’t stretch fully */
    .holographic-card {
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
        width: 100%;
        display: block; /* instead of flex */
        text-align: left;
    }

    .holographic-card:hover {
        transform: none; 
        box-shadow: none
        }

  /* bottom-card takes full width inside holographic-card but with padding */
  .bottom-card {
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
    padding: 15px;
    box-sizing: border-box;
    text-align: left;
    justify-self: center;
  }


    .footer {
        position: absolute;
        padding: 10px;
    }
    
    .glow-on-scroll {
        box-shadow: 0 0 20px #00FF00 !important;
        transform: scale(1.07);
        transition: all 0.5s ease;
    }


       
}






/* Tablet screens and smaller (<= 1024px) */
@media (max-width: 600px) {
    .header {
        flex-direction: column;
        padding: 10px;
        text-align: center;
    }

    .body{
        width: fit-content;
    }

    .navbar {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-top: 10px;
    }

    .navbar a {
        font-size: 14px;
        margin-left: 0;
    }

    .home-content {
        padding-top: 100px; /* space for fixed header */
    }

    .mu{
        text-align: left;
    }

    .wave{
        font-size: 68px;
    }

    .home-content .mu {
        font-size: 26px;
        padding: 0;
    }

    .largetxt {
        font-size: 16px;
        width: 100%;
        padding: 0;
    }

    .caption {
        font-size: 14px;
        width: 100%;
        padding: 0;
    }


    .home-img {
        width: 250px;
        height: 220px;
    }

    .image img {
        max-width: 250px;
    }

    .cards-container {
        gap: 20px;
        max-width: 100%;
        width: 90%;   /* let it fill the screen width */
        padding: 0 15px; /* add some padding so content doesn’t touch edges */
        box-sizing: border-box;
    }

    .cards-container:active,
    .cards-container *:active {
        /* reset styles or disable */
        background: none; /* or original background */
        transform: none;  /* remove scale or translate */
        /* reset other properties you used */
    }
 
    .content-wrapper{
        padding-left: 10px;
        padding-right: 10px;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        justify-self: center;
        gap: 20px;
    }

    .card, .bottom-card {
        width: 91%;
        padding: 15px;
        text-align: left;
    }

    .holographic-container {
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
        width: 91%;
        max-width: 91%;
        padding-bottom: 65px;
        margin-top: 0px;
    }


    

  /* Ensure the holographic-card doesn’t stretch fully */
  .holographic-card {
    max-width: 91%;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    display: block; /* instead of flex */
    text-align: left;
  }

  /* bottom-card takes full width inside holographic-card but with padding */
  .bottom-card {
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
    padding: 15px;
    box-sizing: border-box;
    text-align: left;
    justify-self: center;
  }


    .footer {
        position: absolute;
        padding: 10px;
    }
    
    .glow-on-scroll {
        box-shadow: 0 0 20px #00FF00 !important;
        transform: scale(1.07);
        transition: all 0.5s ease;
    }

    /* Default: hide hamburger on desktop */
    .menu-toggle {
        display: none;
        margin-left: auto;
        font-size: 28px;
        color: white;
        cursor: pointer;
    }

    /* Show hamburger on tablets and phones (<=1024px) */

        .menu-toggle {
            display: block;
        }

        .navbar {
            display: none;
            flex-direction: column;
            align-items: center;
            background: rgba(0, 0, 0, 0.9);
            position: absolute;
            top: 70px;
            left: 0;
            width: 100%;
            padding: 15px 0;
            gap: 10px;
            z-index: 99;
        }

        .navbar.active {
            display: flex;
        }
       
}








/* Mobile screens and smaller (<= 600px) */
@media (max-width: 600px) {
    .header {
        flex-direction: column;
        padding: 10px;
        text-align: center;
    }

    .navbar {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-top: 10px;
    }

    .navbar a {
        font-size: 14px;
        margin-left: 0;
    }

    .home-content {
        padding-top: 100px; /* space for fixed header */
    }

    .mu{
        text-align: left;
    }

    .wave{
        font-size: 50px;
    }

    .home-content .mu {
        font-size: 26px;
        padding: 0;
    }

    .largetxt {
        font-size: 16px;
        width: 100%;
        padding: 0;
    }

    .caption {
        font-size: 14px;
        width: 100%;
        padding: 0;
    }

    .home-img .glowing-circle{
        display: none;
    }

    .home-img {
        display: none;
    }

    .left{
        width: unset;
        padding-right: unset;
    }

    .right{
        display: none;
    }
    .cards-container {
        justify-self: center;
        gap: 20px;
        max-width: 80%;
        pointer-events: none;
    }
 
    .content-wrapper{
        justify-self: center;
        gap: 20px;
    }

    .card, .bottom-card {
        width: 100%;
        padding: 15px;
        text-align: left;
    }

    .holographic-container {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        width: 100%;
        padding-bottom: 65px;
        margin-top: 0px;
        justify-self: center;
        pointer-events: none;
    }


    

  /* Ensure the holographic-card doesn’t stretch fully */
  .holographic-card {
    max-width: 300px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    display: block; /* instead of flex */
  }

  /* bottom-card takes full width inside holographic-card but with padding */
  .bottom-card {
    width: 100%;
    margin: 0 auto;
    padding: 15px;
    box-sizing: border-box;
  }


    .footer {
        position: static;
        padding: 10px;
    }
    
    .glow-on-scroll {
        box-shadow: 0 0 20px #00FF00 !important;
        transform: scale(1.15);
        transition: all 0.5s ease;
        pointer-events: none
    }

        /* Default: hide hamburger on desktop */
    .menu-toggle {
        display: none;
        margin-left: auto;
        font-size: 28px;
        color: white;
        cursor: pointer;
    }

    /* Show hamburger on tablets and phones (<=1024px) */

        .menu-toggle {
            display: block;
        }

        .navbar {
            display: none;
            flex-direction: column;
            align-items: center;
            background: rgba(0, 0, 0, 0.9);
            position: absolute;
            top: 70px;
            left: 0;
            width: 100%;
            padding: 15px 0;
            gap: 10px;
            z-index: 99;
        }

        .navbar.active {
            display: flex;
        }
  
        .holographic-card:hover {
            transform: none; 
            box-shadow: none
        }


        .footer{
            font-size: 14px;
        }
}

