/* Online Font Integration */
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Offline Font Integration */
@font-face {
    font-family: 'Universa';
    src: url('../fonts/Universa.woff') format('woff');
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Poppins;
    position: relative;
    height: 100%;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    /* background-image: linear-gradient(135deg, #f5f7fa 0%, #c2c6cd 100%); */
    background-image: linear-gradient(135deg, #f5f7fa 0%, #dfdfdf 100%);
    /* background-image: linear-gradient(to top, #f43b47 0%, #453a94 100%); */
    width: 100%;
    height: 100%;
    filter: blur(10rem);
    z-index: -3;
}

body::after {
    content: "";
    position: absolute;
    top: 40%;
    left: 20%;
    /* background-image: linear-gradient(to top, #f43b47 0%, #453a94 100%); */
    background-color: orangered;
    width: 15rem;
    height: 15rem;
    filter: blur(10rem);
    z-index: -2;

}

/* Font Set */
html {
    font-size: 62.5%;
}

/* Color Definition */
:root {
    --active-color: rgb(250, 129, 40);
    --white: #fff;
}


/* Header */
/* Navigation Bar: Menu */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    height: 6rem;
}

#hamburger-icon {
    display: none
}

.menu {
    width: 30%;
}

.menu ul {
    display: flex;
    justify-content: space-between;
    padding-left: 1.5rem;
}

.menu ul li {
    list-style: none;
    /* padding-left: 4rem; */
}

.menu ul li a {
    text-decoration: none;
    font-size: 1.5rem;
    color: black;
    padding: 0.5rem 1.5rem;
}

.menu ul li a:hover {
    color: var(--active-color);
}

/* Navigation Bar: Logo */
.logo {
    position: absolute;
    left: 50%;
    top: 1%;
}

/* Navigation Bar: Authentication */
.authentication {
    padding-right: 3rem;
}

.authentication .login {
    font-size: 1.5rem;
    text-decoration: none;
    color: black;
    position: relative;

}

@keyframes linearStrip {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.authentication .login:hover::after {
    content: "";
    position: absolute;
    bottom: -15%;
    transition: all linear 0.3s;
    left: 0;
    height: 2px;
    border-radius: 5px;
    width: 100%;
    background-color: black;
    animation-name: linearStrip;
    animation-duration: 0.3s;

}

/* MAIN */
/* Section: Landing */
#landing {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90vh;
    position: relative;
}

#landing .text-section {
    text-align: center;
    width: 80%;
}

#landing .text-section h1 {
    font-size: 10rem;
    font-family: 'Universa';
}

#landing .floating-text {
    color: grey;
    font-size: 1.2rem;
    border: 1px solid grey;
    padding: 1rem;
    /* transform: rotate(-10deg); */
    position: absolute;
}

.floating-text:nth-child(2) {
    top: 20%;
    left: 10%;
}

.floating-text:nth-child(3) {
    bottom: 10%;
    left: 40%;
}

.floating-text:nth-child(4) {
    top: 30%;
    RIGHT: 10%;
}

/* Section: Gallery */
.image-frame {
    /* height: 100vh; */
    /* width: 80%; */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.nvg-icn {
    position: absolute;
    top: 45%;
}

.navigation-icons {
    /* position: absolute;
    top: 10%;
    left: 2%; */
    display: flex;
    flex-direction: column;
    max-height: 80vh;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: lightgrey transparent;
}

.navigation-icons .downscaled {
    width: 8rem;
    margin-right: 1rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    border: 1px solid black;
}

.nvg-icn.left {
    left: 3%;
    transition: all ease-in-out 0.2s;
    border-radius: 50%;
}

.nvg-icn.left:hover {
    left: 2.5%;
    border: 1px solid black;
    transition: all ease-in-out 0.2s;
}

.nvg-icn.right {
    right: 3%;
    border-radius: 50%;
    transition: all ease-in-out 0.2s;
}

.nvg-icn.right:hover {
    right: 2.5%;
    /* border: 1px solid black; */
    transition: all ease-in-out 0.2s;
}

.image-frame img {
    width: 80vw;
    border-radius: 10px;
}

#image-display {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    display: none;
    z-index: 2;
}

#image-display::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.5;
    z-index: -1;
}

#fullscreen-img {
    width: 100%;
    object-fit: contain;
    /* margin-top: 50%; */
    /* padding: 1rem; */
}

#image-display .menu-btn-img {
    position: absolute;
    /* top: 5px;
    right: 5px; */
    top: 10px;
    right: 10px;
    font-size: 3rem;
    background-color: white;
    /* border-radius: 50%; */
    z-index: 4;
}

#image-display .menu-btn-img:hover {
    background-color: black;
    color: #fd1d1d;
}


/* Section: Fees Structure */
#fees-section {
    width: 90%;
    height: 90%;
    background-color: var(--white);
    margin: 5rem auto;
    border-radius: 15px;
    display: flex;
}

#fees-structure {
    display: flex;
    position: relative;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    width: 100%;
}

.class-choose {
    flex-basis: 20%;
    /* height: 60rem; */
    /* background-image: linear-gradient(135deg, #f5f7fa 0%, #dfdfdf 100%); */
    background-color: #f5f6f7;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.class-choose ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: scroll;
    height: 78vh;
    scrollbar-width: thin;
}

.class-choose ul li {
    list-style: none;
    background-color: white;
    margin: 0.25rem;
    width: 70%;
    border-radius: 5px;
}

.class-choose ul li a {
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 500;
    color: black;
    width: 100%;
    height: 100%;
    padding: 1rem 0;
    display: inline-block;
    padding-left: 4rem;
}

.extraText {
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 5rem;
    width: 12rem;
}

.extraText img {
    /* margin: 0 1rem 0 3rem; */
    width: 10rem;
}

#fees-structure .class-choose h3 {
    letter-spacing: 2px;
    font-size: 2rem;
    font-weight: 600;
}

#fees-structure .classes li a:hover {
    background-color: var(--active-color);
    color: var(--white);
}

.mobile-btns {
    display: none;
}

.showTemplate {
    flex-basis: 80%;
    background-color: white;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

#fees-structure .showTemplate .extra-Text {
    padding: 2rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 20rem;
}

#fees-structure .showTemplate h3 {
    font-size: 2.5rem;
    font-weight: 600;
}

.showTemplate .filters {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin-left: 4rem;
}

.showTemplate .filters .seprating-container {
    position: relative;
}


.showTemplate select {
    background: transparent;
    color: black;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    padding: 1rem 0 1rem 1rem;
    min-width: 26rem;
    outline: none;
    border: none;
    border-radius: 5px;
}

/* .labels {
    font-weight: 500;
} */

/* #student {
    padding-left: 10.5rem !important;

}

#medium {
    padding-left: 6.5rem !important;

}

#gender {
    padding-left: 6.5rem !important;

} */

/* .showTemplate .filters label {
    position: absolute;
    top: -50%;
    top: 28%;
    font-size: 1.2rem;
    left: 5%;
    right: 20%;
} */

/* Fee Structure: Guideline */
.guideline-container {
    display: flex;
    width: 90%;
    padding: 2rem 4rem;
}

.table-guideline {
    padding: 1rem;
    display: flex;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
    border-radius: 5px;
    background-color: #e1e1fc4b;
    border: 1px solid gray;
}

.table-guideline p {
    padding-left: 0.5rem;
    font-size: 1.2rem;
    color: rgb(104, 104, 104);
}

/* Fee Structure: Table */
.table-container {
    width: 90%;
    padding: 1rem 4rem;
    /* border: 1px solid grey; */
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin: 0 4rem;
    margin-bottom: 4rem;
}

table {
    border-collapse: collapse;
    width: 100%;
    border-radius: 10px;
    margin: 1rem 0;

    /* border: 1px solid black; */
    /* height: 10rem; */
}

/* 
    tbody {
        border-radius: 10px;
        } */

tr {
    /* border: 1px solid black; */
    height: 0.5rem;
}

td {
    padding: 0.7rem;
    min-width: 15rem;
    font-size: 1.4rem;
    padding-left: 2rem;
}

tbody td {
    /* border: none; */
    border: 1px solid rgba(208, 208, 208, 0.609);

}

thead tr {
    /* border: none; */
    background-color: black;
    color: white;
    font-weight: 600;
}

thead tr td:nth-child(2) {
    /* border-left: 1px solid white; */
    border-top-right-radius: 10px;
    text-align: center;
}

thead tr td:nth-child(1) {
    border-top-left-radius: 10px;
    /* border-right: 1px solid white; */
}

tbody tr td:nth-child(2) {
    text-align: center;
}


tbody tr:last-child td {
    background-color: rgba(40, 89, 250, 0.2);
    font-weight: 600;
    font-size: 1.6rem;
    border: none;
}

.cornor-radius:nth-child(1) {
    border-bottom-left-radius: 10px;
}

.cornor-radius:nth-child(2) {
    border-bottom-right-radius: 10px;
}

/* tbody tr:nth-child(2n+1) {
    background-color: #f5f6f7;
} */

/* Testimonials Section */
#Testimonials {
    width: 90%;
    margin: auto;
}

#Testimonials .achievement {
    text-transform: uppercase;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 1px;
}

#Testimonials h2 {
    font-size: 4rem;
    width: 60rem;
    margin: 2.5rem 0;
}

#Testimonials .beggining-text {
    font-size: 1.5rem;
    width: 60rem;
}

#Testimonials .feedback-container {
    margin: 5rem 0;
    /* display: flex;
    align-items: center;
    justify-content: space-between;
    width: max-content; */
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-items: center;
    gap: 10px;
}

#Testimonials .feedback-container .card {
    max-width: 35rem;
    /* border: 1px solid lightslategrey; */
    background-color: #f5f6f7;
    padding: 2rem;
    min-height: 28rem;
    justify-content: s;
    display: flex;
    border-radius: 10px;
    /* margin: 0 10px 0 0; */
    justify-content: space-between;
    flex-direction: column;
}

#Testimonials .feedback-container .card .rating {
    position: relative;
    width: 17rem;
    display: flex;
    justify-content: space-between;
    height: 100%;
}

#Testimonials .feedback-container .card .rating .stars {
    background-color: rgb(0, 163, 95);
    font-size: 2rem;
    padding: 0.5rem;
}

#Testimonials .feedback-container .card .rating .absolute {
    position: absolute;
    top: 0;
    left: 0;
    filter: invert();
    background-color: none;
}

#Testimonials .feedback-container .card .rating .absolute .filled-stars {
    background: none;
}

#Testimonials .feedback-container .card .card-text {
    font-size: 1.3rem;
    padding: 1.5rem 0;
}

#Testimonials .feedback-container .card .user-detail .name,
.date {
    display: block;
    font-size: 1.4rem;
    text-align: right;
    /* padding-right: 3rem; */
}

.trustpilot {
    height: 5rem;
    width: 100%;
}

/* Footer */
footer {
    background-color: black;
}

#footer {
    display: grid;
    /* grid-template-columns: 1fr 1fr 1fr 1fr 1fr; */
    grid-template-columns: 2fr 1fr 1fr 1fr;
    width: 90%;
    margin: auto;
    padding-top: 3rem;
    padding-bottom: 5rem;
}

footer .container {
    display: flex;
    flex-direction: column;
    /* justify-content: right; */
    align-items: end;
}


footer .container:nth-child(1) {
    align-items: baseline;
    color: whitesmoke;
    /* display: flex; */
    flex-direction: column;
    justify-content: left;
}

footer .container:nth-child(1) h2 {
    font-size: 2.4rem;
    padding: 0 1rem 1rem 0;
}

footer .container:nth-child(1) p {
    padding: 0 1rem 1rem 0;
    font-size: 1.5rem;
}

footer .container ul {
    /* width: 12rem; */
    text-align: right;
    flex-direction: column;
}

footer .container ul li {
    list-style: none;
    margin: 1.5rem 0;
}


footer .container ul li a {
    text-decoration: none;
    color: white;
    /* color: rgb(83, 83, 83); */
    font-size: 1.2rem;
}

footer .container .footer-text-heading {
    /* padding-right: 3rem; */
    color: slategrey;
    /* text-decoration: none; */
    justify-content: center;
    font-weight: 600;
    font-size: 1.4rem;
    font-family: 'outfit', sans-serif;
    /* padding-bottom: 1.2rem; */
}

.issue-btn {
    padding-top: 2rem;
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
}

.issue-btn a {
    border: 1px solid white;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    font-size: 1.4rem;
}

.issue-btn p {
    margin-left: 2rem;
}

.issue-btn a:hover {
    background-color: white;
    color: black;
    transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.6s;
}

/* footer: copyright stripe */
#copyright {
    width: 100%;
    text-align: center;
}

.strip {
    /* display: grid;
    grid-template-columns: 1fr 1fr 1fr; */
    padding-bottom: 2rem;
    /* background-color: #111111; */
    width: 90%;
    margin: auto;
}

.strip span {
    color: grey;
    background: transparent;
}

.footer-text {
    font-size: 1.25rem;
    /* font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
    font-family: 'Outfit', sans-serif;
    text-align: center;
}

.social-media-icons {
    text-align: left;
    display: flex;
    justify-content: space-between;
    width: 35%;
    padding-bottom: 1rem;
}

.footer-icons {
    color: white;
    font-size: 2.5rem;
}

.footer-icons {
    cursor: pointer;
}

.footer-icons:nth-child(1):hover {
    color: green;
}

.footer-icons:nth-child(2):hover {
    color: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045);
}

.footer-icons:nth-child(3):hover {
    color: rgb(49, 49, 255);
}

.footer-icons:nth-child(4):hover {
    color: #59a3d5;
}

.contact-detail {
    display: flex;
    justify-content: space-between;
    width: 100%;
    /* flex-direction: column; */
    padding: 1rem 0;
}

.contact-detail span {
    /* padding: 0.5rem 0; */
    font-size: 1.4rem;
}

.schoolname {
    font-size: 1.8rem;
    font-weight: 600;
    /* font-family: 'Google Sans',sans-serif; */
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    text-align: left;
}

/* Utility Classes */
.active {
    background-color: var(--active-color);
    border-radius: 12rem;
    color: var(--white) !important;
    font-weight: bold;
}

#dummy {
    height: 100vh;
}

.safe {
    color: green;
}

.passive-alert {
    color: blue;
    font-size: 2rem;
}

/* 
.passive-alert-box{
    box-shadow: rgba(0, 0, 255, 0.5) 0px 4px 12px !important;
} */

.unsafe {
    color: red;
}

.active-image {
    border: 2px solid var(--active-color) !important;
    /* position: relative; */
    z-index: 1;
}

.active-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--active-color);
    /* opacity: 0.2; */
    width: 100%;
    height: 100%;
    z-index: 2;
}

.bd-rad-50 {
    border-radius: 50%;
    width: 10rem;
}

br {
    display: none;
}

.dnone-rmv {
    display: flex !important;
}

.waste-container {
    display: none;
}

.drop-down-arrow {
    display: none;
}

.Coming-Soon {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-heading {
    font-size: 15rem;
    background: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045);
    color: white;
}

/* Media Queries: Tablet */

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

    /* landing page*/
    #landing .text-section h1 {
        font-size: 12rem;
    }

    br {
        display: block;
    }

    .floating-text:nth-child(4) {
        top: 28%;
    }

    .floating-text:nth-child(2) {
        top: 5%;
        font-size: 1.6rem !important;
    }

    /* Gallery */
    .image-frame {
        flex-direction: column;
    }

    .navigation-icons {
        flex-direction: row;
        overflow-x: scroll;
        width: 80%;
    }

    /* Fees Structure */
    #fees-structure {
        flex-direction: column;
    }

    .showTemplate select {
        min-width: 25vw;
    }

    .mobile-btns {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        /* flex-direction: column; */
        justify-content: space-between;
        /* height: 12rem; */
        width: 90%;
        margin: auto;
        padding-bottom: 2rem;
    }

    .mobile-btns #class {
        padding: 1rem;
        outline: none;
        /* border: 1px solid lightslategray; */
        border: none;
        font-size: 1.5rem;
        background-color: white;
        border-radius: 5px;
        box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    }

    .mobile-btns #fetch {
        padding: 1rem;
        border-radius: 5px;
        outline: none;
        background-color: black;
        color: white;
        font-size: 1.8rem;
        font-family: 'Google Sans', sans-serif;
        font-weight: 600;
    }

    #class-nav-list {
        display: none;
    }

    .class-choose {
        border-radius: 10px;
    }

    .showTemplate {
        border-radius: 10px;
    }

    /* Testimonials */
    #Testimonials h2 {
        width: 50rem;
    }

    #Testimonials .beggining-text {
        width: 50rem;
    }

    .feedback-container {
        grid-template-columns: 1fr 1fr !important;
    }

    /* Footer */
    #footer {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    /* Coming Soon */

    .coming-soon-heading {
        font-size: 7rem;
    }

}


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

    /* Navigation Bar */
    nav {
        width: 90%;
        margin: auto;
    }

    .menu-btn,
    #hamburger-icon {
        display: block;
        font-size: 4rem;
    }

    nav .menu {
        display: none;
    }

    nav .menu {
        position: fixed;
        top: 10%;
        justify-content: center;
        width: 100vw;
        left: 0;
        background-color: #f9fafb;
        z-index: 1;
    }

    .menu ul {
        flex-direction: column;
        height: 100vh;
        display: flex;
        justify-content: start;
        /* padding-left: 1.5rem; */
        text-align: center;
    }

    .menu ul li {
        list-style: none;
        /* padding-left: 4rem; */
        margin-top: 5rem;
    }

    .menu ul li a {
        font-size: 2rem;
    }

    /* Coming Soon */

    .coming-soon-heading {
        font-size: 5rem;
    }
}


/* Media Queries: Android */

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



    /* Landing Page */
    #landing .text-section {
        width: 100%;
    }

    #landing .text-section h1 {
        font-size: 9rem;
    }

    #landing .text-section h1 span {
        font-size: 7rem;
    }

    #landing .text-section .floating-text {
        font-size: 1.6rem;
    }

    #landing .text-section .floating-text:nth-child(4) {
        top: 14%;
        display: none;
    }

    /* Fee Structure */
    .filters {
        flex-direction: column;
        height: 12rem;
    }

    .filters select {
        width: 85%;
    }

    .table-container {
        /* margin: 0 auto !important; */
        width: 100%;
        box-shadow: none;
        margin: auto;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .table-container table {
        /* padding: 0 2rem; */
        padding: 1rem 0;
        margin: 2 auto;
        /* margin-bottom: 2rem; */
    }

    .extraText {}

    /* Testimonials */
    #Testimonials h2 {
        /* width: 40rem; */
        width: 95%;
    }

    #Testimonials .beggining-text {
        /* width: 40rem; */
        width: 95%;
    }

    .feedback-container {
        grid-template-columns: 1fr !important;
    }

    #Testimonials .feedback-container .card {
        margin: auto;
    }

    /* Footer */
    #footer {
        grid-template-columns: 1fr;
        grid-template-rows: unset;
        gap: 2.5rem;
    }

    div.container:nth-child(1) {
        border: none;
    }

    #footer .container {
        align-items: baseline;
    }


    div.container {
        justify-content: left;
        position: relative;
        border: 2px dashed white;
        padding: 1rem;
        height: max-content;
    }

    div.container ul {
        display: none;
        flex-direction: column;
        text-align: left;
    }

    div.container ul li {
        margin: 1rem 0.5rem;
        width: 100%;
    }

    div.container ul li a {
        font-size: 1.4rem;
    }

    div.container .footer-text-heading {
        font-size: 2.5rem !important;
        align-items: center;
        color: white;
        text-decoration: none;
        font-weight: 500;
        padding-bottom: 0;
        padding-right: 0;
    }


    div.container .drop-down-arrow {
        position: absolute;
        display: flex;
        top: 15px;
        right: 10px;
    }

    #copyright {
        padding-bottom: 2rem;
    }

    /* .strip {
        grid-template-columns: 1fr 1fr;
    } */

    /* #detail-span {
        position: absolute;
        bottom: 1%;
    } */

    .drop-down-arrow {
        filter: invert();
        font-size: 2rem;
    }

}

/* Media Queries: Folds */

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

    /* Landing Page */
    #landing .text-section h1 {
        font-size: 7rem;
    }

    #landing .text-section h1 span {
        font-size: 5.5rem;
    }

    /* Fee Structure */
    .table-container {
        padding: 1rem 2rem;
    }

    .table-container table td {
        font-size: 1.2rem;
        min-width: 100%;
    }

    /* Coming Soon */

    .coming-soon-heading {
        text-align: center;
        width: 80%;
    }
}