
/* ---------RESETS--------- */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    border: 0;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
    scroll-behavior: smooth;
    list-style: none;
}

html {
    font-size: 62.5%;
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.6rem;
    overflow-x: hidden;
    line-height: 1.4;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

article,
aside,
footer,
header,
nav,
section,
time {
    display: block;
}
a {
    text-decoration: none;
}
img {
    max-width: 100%;
}

/* FOR REMOVING THE BLANK SPACE ON THE SIDE  */
@media screen and (max-width: 1024px) {
    html,body{
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }
}

@media screen and (max-width: 500px) {
    html,body{
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }
}

/*------------CONTAINER/GRID-------------*/
.container{
max-width: 120rem;
margin: 0 auto;
padding: 1rem 1.5rem;
}

/* COLORS  */
:root {
    --orange: #F15932;
    --yellow: #fcf531;
    --cyan: #00a6b4;
    --red: #ce3e4b;
    --light: #ffffff;
    --dark: #191919;
}

/* BUTTON CSS */
.btn{
    padding: 1rem 1.5rem;
    display: inline-block;
    font-size: 1.5rem;
    border-radius: 10px;
} 

.main{
    color: var(--yellow);
    background-color: transparent;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    border: 2px solid var(--yellow);
    transition: .5s ease-in;
}

.main:hover{
    background-color: var(--yellow);
    color: var(--light);
    border: 2px solid var(--yellow);
    transition: .5s ease-in;
}

.mainWhite{
    color: var(--dark);
    background-color: var(--light);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    border: 2px solid var(--light);
    transition: .5s ease-in;
}

.mainWhite:hover{
    background-color: transparent;
    color: var(--light);
    border: 2px solid var(--light);
    transition: .5s ease-in;
}
.mainCyan{
    color: var(--light);
    background-color: var(--dark);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    border: 2px solid var(--dark);
    transition: .5s ease-in;
}

.mainCyan:hover{
    background-color: var(--cyan);
    color: var(--light);
    border: 2px solid var(--cyan);
    transition: .5s ease-in;
}



.happy-monkey{
    font-family: "Happy Monkey", system-ui;
    font-weight: 400;
    font-style: normal;
}



/* ===== BANNER SECTION ===== */

/* HEADER */
.banner-header-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid grey;
    padding: 1rem 0;
}

.banner-header-top-socials{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.banner-header-top-socials li a i{
    color: var(--cyan);
    font-size: 1.6rem
}

.banner-header-top-text{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.banner-header-top-text li a{
    color: var(--light);
    font-size: 1.6rem;
    font-weight: 700;
}

.banner-header-bot{
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 2rem 0;
}

.banner-header-bot-logo img{
    width: 25rem;
}

.banner-header-bot-nav{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
}

.banner-header-bot-nav li a{
    font-size: 1.8rem;
    color: var(--light);
    font-weight: 700;
}

.banner-header-bot-nav li a:hover{
    color: var(--yellow);
}


/* BANNER */
.banner{
    background-image: url('./img/banner-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    position: relative;
}

.toggle__menu{
    display: hidden;
}

.banner-bg{
    background-color: rgba(0, 0, 0, 0.7);
    padding-bottom: 20rem;
}

.banner-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;

    padding-top: 5rem;
}

.banner-wrapper h3{
    color: var(--orange);
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;

    font-family: "Happy Monkey", system-ui;
    font-style: normal;
}

.banner-wrapper h3 span{
    display: block;
}

.banner-wrapper h3 .cyantxt{
    color: var(--cyan);
}

.banner-wrapper h3 .yellowtxt{
    color: var(--yellow);
}

.banner-wrapper p{
    text-align: center;
    width: 50rem;
    margin: 0 auto;
    color: var(--light);
    font-size: 1.4rem;
    line-height: 1.2;
}


@media screen and (max-width: 500px){
    .banner-bg{
        padding-bottom: 5rem;
    }

    .banner-header-bot-logo img{
        width: 15rem;
    }

    .banner-header-bot-nav{
        background: var(--dark);
        position: absolute;
        top: 15rem;
        overflow: hidden;
        max-height: 0;
        right: 0;
        width: 100%;
        height: fit-content;
        transition: .5s ease;
        z-index: 3;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: start;
    }

    .banner-header-bot-nav.open{
        max-height: 45rem;
        transition: .5s ease;
    }

    .banner-header-bot-nav li:first-child{
        margin-top: 3rem;
    }

    .banner-header-bot-nav li:last-child{
        margin-bottom: 3rem;
    }

    .toggle__menu span{
        width: 3rem;
        height: .3rem;
        display: block;
        margin-top: .3rem;
        border-radius: 5rem;
        transition: .5s ease;
        background-color: var(--light);
    }

    .toggle__menu{
        display: block;
    }

    .toggle__menu.open span:first-child{
        transform: translate(0, 5px) rotate(225deg);
        transition: .5s ease;
    }

    .toggle__menu.open span:nth-child(2){
        opacity: 0;
        transition: .5s ease;
    }

    .toggle__menu.open span:last-child{
        transform: translate(0, -7px) rotate(-225deg);
        transition: .5s ease;
    }

    .toggle__menu:hover{
        cursor: pointer;
    }

    .banner-wrapper h3{
        font-size: 4rem;
    }
    
    .banner-wrapper p{
        width: fit-content;
    }

}



/* ===== ABOUT SECTION ===== */
.about{
    padding: 2rem 0;
    background-color: var(--light);
}

.about-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;

    margin-top: -15rem;
}


.about-cards{
    width: 40rem;
    height: 23rem;
    padding: 2.5rem;
}

.about-cards h3{
    color: var(--light);
    font-weight: 700;
    font-size: 4rem;
    margin-bottom: 1rem;
}

.about-cards p{
    color: var(--light);
    font-size: 1.4rem;
    text-align: justify;
}

.card-1{
    background-color: var(--orange);
}

.card-2{
    background-color: var(--cyan);
    width: 45rem;
    height: 26rem;

}

.card-3{
    background-color: #c9c325;
}

@media screen and (max-width: 500px){

    .about-wrapper{
        display: flex;
        flex-direction: column;
        margin-top: 0;
    }
    
    
    .about-cards{
        width: 100%;
    }

}


/* ===== VALUES SECTION ===== */
.values{
    padding: 3rem 0 ;
    background-color: var(--light);
}

.values-text h3{
    color: var(--dark);
    font-size: 3rem;
    font-weight: 700;
}

.values-text p{
    color: var(--dark);
    font-size: 1.6rem;
    width: 60rem;
}

.values-wrapper{
    margin-top: 5rem;
}

.values-top{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.values-bot{
    display: flex;
    justify-content: center;
    align-items: center;
}


.values-card{
    position: relative;
    width: 40rem;
    height: 45rem;
    padding: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.values-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 166, 180, .5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.values-card:hover::after {
    opacity: 1;
    cursor: pointer;
}

.values-card h3 {
    color: var(--light);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.values-card:hover h3 {
    opacity: 1;
}

.block-1 {
    background-image: url('./img/1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.block-2 {
    background-image: url('./img/2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.block-3 {
    background-image: url('./img/3.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.block-4 {
    background-image: url('./img/4.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.block-5 {
    background-image: url('./img/5.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.block-6 {
    background-image: url('./img/6.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


@media screen and (max-width: 500px){
    .values-text h3{
        text-align: center;
        font-size: 5rem;
    }
    
    .values-text p{
        width: fit-content;
        text-align: justify;
    }
    
    
    .values-top{
        display: flex;
        flex-direction: column;
    }
    
    .values-bot{
        display: flex;
        flex-direction: column;
    }
    
    .values-card{
        width: 100%;
    }

}



/* ===== PURPOSE SECTION ===== */
.purpose{
    padding: 3rem 0;
}

.purpose-logo{
    display: flex;
    justify-content: center;
}

.purpose-logo img{
    width: 80rem;
}

.purpose-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5rem;
}

.purpose-card{
    border-radius: 40px;
    background-color: var(--light);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    width: 56rem;
    height: 30rem;
    padding: 3rem;
}

.purpose-card:hover{
    background-color: rgba(0, 166, 180, .3);
    cursor: pointer;
}

.purpose-card-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.purpose-card-title h3{
    color: var(--dark);
    font-size: 3rem;
    font-weight: 700;
}

.purpose-card-title img{
    width: 7rem;
}

.purpose-card p{
    color: var(--dark);
    font-size: 1.5rem;
    text-align: justify;
}

@media screen and (max-width: 500px) {
    .purpose-wrapper{
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }
    
    .purpose-card{
        width: 100%;
    }
    
    .purpose-card:hover{
        background-color: rgba(0, 166, 180, .3);
        cursor: pointer;
    }
    
    .purpose-card-title{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
    }
    
    .purpose-card-title h3{
        color: var(--dark);
        font-size: 3rem;
        font-weight: 700;
    }
    
    .purpose-card-title img{
        width: 7rem;
    }
    
    .purpose-card p{
        color: var(--dark);
        font-size: 1.5rem;
        text-align: justify;
    }
    
}


/* ===== WHY SECTION ===== */
.why-card{
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.why-text h3{
    color: var(--dark);
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 2rem;
}

.why-text p{
    color: var(--dark);
    font-size: 1.5rem;
    width: 60rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.why-img img{
    width: 50rem;
}

.why-img{
    position: relative;
    overflow: hidden;
}

.why-1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 166, 180, .3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-1:hover::after {
    opacity: 1;
    cursor: pointer;
}

.why-2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(241, 89, 50, .3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-2:hover::after {
    opacity: 1;
    cursor: pointer;
}

@media screen and (max-width: 500px) {
    .why-card{
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    
    .why-text h3{
        text-align: center;
    }
    
    .why-text p{
        width: 100%;
        text-align: justify;
    }
    
    .why-img img{
        width: 100%;
    }
    
}


/* ===== ACADEMY SECTION ===== */
.academy{
    background-image: url('./img/academy.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.academy-title{
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.academy-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
    z-index: 1;
}

.academy-title h3{
    font-size: 12rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    font-weight:800;
    color: var(--light);
    text-align: center;

    position: relative;
    z-index: 2;
}

.academy-about{
    padding: 5rem 0;

    position: relative;
    overflow: hidden;
}

.academy-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(241, 89, 50, 0.9), rgba(0, 166, 180, 0.6)); /* Gradient from F15932 to 00a6b4 */
    z-index: 1;
}

.academy-about h3{
    color: var(--light);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;

    position: relative;
    z-index: 2;
}

.academy-about p{
    color: var(--light);
    font-size: 1.5rem;
    width: 50rem;
    line-height: 1.2;
    text-align: justify;

    position: relative;
    z-index: 2;
}

@media screen and (max-width: 500px) {

    .academy-title h3{
        font-size: 7rem;
        line-height: 1;
    }

    .academy-about p{
        width: 100%;
    }


}


/* ===== TRAINING SECTION ===== */
.training{
    background-image: url('./img/academy.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    position: relative;
    overflow: hidden;
}

.training::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9); /* Black overlay with 50% opacity */
    z-index: 1;
}

.training-title{
    color: var(--dark);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;

    position: relative;
    z-index: 2;
}

.training-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;

    position: relative;
    z-index: 2;
}

.training-text1 h3{
    color: var(--orange);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.training-text1 p{
    color: var(--dark);
    font-size: 1.5rem;
    line-height: 1.2;
    width: 50rem;
    margin-left: 2rem;
    text-align: justify;
}

.training-text2{
    margin-top: 3rem;
}

.training-text2 h3{
    color: var(--cyan);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.training-text2 p{
    color: var(--dark);
    font-size: 1.5rem;
    line-height: 1.2;
    width: 50rem;
    margin-left: 2rem;
    text-align: justify;
}

.training-img img{
    width: 40rem;
}

@media screen and (max-width: 500px){
    .training-title{
        font-size: 2.5rem;
        text-align: center;
    }
    
    .training-wrapper{
        display: flex;
        flex-direction: column;
    }
    
    .training-text1 h3{
        text-align: center;
    }
    
    .training-text1 p{
        width: fit-content;
    }

    .training-text2 h3{
        text-align: center;
    }
    
    .training-text2 p{
        width: fit-content;
    }
    
    .training-img img{
        width: 100%;
        margin-top: 3rem;
    }
}



/* ===== GOAL SECTION ===== */
.goal{
    padding: 3rem 0;
}

.goal-title{
    text-align: center;
    color: var(--dark);
}

.goal-title h3{
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.goal-title p{
    font-size: 1.6rem;
    width: 85rem;
    margin: 0 auto;
}

.goal-title h4{
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin: 5rem 0;
}

.goal-wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.goal-card{
    width: 50rem;
    height: 26rem;
    padding: 3rem;
}

.goal-card h3{
    color: var(--light);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.goal-card .goal-divide{
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 4rem;
    margin-left: 3rem;
}

.goal-card ul{
    margin-left: 3rem;
}

.goal-card ul li{
    list-style-type: disc;
    color: var(--light);
    font-size: 1.5rem;
}

.goal-orange{
    background-color: rgba(241, 89, 50, 0.8);
}
.goal-cyan{
    background-color: rgba(0, 166, 180, 0.8);
}
.goal-yellow{
    background-color: rgba(221, 214, 15, 0.799);
}
.goal-red{
    background-color: rgba(206, 62, 75, 0.8);
}

@media screen and (max-width: 500px) {
    
    .goal-title p{
        width: 100%;
        text-align: justify;
    }

    .goal-title h4{
        font-size: 3rem;
    }
    
    .goal-wrapper{
        display: flex;
    }

    .goal-card{
        width: 100%;
    }

}



/* ===== CONTACT SECTION ===== */
.contact{
    padding: 5rem 0;
    background-color: var(--light);
}

.contact-top{
    text-align: center;
}

.contact-top h4{
    color: var(--dark);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-top p{
    width: 70rem;
    margin: 0 auto;
}

.contact-form{
    width: 100%;
}

.form-group label{
    font-size: 1.5rem;
    font-weight: 700;
}

.form-group label span{
    color: red;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.name-fields {
    display: flex;
    gap: 10px;
}

input[type="text"],
textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

textarea {
    resize: vertical;
    height: 100px;
}

.submitBtn{
    width: 15rem;
    text-align: center;
}

@media screen and (max-width: 500px) {

    .contact{
        padding: 3rem 0;
    }
    
    .contact-top p{
        width: 100%;
    }

}



/* ===== LINKS SECTION ===== */
.links{
    padding: 3rem 0;

    background-image: url('./img/links-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    background-attachment: fixed;

    position: relative;
    overflow: hidden;
}

.links::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:  rgba(0, 0, 0, 0.95);
    z-index: 1;
}

.links-wrapper{
    position: relative;
    z-index: 2;
}

.links-top{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.links-top img{
    width: 40rem;
}

.links-top p{
    color: var(--light);
    font-size: 1.6rem;
    text-align: justify;
    width: 60rem;
}

.links-bottom{
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 10rem;
    margin-top: 5rem;
}

.links-1{
    width: 25rem;
}

.links-2{
    width: 30rem;
}

.links-1 h3{
    color: var(--light);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
}

.links-1 ul li a{
    color: var(--light);
    font-size: 1.7rem;
}

.links-1 ul li a:hover{
    color: var(--yellow);
}

.links-1 ul li{
    margin-bottom: 1rem;
}

.links-2 h3{
    color: var(--light);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
}

.links-2 ul li a{
    color: var(--light);
    font-size: 2rem;
}

.links-2 ul li{
    margin-bottom: 1rem;
}

.links-2 ul{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 2.5rem;
}

.links-2 h5{
    color: var(--light);
    font-size: 1.5rem;
    width: 25rem;
}

@media screen and (max-width: 500px) {
    
    .links-top{
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }

    .links-top img{
        width: 30rem;
    }

    .links-top p{
        font-size: 1.5rem;
        width: 100%;
    }
    
    .links-bottom{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5rem;
    }

    .links-1{
        width: 100%;
    }
    
    .links-2{
        width: 100%;
    }
    

}