@import url('https://fonts.googleapis.com');

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
#intro-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black; /* Your black screen */
  z-index: 9999; /* Ensures it stays on top */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease; /* For a smooth fade-out */
}
#intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Makes it full screen */
}


header{
    z-index: 999;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 15px 200px;
    transition: 0.5s ease;
    backdrop-filter: blur(15px);  
}

header .brand{
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 1000;
    text-transform: uppercase;
    text-decoration: none;
    padding-right: 5px;
}

header .navigation{
    position: relative;
    display: flex;
    justify-content: space-between;
}

header .navigation .navigation-items a{
    position: relative;
    color: #ffffff;
    font-size: 0.8em;
    font-weight: 900;
    text-decoration: none;
    margin-left: 30px;
    transition: 0.3s ease;
}

header .navigation .navigation-items a:before{
    content: '';
    position: absolute;    
    background: #ffffff;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    transition: 0.3s ease;
}

header .navigation .navigation-items a:hover:before{    
    width: 100%;
}
section{
    padding: 100px 200px;
}

.home{
    position: relative;
    width: 100%;
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: #2696E9;
}

.home:before{
    z-index: 777;
    content: '';
    position: absolute;
    background: rgba(22, 200, 212, 0.3);
    width: 100%;
    height: 100%;
    top:0;
    left:0;
}
.home .content{
    z-index: 888;
    color: #ffffff;
    width: 70%;
    margin-top: 50px;
    display: none;
}
.home .content.active{
    display: block;

}

.home .content h1{
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 75px;
    margin-bottom: 40px;
}

.home .content h1 span{
    font-size: 2.1rem;
    font-weight: 600;
}

.home .content p{
    margin-bottom: 65px;
    font-weight: 500;
    color: yellow;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.home .content a{
    background: #ffffff;
    padding: 15px 35px;
    color: #13b4f4;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 2px;
    transition: 0.4s ease;

}

.home .content a:hover{
    
    color:#222;
    background: yellowgreen;
}

.home .media-icons{
    z-index: 999;
    position: absolute;
    right: 30px;
    display: flex;
    flex-direction: column;
    transition: 0.5s ease;
}

.home .media-icons a{
    color: #ffffff;
    font-size: 1.6em;
    transition: 0.7s ease-out;
}

.home .media-icons a:not(:last-child){
    margin-bottom: 20px;
}

.home .media-icons a:hover{
    transform: scale(1.3);
}

.home video{
    z-index: 000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
    object-fit: cover;
}

.home .video-slide{
    position: absolute;
    width: 100%;
    height: 100%;
    clip-path: circle(0% at 0 50%);
    transition: 2s ease;
}

.home .video-slide.active{
    clip-path: circle(150% at 0 50%);
    color: #38df1e;
}

.slider-navigation{
    z-index: 888;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(80px);
    margin-bottom: 12px;
}

.slider-navigation .nav-btn{
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
    transition: 0.3s ease;
}

.slider-navigation .nav-btn.active{
    background: #38df1e;
}

.slider-navigation .nav-btn:not(:last-child){
    margin-right: 20px;
}

.slider-navigation .nav-btn:hover{
    transform: scale(1.2);
}
.slider-arrow {
    z-index: 888;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #ffffff;
    font-size: 2.5rem;
    line-height: 1;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.left  { left: 30px; }
.slider-arrow.right { right: 30px; }

.footer {
    background: #111;
    color: #fff;
    padding: 60px 0 0;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 0 40px 40px;
    gap: 40px;
}

.footer-column {
    max-width: 300px;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 15px;
}

.footer-column p {
    color: #bbb;
    line-height: 1.6;
    font-size: 14px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #bbb;
    font-size: 14px;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: #00c9a7;
}

.footer-social a {
    color: #bbb;
    margin-right: 15px;
    font-size: 20px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #00c9a7;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    background: #0a0a0a;
    font-size: 14px;
    color: #888;
}

@media (max-width: 1040px) {
    .slider-arrow { width: 40px; height: 40px; font-size: 2rem; }
    .slider-arrow.left  { left: 10px; }
    .slider-arrow.right { right: 10px; }
}

@media (max-width: 1040px){
    header{
        padding: 12px 20px;
    }
    section{
        padding:100px 20px;
    }
    .home .media-icons{
        right: 15px;
    }
    header .navigation{
        display: none;
    }
    header .navigation.active{
        position: fixed;
        width:100%;
        height:100vh;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgba(1,1,1,0.5);
    }
    header .navigation .navigation-items a{
        color: #222;
        font-size: 1.2rem;
        margin:20px;
    }
    header .navigation .navigation-items a:before{
        background: #222;
        height:5px;
    }
    header .navigation.active .navigation-items{
        background: #fff;
        width: 600px;
        max-width: 600px;
        margin:20px;
        padding: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 5px;
        box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
    }
    .home{
        min-height: 100dvh;
    }

    .home video{
        object-position: center;
    }
    .menu-btn{
        background: url("https://d1oc8cgqbx2xxb.cloudfront.net/static/assets/menu.png")no-repeat;
        background-size: 30px;
        background-position: center;
        width:40px;
        height:40px;
        cursor: pointer;
        transition: 0.3s ease;
    }
    .menu-btn.active{
        z-index: 999;
        background: url(https://d1oc8cgqbx2xxb.cloudfront.net/static/assets/close.png)no-repeat;
        background-size: 25px;
        background-position: center;
        transition: 0.3s ease;
    }
}