@charset "utf-8";/* General Styles */
body {
    margin: 0;
    padding: 0;
    background-color: black;
    color: #76B900;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    overflow-x: hidden; /* Disable horizontal scrollbars */
	cursor: none; /* Hide default cursor */
}
:root::-webkit-scrollbar{
  display: none;
}
:root {
  scrollbar-width: none;
  -ms-overflow-style: none;
}/* Background Styles */
.background1 {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}
.background2 {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}
.background1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("bgc.png") center/cover no-repeat;
    filter: blur(5px);
    transition: opacity 0.5s ease; /* Smooth transition */
    z-index: -1;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-animation: slidein 100s;
        animation: slidein 100s;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-direction: alternate;
        animation-direction: alternate;              
}
@-webkit-keyframes slidein {
from {background-position: top; background-size:3000px; }
to {background-position: 0px 0px;background-size:2750px;}
}

@keyframes slidein {
from {background-position: top;background-size:3000px; }
to {background-position: 0px 0px;background-size:2750px;}

}
.background2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("bga.png") center/cover no-repeat;
    filter: blur(5px);
    transition: opacity 0.5s ease; /* Smooth transition */
    z-index: -1;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}/* Hide background image on scroll */
.scrolled .background::before {
    opacity: 0;
}/* Content Styles */
.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.wrapper {
  height: 20vh;
  /*This part is important for centering*/
  display: grid;
  place-items: center;
}
.title {
	width: 13ch;
    font-size: 48px;
    letter-spacing: 2px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px 40px;
	animation: typing 0.5s steps(8), blink .6s step-end infinite alternate;
	white-space: nowrap;
	overflow: hidden;
}
.branch{
	width: 14ch;
    font-size: 48px;
    letter-spacing: 2px;
    background-color: rgba(0, 0, 0, 0.5);
	padding: 20px 40px; /* Adjust padding as needed */
	animation: typing 0.5s steps(14), blink .6s step-end infinite alternate;
	white-space: nowrap;
	overflow: hidden;
}
@keyframes typing {
  from {
    width: 0
  }
}
    
@keyframes blink {
  50% {
    border-color: transparent
  }
}
.subtitle {
    font-size: 24px;
    margin-top: 20px;
}
iframe {
    margin-top: 40px;
}
.mainbutton {
        background-color: rgba(118, 185, 0, 0.5);
        font-family: "Bebas Neue", sans-serif;
        font-size: 32px;
        color: #76B900;
        border: none; /* Remove the border */
        padding: 10px 20px; /* Add padding to make the button more visible */
        outline: none; /* Remove default outline */
        cursor: pointer;
        border-radius: 5px; /* Add border-radius for rounded corners */
        box-shadow: 0 0 20px rgba(118, 185, 0, 0.8); /* Initial glow effect */
        transition: box-shadow 0.4s ease; /* Smooth transition for the glow effect */
	cursor: none;
    }
.mainbutton:hover {
    box-shadow: 0 0 40px rgba(162,255,0,1.00); /* Enhanced glow effect on hover */
	cursor: none;
}
a{
	cursor: none;
	background-color: rgba(118, 185, 0, 0.5);
    font-family: "Bebas Neue", sans-serif;
    font-size: 32px;
    color: #76B900;
    border: none; /* Remove the border */
    padding: 10px 20px; /* Add padding to make the button more visible */
    outline: none; /* Remove default outline */
    border-radius: 5px; /* Add border-radius for rounded corners */
    box-shadow: 0 0 20px rgba(118, 185, 0, 0.8); /* Initial glow effect */
    transition: box-shadow 0.4s ease; /* Smooth transition for the glow effect */
	text-decoration: none;
}
a:hover{
	cursor: none;
	box-shadow: 0 0 40px rgba(162,255,0,1.00);
}
.container {
    display: flex;
    justify-content: center;
}
.box {
    position: relative;
    width: 300px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid black;
	margin: auto;
	margin: 10px;
    z-index: 1;
}
.box::before {
    content: '';
    position: absolute;
    width: 88%;
    height: 140%;
    background-color: #76B900;
    animation: animate 14s linear infinite;
    z-index: 1;
}
.box::after {
    content: '';
    position: absolute;
    inset: 10px;
    background-color: #000000;
    border-radius: 16px;
    z-index: 1;
}
@keyframes animate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.inner-box {
    display: block;
    z-index: 2;
    padding: 20px;
    text-align: justify;
    text-align: center;
}
.custom-cursor {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-top: 20px solid transparent;
    border-right: 20px solid rgba(118, 185, 0, 0.9); /* Brighter default color */
    border-bottom: 20px solid rgba(118, 185, 0, 0.9);
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    transition: transform 0.4s ease;
    transform-origin: bottom center;
    transform: rotate(-65deg); /* Rotate the cursor to point towards southeast */
}

.custom-cursor::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(118, 185, 0, 0) 0%, rgba(118, 185, 0, 0.8) 100%);
    animation: pulse 1s infinite alternate; /* Adjust the pulse animation */
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}
