* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    max-width: 1536px;
    margin: 0 auto;
    height: auto;
    padding: 0;
    background: linear-gradient(to right, #000021 -10%, #020253 50%, #000021 110%);
}



/****************************************************Header Section */
header {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: 15vh;
    width: 100vw;
    background: linear-gradient(to bottom, black, transparent);
    padding: 0 1.5vw;
    padding-top: 5px;
    box-sizing: border-box;
    z-index: 1000;
}

.tl-main-logo {
    height: 6vh;
}

#tl-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.uLine,
.bLine {
    width: 2vw;
    height: 3px;
    background-color: white;
    margin: 3px 0;
}

.bLine {
    width: 1.5vw;
}

#up-social-icons,
#bt-social-icons {
    display: flex;
    gap: 10px;
}

#up-social-icons img,
#bt-social-icons img {
    width: 2.25vw;
    padding-top: .5vh;
    cursor: pointer;
}


/****************************************************Menu Code */
#tl-menu-dropdown {
    position: absolute;
    top: 20%;
    right: 43%;
    background-color: #010343;
    color: #ffffff;
    padding: 1vw .5vw;
    border-radius: 8px;
    box-shadow: 0 0 10px 5px #ffffff;
    display: none;
    /* Hidden by default */
    z-index: 1500;
}

#tl-menu-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#tl-menu-dropdown li {
    padding: 2vh 1.5vw;
    cursor: pointer;
    font-family: sans-serif;
    font-weight: 600;
    text-align: center;
}

#tl-menu-dropdown li:hover {
    background-color: #4f53de;
}

#tl-menu-dropdown.visible {
    display: block;
}

.hidden {
    display: none;
}



/****************************************************Home Section */
#home {
    margin: 0;
    padding: 0;
    height: calc(100vh - 10vh);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 200;
}

#home-content {
    transform: translateY(5vh);
    color: white;
    font-family: 'Alfa Slab One', cursive;
    text-align: left;
}

.text-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.text-block .line1,
.text-block .line2 {
    font-size: 17vw;
    display: block;
    line-height: 1;
    text-shadow: -4px -8px 8px rgba(0, 0, 0, 0.7);
    /* Soft shadow */
}

.text-block .line1 {
    margin-bottom: -9vh;
}

.text-block .line2 {
    margin-left: 6vw;
}

.text-block .tm {
    font-size: 1rem;
    font-weight: 600;
    font-family: sans-serif;
    position: absolute;
    top: 30vh;
    right: -2vw;
}



/****************************************************Officer Section */
#officer {
    position: relative;
    width: 100%;
    z-index: 300;
}

#officer-img {
    display: block;
    width: 30%;
    margin: -22vh auto 0 auto;
}



/****************************************************Half Circle Container */
#Tagline {
    max-width: 100vw;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -22vh auto 0 auto;
    z-index: 250;
}

.half-circle1 {
    width: 100vw;
    height: 50vw;
    max-height: 100vh;
    background-color: #00001f;
    border: 3px solid rgb(8, 96, 183);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    box-shadow: inset 0 0 50px 20px #043bb7;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    z-index: 250;
}

/* Centered Text Inside Half Circle */
.half-circle1 .taglineText {
    text-align: center;
    color: #b1c7fa;
    font-family: 'Alfa Slab One', cursive;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.half-circle .taglineText span {
    display: block;
}

.TagL1 {
    font-size: 4vw;
    padding-right: 10vw;
    text-align: right;
    padding-top: 8vh;
    line-height: .6;
}

.TagL2 {
    font-size: 2vw;
}

.TagL3 {
    font-size: 8vw;
    padding-left: 10vw;
    margin-top: -20px;
}



/****************************************************Horizontal Division */
.h-division {
    position: relative;
    height: 2vw;
    width: 100%;
    background-color: #00011f;
    overflow: hidden;
    box-shadow: 0 0 10px 5px #ebf1ff;
    margin: -5vh auto 0 auto;
    z-index: 400;
}



/****************************************************Mission Division */
#mission {
    display: flex;
    width: 98%;
    box-sizing: border-box;
    flex-wrap: nowrap;
    margin-top: 10vh;
    margin-bottom: 13vh;
    overflow-x: hidden;
}

.mission-left {
    flex: 0 0 55%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    font-size: 0;
    box-sizing: border-box;
}

.mission-left-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    font-size: initial;
}

.mission-left-item img {
    display: block;
    height: 50vh;
    width: auto;
}

.our-text,
.mission-text {
    font-family: 'Alfa Slab One', cursive;
    font-size: 4vw;
    background: linear-gradient(to right, cyan, blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.our-text {
    transform: rotate(-90deg);
    margin-right: -2vw;
    align-self: flex-start;
    margin-top: 5vh;
}

.mission-text {
    padding-left: 5px;
    align-self: flex-end;
    margin-bottom: 5vh;
}

.mission-gif img {
    height: 50vh;
    max-width: 100%;
    object-fit: contain;
    opacity: 0.3;
}

.mission-right {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    overflow: hidden;
    padding-right: 2vw;
}

.mission-right p {
    font-family: sans-serif;
    font-size: 1.1rem;
    text-align: justify;
    line-height: 1.5;
    color: #bdd1fd;
    max-width: 100%;
    word-break: break-word;
    overflow-wrap: break-word;
    padding: 0 20px;
    box-sizing: border-box;
    text-indent: 4vw;
}

.mission-right p:nth-child(2){
    margin-top: 10px;
    margin-bottom: 10px;
}


/****************************************************Kid 1*/
#kid-1 {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    overflow: hidden;
    margin-top: 10vh;
    margin-bottom: 15vh;
    left: -4vw;
}

.img-kid1 {
    position: absolute;
    height: 85vh;
    left: 6vw;
    width: auto;
}


.kid-group1 {
    display: inline-block;
    position: absolute;
    top: -7vh;
    left: 19vw;
    text-align: left;
}

.kid-group1 p,
.kid-group2 p,
.kid-group3 p,
.kid-group4 p {
    font-family: 'Alfa Slab One', cursive;
    background: linear-gradient(to right, #005ab4 10%, #4bfff8 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.rebel-style1-3 {
    font-size: 4.5vw;
    padding-top: 20vh;
    padding-left: 12vw;
}

.age-style1-3 {
    font-size: 16vw;
    margin-top: -14vh;
}

.age-number-style1-3 {
    font-size: 7vw;
    margin-top: -7vh;
    padding-left: 23vw;
}

.years-style1-3 {
    font-size: 16vw;
    margin-top: -15vh;
    padding-left: 3vw;
}

@keyframes gradientShift {
    0% {
        background-position: 200% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.arrow-group-master {
    display: inline-block;
    vertical-align: middle;
    font-family: 'Alfa Slab One', cursive;
    background: linear-gradient(270deg, #00e2ff, #000000, #00e2ff);
    background-size: 600% 600%;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    position: absolute;
    animation: gradientShift 3s linear infinite;
}

.arrow-group1 {
    right: 13vw;
    bottom: 13vh;
}

.arrow-text1 {
    display: flex;
    width: 14vw;
    align-items: center;
    justify-content: space-around;
    cursor: pointer;
}

.ar1 {
    font-size: 4vw;
}

.ar2 {
    font-size: 6vw;
}

.ar3 {
    font-size: 8vw;
}





/* Overlay Base Style */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    z-index: 3000;
}

.overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

.overlay-inner {
    background: white;
    width: 90vw;
    height: 90vh;
    display: flex;
    flex-direction: row;
    border-radius: 15px;
    overflow: hidden;
}

.overlay-left {
    display: flex;
    flex: .3;
    justify-content: space-around;
    align-items: center;
}

.overlay-left .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    font-family: sans-serif;
    display: none;
}

.overlay-left img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.kid-overlay-menu {
    position: relative;
    width: 10vw;
    left: -4vw;
    border: 2px solid black;
}

.kid-overlay-menu > div {
    background: transparent;
    padding: 10px 5px;
    margin: 0 0;
    width: 100%;
    text-align: left;
    cursor: pointer;
    word-wrap: break-word;
    transition: background-color 0.3s;
}

.komc1,
.komc2,
.komc3,
.komc4 {
    border-bottom: 2px solid black;
}

.komc2,
.komc3,
.komc4,
.komc5 {
    font-size: 1.2rem;
    color: black;
    font-family: Arial, sans-serif;
}

.kid-overlay-menu .komc1 p {
    font-size: 1.75rem;
    font-family: 'Audiowide', cursive;
    padding: 10px;
}

.kid-overlay-menu > div:hover {
    background-color: #3157f7;
    color: white;
}

.kid-overlay-menu .komc1:hover {
    background-color: rgba(255, 255, 255, 0);
    color: black;
}

.kid-overlay-menu > div.active {
    background-color: #3157f7;
    color: white;
}

.overlay-right {
    flex: .7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
}

.overlay-right .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    font-family: sans-serif;
    display: block;
}

.content-section {
    display: none;
}

.content-section.visible {
    display: flex;
    flex-direction: column;
}


.ko1-prog p:first-child {
    font-size: 2rem;
    font-family: 'Audiowide', cursive;
}

.ko1-prog p:nth-child(2) {
    font-size: 3.5rem;
    font-family: 'Audiowide', cursive;
    margin-top: -10px;
    color: #3157f7;
}

.ko1-prog p:nth-child(3) {
    font-size: 1.1rem;
    font-family: Arial, sans-serif;
    margin-top: -10px;
    text-align: right;
}

.ko1-prog p:nth-child(4) {
    font-size: 1.1rem;
    font-family: Arial, sans-serif;
    text-align: right;
}

.ko1-issues h2,
.ko1-psychology h2,
.ko1-approach h2 {
    font-size: 3rem;
    font-family: 'Audiowide', cursive;
}

.ko1-issues p,
.ko1-psychology p,
.ko1-approach p {
    width: 90%;
    padding-left: 3vw;
    padding-top: 5vh;
    font-size: 1.1rem;
    font-family: Arial, sans-serif;
    text-align: justify;
    text-indent: 5vw;
}

.ko-br-logo {
    position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0.5;
}

.ko-br-logo img {
    width: 11vw;
    height: auto;
}





/****************************************************Kid 2*/
#kid-2 {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    overflow: hidden;
    margin-bottom: 15vh;
}

.img-kid2 {
    position: absolute;
    height: 85vh;
    right: 17vw;
    width: auto;
}

.kid-group2 {
    display: inline-block;
    position: absolute;
    top: -7vh;
    left: 23vw;
    text-align: left;
}

.arrow-group2 {
    position: absolute;
    right: 7vw;
    bottom: 13vh;
}

.arrow-text2 {
    display: flex;
    width: 14vw;
    align-items: center;
    justify-content: space-around;
    cursor: pointer;
}



/****************************************************Kid 3*/
#kid-3 {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    overflow: hidden;
    margin-bottom: 7vh;
}

.img-kid3 {
    position: absolute;
    height: 85vh;
    left: 7vw;
    width: auto;
    z-index: 700;
}

.kid-group3 {
    display: inline-block;
    position: absolute;
    top: -7vh;
    left: 18vw;
    text-align: left;
}

.arrow-group3 {
    right: 12vw;
    bottom: 13vh;
}

.arrow-text3 {
    display: flex;
    width: 14vw;
    align-items: center;
    justify-content: space-around;
    cursor: pointer;
}



/****************************************************Kid 4*/
#kid-4 {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    margin-bottom: 35vh;
}

.img-kid4 {
    position: absolute;
    height: 140vh;
    top: 0;
    left: 40%;
    width: auto;
    z-index: 700;
}

.kid-group4 {
    display: inline-block;
    position: absolute;
    top: -7vh;
    left: 6vw;
    text-align: left;
}

.arrow-text4 {
    display: flex;
    width: 14vw;
    align-items: center;
    justify-content: space-around;
    cursor: pointer;
}

.kid-group4 .rebel-style1-3 {
    padding-top: 35vh;
    padding-left: 63vw;
}

.kid-group4 .age-style1-3 {
    position: relative;
    margin-top: -14vh;
    padding-left: 51vw;
}

.kid-group4 .age-number-style1-3 {
    margin-top: -7vh;
    padding-left: 0px;
}

.kid-group4 .years-style1-3 {
    margin-top: -16vh;
}

.arrow-group4 {
    right: 22vw;
    bottom: 0px;
}

.kid4-approach {
    text-align: left !important;
    text-indent: 0 !important;
    min-width: 15vw !important;
}



/****************************************************Info Cards*/
#info-cards {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 99vw;
    background: none;
    overflow-x: hidden;
    box-sizing: border-box;
    padding-top: 22vh;
}

.card {
    position: relative;
    display: inline-block;
    max-width: 20vw;
    height: 45vh;
    cursor: pointer;
    margin: 0 auto;
}

.img-wrapper {
    width: 100%;
    height: 100%;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
}

.img-wrapper img:hover {
    animation: shake 0.5s infinite;
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    75% {
        transform: translateX(-5px);
    }

    100% {
        transform: translateX(0);
    }
}

.card-content {
    position: fixed;
    top: 5vh;
    left: 5vw;
    width: 90vw;
    height: 90vh;
    background-image: url("Images/Overlay-BG.webp");
    background-size: cover;
    opacity: 0;
    border-radius: 30px;
    pointer-events: none;
    transition: opacity 0.5s ease;
    z-index: 2000;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
    cursor: default;
}

.card-content.visible {
    opacity: 1;
    pointer-events: auto;
}






#about-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

#about-content .left-part {
    flex: .3;
    text-align: center;
}

#about-content .right-part {
    flex: .7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-right: 20px;
}

#about-content .right-part p {
    font-family: Arial, sans-serif;
    font-size: 1.1rem;
    text-align: justify;
    color: #000000;
    line-height: 1.6;
    text-indent: 4vw;
    margin-bottom: 10px;
}

.close-btn {
    position: absolute;
    font-family: sans-serif;
    top: 10px;
    right: 20px;
    font-size: 1.5rem;
    color: dimgray;
    cursor: pointer;
    padding: 5px 10px;
}






#prog-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

#prog-content .left-part {
    flex: .3;
    text-align: center;
}

#prog-content .right-part {
    flex: .7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-right: 20px;
}

.prog-right-child {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid black;
    padding-top: 20px;
    margin-bottom: 8vh;
}

.prog-right-child p {
    font-family: Arial, sans-serif;
    font-family: 'Audiowide', cursive;
    font-size: 2.3rem;
    color: #000000;
    line-height: .5;
    text-align: right;
    padding-left: 30px;
}

.prog-right-child span {
    font-family: Arial, sans-serif;
    font-size: 1rem;
}

.prog-right-child img {
    height: 5vh;
    cursor: pointer;
}






#blog-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

#blog-content .left-part {
    flex: .3;
    text-align: center;
}

#blog-content .right-part {
    flex: .7;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

#coming-soon {
    width: 35%;
    animation: sizePulse 2s infinite;
}

@keyframes sizePulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15); /* 15% larger */
    }
    100% {
        transform: scale(1);
    }
}






#faq-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

#faq-content .left-part {
    flex: .3;
    text-align: center;
}

#faq-content .right-part {
    flex: .7;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.faq-list {
    width: 100%;
    padding: 30px;
    overflow-y: auto;
    max-height: 70vh;
}

.faq-item {
    margin-bottom: 5px;
    cursor: pointer;
}

.faq-question {
    font-family: Arial, sans-serif;
    font-size: 1.2rem;
}

.faq-answer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 3000;
}

.faq-answer-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

.faq-answer-content {
    background: #020002;
    max-width: 60vw;
    max-height: 80vh;
    overflow-y: auto;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 20px rgba(232, 227, 227, 0.5);
    padding-top: 7vh;
}

.faq-answer-content h3 {
    font-family: Arial, sans-serif;
    color: #61ccfa;
    margin-bottom: 20px;
}

.faq-answer-content p {
    font-family: Arial, sans-serif;
    color: white;
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.5;
}

.faq-answer-content ul {
    font-family: Arial, sans-serif;
    color: white;
    margin-bottom: 20px;
    padding-left: 3vw;
}

.faq-answer-content .faq-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-family: Arial, sans-serif;
    font-size: 1.2rem;
    cursor: pointer;
    color: white;
}






#contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

#contact-content .left-part {
    flex: .3;
    text-align: center;
}

#contact-content .right-part {
    flex: .7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.contact-icon{
    display: none;
}

#contact-content .right-part p {
    font-family: Arial, sans-serif;
    font-size: 1.3rem;
    text-align: right;
    color: #000000;
    line-height: 1.6;
    margin-right: 3vw;
}

.contact-mobile,
.contact-email,
.contact-address {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 5vh;
}

.h-bar {
    width: 15vw;
    height: 2.75vw;
    background-color: black;
}

/****************************************************Footer*/
footer {
    position: relative;
    bottom: 0;
    left: 0;
    height: 25vh;
    width: 100%;
    background: linear-gradient(to top, black, transparent);
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Horizontal center */
    align-items: center;
    /* Align at bottom */
}

footer p {
    color: white;
    font-family: sans-serif;
    font-size: 1rem;
    margin-bottom: 10px;
    /* Add space from bottom */
}

footer a {
    color: #00e2ff;
    text-decoration: underline;
}

#bt-social-icons {
    display: none;
}
