/* GLOBAL */

body{
    background: #050505;
    color: white;

    font-family: "Segoe UI", sans-serif;

    overflow-x: hidden;
}



/* NAVBAR */

.custom-navbar{
    background: rgba(0,0,0,0.45);

    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(255,255,255,0.04);

    padding: 12px 0;

    transition: 0.3s;

    z-index: 999;
}


/* LOGO */

.navbar-logo{
    width: 46px;
    height: 46px;

    object-fit: contain;
}


/* TITLE */

.navbar-title{
    font-size: 1.25rem;

    font-weight: 800;

    letter-spacing: 1px;

    color: white;
}


/* SUBTITLE */

.navbar-subtitle{
    color: rgba(255,255,255,0.5);

    font-size: 0.72rem;

    letter-spacing: 1px;
}


/* LINKS */

.custom-nav-link{
    color: rgba(255,255,255,0.72) !important;

    margin-left: 24px;

    font-weight: 500;

    transition: 0.3s;

    position: relative;
}


/* HOVER */

.custom-nav-link:hover{
    color: #63d8ff !important;
}


/* ACTIVE */

.custom-nav-link.active{
    color: white !important;
}


/* UNDERLINE */

.custom-nav-link::after{
    content: "";

    position: absolute;

    left: 0;
    bottom: -6px;

    width: 0%;
    height: 2px;

    background: #63d8ff;

    transition: 0.3s;
}

.custom-nav-link:hover::after{
    width: 100%;
}


/* BUTTON */

.navbar-btn{
    background: #63d8ff;

    color: black;

    border-radius: 12px;

    padding: 10px 22px;

    font-weight: 700;

    transition: 0.3s;
}

.navbar-btn:hover{
    background: #8fe7ff;

    transform: translateY(-3px);
}



/* HERO SECTION */

.hero-section{
    position: relative;

    min-height: 100vh;

    overflow: hidden;

    display: flex;
    align-items: center;
}


/* BACKGROUND */

.hero-bg{
    position: absolute;
    inset: 0;

    background-image:
        url("https://images.unsplash.com/photo-1524661135-423995f22d0b");

    background-size: cover;
    background-position: center;

    filter: brightness(0.12);

    transform: scale(1.05);
}


/* OVERLAY */

.hero-overlay{
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.95) 15%,
            rgba(0,0,0,0.7) 55%,
            rgba(0,0,0,0.4) 100%
        );
}


/* CONTENT */

.hero-container{
    position: relative;
    z-index: 5;

    max-width: 1320px;
}


/* TAG */

.hero-tag{
    display: inline-flex;
    align-items: center;

    gap: 10px;

    background: rgba(99,216,255,0.08);

    border: 1px solid rgba(99,216,255,0.2);

    color: #63d8ff;

    padding: 10px 18px;

    border-radius: 50px;

    margin-bottom: 30px;

    font-size: 0.92rem;

    font-weight: 600;
}


/* TAG DOT */

.hero-tag-dot{
    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #63d8ff;

    box-shadow:
        0 0 12px #63d8ff;
}


/* TITLE */

.hero-title{
    font-size: 3.9rem;

    font-weight: 800;

    line-height: 1.05;

    margin-bottom: 20px;

    max-width: 650px;
}


/* HIGHLIGHT */

.hero-title span{
    color: #63d8ff;

    text-shadow:
        0 0 20px rgba(99,216,255,0.25);
}


/* DESCRIPTION */

.hero-description{
    font-size: 1rem;

    line-height: 1.8;

    color: rgba(255,255,255,0.68);

    max-width: 540px;

    margin-bottom: 35px;
}


/* BUTTONS */

.hero-buttons{
    display: flex;

    gap: 14px;

    margin-bottom: 40px;

    flex-wrap: wrap;
}


/* PRIMARY BUTTON */

.hero-btn-primary{
    background: #63d8ff;

    color: black;

    border-radius: 14px;

    padding: 13px 26px;

    font-weight: 700;

    transition: 0.3s;
}

.hero-btn-primary:hover{
    background: #89e6ff;

    transform: translateY(-4px);
}


/* SECONDARY BUTTON */

.hero-btn-secondary{
    border: 1px solid rgba(255,255,255,0.15);

    color: white;

    border-radius: 14px;

    padding: 13px 26px;

    font-weight: 600;

    transition: 0.3s;
}

.hero-btn-secondary:hover{
    background: rgba(255,255,255,0.08);

    color: white;

    transform: translateY(-4px);
}


/* STATS */

.hero-stats{
    display: flex;

    gap: 40px;

    flex-wrap: wrap;
}


/* SINGLE STAT */

.hero-stat h2{
    font-size: 2.7rem;

    font-weight: 800;

    margin-bottom: 4px;
}

.hero-stat p{
    color: rgba(255,255,255,0.65);

    font-size: 0.95rem;
}


/* RIGHT SIDE */

.hero-image-wrapper{
    display: flex;
    justify-content: center;
}


/* TRUCK IMAGE */

.hero-truck{
    width: 100%;

    max-width: 520px;

    animation: floatTruck 5s ease-in-out infinite;

    filter:
        drop-shadow(0 0 30px rgba(99,216,255,0.16));

    transform: translateX(10px);
}


/* FLOAT */

@keyframes floatTruck{

    0%{
        transform: translateX(10px) translateY(0px);
    }

    50%{
        transform: translateX(10px) translateY(-14px);
    }

    100%{
        transform: translateX(10px) translateY(0px);
    }

}


/* STATS SECTION */

.stats-section{
    position: relative;

    padding: 90px 0;

    background:
        linear-gradient(
            to bottom,
            #050505,
            #0a0a0a
        );
}


/* WRAPPER */

.stats-wrapper{
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(240px, 1fr));

    gap: 25px;
}


/* CARD */

.stats-card{
    position: relative;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.05);

    border-radius: 24px;

    padding: 35px 30px;

    transition: 0.35s;

    overflow: hidden;

    backdrop-filter: blur(12px);
}


/* TOP GLOW */

.stats-card::before{
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background: #63d8ff;

    opacity: 0;

    transition: 0.35s;
}


/* HOVER */

.stats-card:hover{
    transform: translateY(-8px);

    border-color: rgba(99,216,255,0.18);

    background: rgba(255,255,255,0.05);

    box-shadow:
        0 0 30px rgba(99,216,255,0.08);
}

.stats-card:hover::before{
    opacity: 1;
}


/* ICON */

.stats-icon{
    font-size: 2rem;

    margin-bottom: 20px;
}


/* NUMBER */

.stats-card h2{
    font-size: 2.7rem;

    font-weight: 800;

    margin-bottom: 10px;

    color: white;
}


/* TEXT */

.stats-card p{
    color: rgba(255,255,255,0.62);

    font-size: 1rem;

    margin: 0;
}


/* MOBILE */

@media(max-width: 991px){

    .stats-section{
        padding: 70px 0;
    }

    .stats-card{
        padding: 30px 25px;
    }

    .stats-card h2{
        font-size: 2.2rem;
    }

}
/* SECTION TITLES */

section h2{
    font-size: 3rem;

    font-weight: 800;
}


/* FORM */

.form-control{
    background: #0d0d0d;

    border: 1px solid rgba(255,255,255,0.08);

    color: white;

    padding: 15px;
}

.form-control:focus{
    background: #111;

    color: white;

    border-color: #63d8ff;

    box-shadow:
        0 0 15px rgba(99,216,255,0.15);
}


/* FOOTER */

footer{
    border-top: 1px solid rgba(255,255,255,0.05);
}

footer a{
    transition: 0.3s;
}

footer a:hover{
    color: #63d8ff !important;
}


/* MOBILE */

@media(max-width: 991px){

    .hero-title{
        font-size: 3rem;
    }

    .hero-description{
        font-size: 1rem;
    }

    .hero-buttons{
        flex-wrap: wrap;
    }

    .hero-stats{
        gap: 28px;
    }

    .hero-stat h2{
        font-size: 2.2rem;
    }

    .hero-image-wrapper{
        margin-top: 50px;
    }

    .hero-truck{
        max-width: 400px;

        transform: none;
    }

    .custom-nav-link{
        margin-left: 0;

        margin-top: 12px;
    }

    .navbar-btn{
        width: 100%;

        text-align: center;
    }

}


/* COMMUNITY SECTION */

.community-section{
    position: relative;

    padding: 110px 0;

    background:
        linear-gradient(
            to bottom,
            #050505,
            #0a0a0a
        );
}


/* HEADING */

.section-heading{
    max-width: 750px;

    margin: auto auto 70px;
}


/* TAG */

.section-tag{
    display: inline-block;

    color: #63d8ff;

    background: rgba(99,216,255,0.08);

    border: 1px solid rgba(99,216,255,0.15);

    padding: 10px 18px;

    border-radius: 50px;

    font-size: 0.85rem;

    font-weight: 600;

    letter-spacing: 1px;

    margin-bottom: 20px;
}


/* TITLE */

.section-heading h2{
    font-size: 3rem;

    font-weight: 800;

    margin-bottom: 20px;
}


/* DESCRIPTION */

.section-heading p{
    color: rgba(255,255,255,0.65);

    line-height: 1.8;

    font-size: 1rem;
}


/* CARD */

.community-card{
    display: block;

    height: 100%;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.05);

    border-radius: 24px;

    padding: 35px 30px;

    text-decoration: none;

    transition: 0.35s;

    color: white;

    position: relative;

    overflow: hidden;
}


/* HOVER */

.community-card:hover{
    transform: translateY(-10px);

    border-color: rgba(99,216,255,0.18);

    background: rgba(255,255,255,0.05);

    box-shadow:
        0 0 30px rgba(99,216,255,0.08);

    color: white;
}


/* ICON */

.community-icon{
    font-size: 2.5rem;

    margin-bottom: 25px;
}


/* CARD TITLE */

.community-card h3{
    font-size: 1.5rem;

    font-weight: 700;

    margin-bottom: 15px;
}


/* CARD TEXT */

.community-card p{
    color: rgba(255,255,255,0.65);

    line-height: 1.7;

    margin-bottom: 25px;
}


/* LINK */

.community-link{
    color: #63d8ff;

    font-weight: 600;

    font-size: 0.95rem;
}


/* MOBILE */

@media(max-width: 991px){

    .community-section{
        padding: 80px 0;
    }

    .section-heading h2{
        font-size: 2.3rem;
    }

}


/* ABOUT SECTION */

.about-section{
    position: relative;

    padding: 120px 0;

    background:
        linear-gradient(
            to bottom,
            #050505,
            #090909
        );
}


/* IMAGE WRAPPER */

.about-image-wrapper{
    position: relative;

    display: flex;
    justify-content: center;
}


/* IMAGE */

.about-image{
    width: 100%;

    max-width: 520px;

    filter:
        drop-shadow(0 0 40px rgba(99,216,255,0.12));
}


/* TAG */

.about-tag{
    display: inline-block;

    background: rgba(99,216,255,0.08);

    border: 1px solid rgba(99,216,255,0.15);

    color: #63d8ff;

    padding: 10px 18px;

    border-radius: 50px;

    font-size: 0.85rem;

    font-weight: 600;

    letter-spacing: 1px;

    margin-bottom: 25px;
}


/* TITLE */

.about-title{
    font-size: 3.3rem;

    font-weight: 800;

    line-height: 1.15;

    margin-bottom: 25px;
}


/* HIGHLIGHT */

.about-title span{
    color: #63d8ff;

    text-shadow:
        0 0 20px rgba(99,216,255,0.2);
}


/* DESCRIPTION */

.about-description,
.about-description-secondary{

    color: rgba(255,255,255,0.68);

    line-height: 1.9;

    font-size: 1rem;
}

.about-description{
    margin-bottom: 18px;
}

.about-description-secondary{
    margin-bottom: 40px;
}


/* FEATURES */

.about-features{
    display: flex;

    flex-direction: column;

    gap: 25px;
}


/* FEATURE */

.about-feature{
    display: flex;

    gap: 20px;

    align-items: flex-start;
}


/* ICON */

.about-feature-icon{
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: rgba(99,216,255,0.08);

    border: 1px solid rgba(99,216,255,0.12);

    font-size: 1.4rem;

    flex-shrink: 0;
}


/* FEATURE TITLE */

.about-feature h4{
    font-size: 1.2rem;

    font-weight: 700;

    margin-bottom: 8px;
}


/* FEATURE TEXT */

.about-feature p{
    color: rgba(255,255,255,0.62);

    margin: 0;

    line-height: 1.7;
}


/* MOBILE */

@media(max-width: 991px){

    .about-section{
        padding: 90px 0;
    }

    .about-title{
        font-size: 2.5rem;
    }

    .about-image{
        max-width: 380px;
    }

}

/* RECRUITMENT SECTION */

.recruitment-section{
    position: relative;

    padding: 120px 0;

    background:
        linear-gradient(
            to bottom,
            #090909,
            #050505
        );
}


/* HEADING */

.recruitment-heading{
    max-width: 760px;

    margin: auto auto 70px;
}


/* TAG */

.recruitment-tag{
    display: inline-block;

    background: rgba(99,216,255,0.08);

    border: 1px solid rgba(99,216,255,0.15);

    color: #63d8ff;

    padding: 10px 18px;

    border-radius: 50px;

    font-size: 0.85rem;

    font-weight: 600;

    letter-spacing: 1px;

    margin-bottom: 20px;
}


/* TITLE */

.recruitment-heading h2{
    font-size: 3rem;

    font-weight: 800;

    margin-bottom: 20px;
}


/* DESCRIPTION */

.recruitment-heading p{
    color: rgba(255,255,255,0.65);

    line-height: 1.8;

    font-size: 1rem;
}


/* CARD */

.recruitment-card{
    position: relative;

    height: 100%;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.05);

    border-radius: 28px;

    padding: 40px;

    overflow: hidden;

    transition: 0.35s;
}


/* HOVER */

.recruitment-card:hover{
    transform: translateY(-10px);

    border-color: rgba(99,216,255,0.18);

    background: rgba(255,255,255,0.05);

    box-shadow:
        0 0 30px rgba(99,216,255,0.08);
}


/* ICON */

.recruitment-icon{
    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 20px;

    background: rgba(99,216,255,0.08);

    border: 1px solid rgba(99,216,255,0.15);

    font-size: 2rem;

    margin-bottom: 25px;
}


/* TITLE */

.recruitment-card h3{
    font-size: 2rem;

    font-weight: 700;

    margin-bottom: 18px;
}


/* TEXT */

.recruitment-card p{
    color: rgba(255,255,255,0.68);

    line-height: 1.8;

    margin-bottom: 30px;
}


/* FEATURES */

.recruitment-features{
    display: flex;

    flex-direction: column;

    gap: 15px;

    margin-bottom: 35px;
}


/* SINGLE FEATURE */

.recruitment-feature{
    color: rgba(255,255,255,0.78);

    font-size: 0.95rem;
}


/* BUTTON */

.recruitment-btn{
    background: #63d8ff;

    color: black;

    padding: 14px 28px;

    border-radius: 14px;

    font-weight: 700;

    transition: 0.3s;
}

.recruitment-btn:hover{
    background: #89e6ff;

    transform: translateY(-4px);
}


/* MOBILE */

@media(max-width: 991px){

    .recruitment-section{
        padding: 90px 0;
    }

    .recruitment-heading h2{
        font-size: 2.4rem;
    }

    .recruitment-card{
        padding: 32px;
    }

}

/* FAQ SECTION */

.faq-section{
    position: relative;

    padding: 120px 0;

    background:
        linear-gradient(
            to bottom,
            #050505,
            #090909
        );
}


/* HEADING */

.faq-heading{
    max-width: 760px;

    margin: auto auto 70px;
}


/* TAG */

.faq-tag{
    display: inline-block;

    background: rgba(99,216,255,0.08);

    border: 1px solid rgba(99,216,255,0.15);

    color: #63d8ff;

    padding: 10px 18px;

    border-radius: 50px;

    font-size: 0.85rem;

    font-weight: 600;

    letter-spacing: 1px;

    margin-bottom: 20px;
}


/* TITLE */

.faq-heading h2{
    font-size: 3rem;

    font-weight: 800;

    margin-bottom: 20px;
}


/* DESCRIPTION */

.faq-heading p{
    color: rgba(255,255,255,0.65);

    line-height: 1.8;
}


/* ACCORDION */

.faq-item{
    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.05);

    border-radius: 20px !important;

    overflow: hidden;

    margin-bottom: 18px;
}


/* BUTTON */

.faq-button{
    background: transparent !important;

    color: white !important;

    box-shadow: none !important;

    padding: 24px 28px;

    font-weight: 600;

    font-size: 1.05rem;
}


/* ACTIVE BUTTON */

.faq-button:not(.collapsed){
    color: #63d8ff !important;
}


/* ICON */

.faq-button::after{
    filter: invert(1);
}


/* BODY */

.faq-body{
    color: rgba(255,255,255,0.7);

    line-height: 1.8;

    padding: 0 28px 28px;
}


/* MOBILE */

@media(max-width: 991px){

    .faq-section{
        padding: 90px 0;
    }

    .faq-heading h2{
        font-size: 2.4rem;
    }

    .faq-button{
        font-size: 1rem;
    }

}

/* CONTACT SECTION */

.contact-section{
    position: relative;

    padding: 120px 0;

    background:
        linear-gradient(
            to bottom,
            #090909,
            #050505
        );
}


/* HEADING */

.contact-heading{
    max-width: 760px;

    margin: auto auto 70px;
}


/* TAG */

.contact-tag{
    display: inline-block;

    background: rgba(99,216,255,0.08);

    border: 1px solid rgba(99,216,255,0.15);

    color: #63d8ff;

    padding: 10px 18px;

    border-radius: 50px;

    font-size: 0.85rem;

    font-weight: 600;

    letter-spacing: 1px;

    margin-bottom: 20px;
}


/* TITLE */

.contact-heading h2{
    font-size: 3rem;

    font-weight: 800;

    margin-bottom: 20px;
}


/* DESCRIPTION */

.contact-heading p{
    color: rgba(255,255,255,0.65);

    line-height: 1.8;
}


/* WRAPPER */

.contact-wrapper{
    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.05);

    border-radius: 30px;

    padding: 50px;
}


/* INFO */

.contact-info{
    display: flex;

    flex-direction: column;

    gap: 30px;
}


/* ITEM */

.contact-info-item{
    display: flex;

    gap: 20px;
}


/* ICON */

.contact-icon{
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: rgba(99,216,255,0.08);

    border: 1px solid rgba(99,216,255,0.12);

    font-size: 1.5rem;

    flex-shrink: 0;
}


/* TITLE */

.contact-info-item h4{
    font-size: 1.2rem;

    font-weight: 700;

    margin-bottom: 8px;
}


/* TEXT */

.contact-info-item p{
    color: rgba(255,255,255,0.62);

    line-height: 1.7;

    margin: 0;
}


/* FORM */

.contact-form{
    width: 100%;
}


/* INPUT */

.custom-input{
    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.08);

    color: white;

    padding: 16px 20px;

    border-radius: 16px;

    transition: 0.3s;
}


/* PLACEHOLDER */

.custom-input::placeholder{
    color: rgba(255,255,255,0.4);
}


/* FOCUS */

.custom-input:focus{
    background: rgba(255,255,255,0.04);

    border-color: rgba(99,216,255,0.3);

    box-shadow:
        0 0 20px rgba(99,216,255,0.08);

    color: white;
}


/* BUTTON */

.contact-btn{
    background: #63d8ff;

    color: black;

    padding: 15px 30px;

    border-radius: 14px;

    font-weight: 700;

    transition: 0.3s;
}

.contact-btn:hover{
    background: #89e6ff;

    transform: translateY(-4px);
}


/* MOBILE */

@media(max-width: 991px){

    .contact-section{
        padding: 90px 0;
    }

    .contact-heading h2{
        font-size: 2.4rem;
    }

    .contact-wrapper{
        padding: 35px;
    }

}

/* FOOTER */

.footer-section{
    position: relative;

    padding: 100px 0 30px;

    background:
        linear-gradient(
            to bottom,
            #050505,
            #020202
        );

    border-top: 1px solid rgba(255,255,255,0.05);
}


/* LOGO */

.footer-logo{
    width: 60px;
    height: 60px;

    object-fit: contain;
}


/* TITLE */

.footer-title{
    font-size: 1.5rem;

    font-weight: 800;

    margin-bottom: 3px;
}


/* SUBTITLE */

.footer-subtitle{
    color: rgba(255,255,255,0.5);

    margin: 0;

    font-size: 0.85rem;
}


/* DESCRIPTION */

.footer-description{
    color: rgba(255,255,255,0.62);

    line-height: 1.8;

    margin-bottom: 30px;

    max-width: 380px;
}


/* SOCIALS */

.footer-socials{
    display: flex;

    gap: 14px;
}


/* SOCIAL ICON */

.footer-socials a{
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.06);

    color: white;

    text-decoration: none;

    transition: 0.3s;

    font-size: 1.1rem;
}


/* HOVER */

.footer-socials a:hover{
    background: rgba(99,216,255,0.12);

    border-color: rgba(99,216,255,0.2);

    color: #63d8ff;

    transform: translateY(-4px);
}


/* HEADING */

.footer-heading{
    font-size: 1.15rem;

    font-weight: 700;

    margin-bottom: 28px;
}


/* LINKS */

.footer-links{
    list-style: none;

    padding: 0;

    margin: 0;
}

.footer-links li{
    margin-bottom: 14px;
}

.footer-links a{
    color: rgba(255,255,255,0.62);

    text-decoration: none;

    transition: 0.3s;
}

.footer-links a:hover{
    color: #63d8ff;

    padding-left: 5px;
}


/* CONTACT */

.footer-contact p{
    color: rgba(255,255,255,0.62);

    margin-bottom: 16px;

    line-height: 1.7;
}


/* BOTTOM */

.footer-bottom{
    margin-top: 70px;

    padding-top: 25px;

    border-top: 1px solid rgba(255,255,255,0.05);

    display: flex;

    justify-content: space-between;

    flex-wrap: wrap;

    gap: 10px;
}


/* BOTTOM TEXT */

.footer-bottom p{
    color: rgba(255,255,255,0.45);

    margin: 0;

    font-size: 0.92rem;
}


/* MOBILE */

@media(max-width: 991px){

    .footer-section{
        padding: 80px 0 25px;
    }

    .footer-bottom{
        flex-direction: column;

        text-align: center;
    }

}


html{
    scroll-behavior: smooth;
}

body{
    font-family: "Inter", sans-serif;

    overflow-x: hidden;
}


/* PAGE LOADER */

#page-loader{
    position: fixed;

    inset: 0;

    background: #050505;

    z-index: 99999;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: 0.5s ease;
}


/* HIDE */

#page-loader.hide{
    opacity: 0;

    visibility: hidden;
}


/* CONTENT */

.loader-content{
    text-align: center;
}


/* LOGO */

.loader-logo{
    width: 90px;

    margin-bottom: 25px;

    animation: pulse 2s infinite;
}


/* SPINNER */

.loader-spinner{
    width: 45px;
    height: 45px;

    border-radius: 50%;

    border: 3px solid rgba(255,255,255,0.08);

    border-top-color: #63d8ff;

    margin: auto;

    animation: spin 0.8s linear infinite;
}


/* SPIN */

@keyframes spin{

    to{
        transform: rotate(360deg);
    }

}


/* LOGO ANIMATION */

@keyframes pulse{

    0%{
        transform: scale(1);
        opacity: 1;
    }

    50%{
        transform: scale(1.08);
        opacity: 0.8;
    }

    100%{
        transform: scale(1);
        opacity: 1;
    }

}

/* ABOUT BUTTONS */

.about-buttons{
    display: flex;

    gap: 16px;

    margin-top: 40px;

    flex-wrap: wrap;
}


/* PRIMARY BUTTON */

.about-btn-primary{
    background: #63d8ff;

    color: black;

    padding: 14px 30px;

    border-radius: 14px;

    font-weight: 700;

    transition: 0.3s;

    text-decoration: none;
}

.about-btn-primary:hover{
    background: #89e6ff;

    transform: translateY(-4px);

    color: black;
}


/* SECONDARY BUTTON */

.about-btn-secondary{
    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.08);

    color: white;

    padding: 14px 30px;

    border-radius: 14px;

    font-weight: 600;

    transition: 0.3s;

    text-decoration: none;
}

.about-btn-secondary:hover{
    background: rgba(255,255,255,0.08);

    transform: translateY(-4px);

    color: white;
}


/* DISCORD WIDGET */

.discord-widget{

    overflow: hidden;

    border-radius: 18px;

    border: 1px solid rgba(255,255,255,0.08);

    background: rgba(255,255,255,0.03);

}

.discord-widget iframe{

    display: block;

    width: 100%;

    border: none;

}


/* DISCORD SECTION */

.discord-section{
    padding: 100px 0;

    background:
        linear-gradient(
            180deg,
            #0b0b0b,
            #050505
        );
}

.discord-tag{
    color: #63d8ff;

    font-weight: 600;

    letter-spacing: 2px;
}

.discord-title{
    font-size: 3rem;

    font-weight: 800;

    margin: 20px 0;
}

.discord-text{
    color: rgba(255,255,255,0.7);

    line-height: 1.9;

    margin-bottom: 30px;
}

.discord-btn{
    background: #5865F2;

    color: white;

    padding: 14px 28px;

    border-radius: 14px;

    font-weight: 700;
}

.discord-btn:hover{
    color: white;

    transform: translateY(-3px);
}

.discord-widget-card{
    border-radius: 24px;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}


/* APPLICATION SECTIONS */
.application-steps {
    margin-top: 1.5rem;
    text-align: left;
}

.application-steps h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* VIDEO CONTAINER */
.application-video {
    margin-top: 1.5rem;
}

.application-video h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.application-video .ratio {
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.application-video iframe {
    border: none;
}

/* BETTER FEATURE ITEMS */
.recruitment-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s ease;
}

.recruitment-feature:hover {
    transform: translateX(5px);
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.12);
}

/* APPLICATION BUTTON */
.recruitment-btn {
    width: 100%;
    margin-top: 1.5rem;
    font-weight: 600;
    padding: 0.85rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.recruitment-btn:hover {
    transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 768px) {
    .application-steps h5,
    .application-video h5 {
        font-size: 0.95rem;
    }

    .recruitment-feature {
        padding: 0.65rem 0.85rem;
        font-size: 0.9rem;
    }
}