/* 
todo -------------------------------------------------------------------------
todo                                 Starting               
todo -------------------------------------------------------------------------
*/

/* ? ------------------ Variables ------------------ */

:root {
    --bg-white: white;
    --bg-gray: #F5F5F5;
    --bg-gray-darker: #e9e9e9;

    --accent-blue: #1C2B53;
}

/* ? ------------------ Basic Code ------------------ */

* {
    font-family: Arial, Helvetica, sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: black;
}

html {
    scroll-behavior: smooth;
}

/* ? ------------------ Master Code ------------------ */

section {
    padding: 5rem 0;
}

section:nth-child(even) {
    background: #F5F5F5;
}

/* ? ------------------ Repetitive Code ------------------ */

.heading {
    letter-spacing: -0.1rem;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 5rem;
    padding: 0 1rem;
    color: var(--accent-blue);
}

.button {
    font-size: 1.3rem;
    cursor: pointer;
    border: 1px solid black;
    border-radius: 4px;
    padding: 0.8em 2em;
    transition: 0.2s;

    transform: translate(-0.25rem, -0.25rem);
    background: rgb(237, 237, 237);
    box-shadow: 0.25rem 0.25rem black;
    margin-top: 2rem;
    cursor: pointer;
}

.button:active {
    transform: translate(0);
    box-shadow: none;
}

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

/* ? ------------------ Resoponsive Code ------------------ */

.flex-3>* {
    flex: 1;
}

/* ? ------------------ Navbar ------------------ */

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    height: 10vh;
    background: white;
}

nav .left {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav img {
    height: 80%;
}

nav .right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

nav .right a {
    font-family: "Poppins", serif;
    font-weight: 500;
    font-size: 1.3rem;
    font-style: normal;
}

nav .toggleDiv {
    display: none;
}

/* ? ------------------ WhatsappButton ------------------ */

.whatsappDiv {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 10;
}

.whatsappDiv img {
    cursor: pointer;
}

/* 
todo -------------------------------------------------------------------------
todo                                 SECTIONS               
todo -------------------------------------------------------------------------
*/

/* ? ------------------ Hero ------------------ */

section.hero {
    padding-top: 10vh;
    margin: 0;
}

section.hero .container {
    width: 60%;
    margin: auto;

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

section.hero img {
    width: 100%;
    height: 100%;
}

/* ? ------------------ News ------------------ */

section.news {
    height: 100vh;
    width: 100%;
    margin: 0;
}

section.news .container {
    height: 100%;
    width: 80%;
    margin: auto;

    background-image:
        url("./Assets/News/news1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

@media (max-width:600px) {
    section.news .container {
        background-image:
            url("./Assets/News/news2.jpg");
    }
}

/* ? ------------------ Reviews ------------------ */

.reviews .container {
    width: 90%;
    margin: auto;
    columns: 2;
}

.reviews .container img {
    width: 100%;
}

/* ? ------------------ Batches ------------------ */

section.batches .container {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: auto;
    gap: 1rem;
}

section.batches .container .box {
    /* background-image: linear-gradient(to top left,
            #e3edf8 0%,
            white 20%,
            #e3edf8 80%,
            #e3edf8 100%); */
    background: white;
    border: 1px solid rgb(204, 204, 204);
    border-radius: 10px;
    padding: 2rem;
    width: 30%;
}

/* section.batches .container .box:hover {
    background-image: linear-gradient(to top left,
            #e3edf8 0%,
            white 20%,
            #e3edf8 40%,
            #e3edf8 100%);
} */

.lottieContainer {
    font-size: 2rem;
    height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.batches .container .box h1 {
    font-size: 1.6rem;
    font-family: "Poppins";
    font-weight: bold;
    color: var(--accent-blue);
}

section.batches .container .box h2 {
    margin-top: 0.1rem;
    font-size: 1.5rem;
    font-weight: 500;
    padding-bottom: 1rem;
    border-bottom: 1px solid black;
}

section.batches .container .box .features {
    margin-top: 2rem;
}

section.batches .container .box .features p {
    font-size: 1.2rem;
    margin: 1rem 0;
}


/* ? ------------------ Gallary ------------------ */

section.gallary .container {
    width: 100%;
    columns: 3;
    gap: 1rem;
    padding: 0 1rem;
}

section.gallary .heading {
    margin-bottom: 2rem;
}

section.gallary .options {
    margin-bottom: 2rem;
    padding: 1rem 0;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

section.gallary .options .button {
    margin: 0;
}

section.gallary .container .img {
    width: 100%;
    margin: 1rem 0;
    border-radius: 10px;
    overflow: hidden;
}

section.gallary .container .img:first-child {
    margin: 0;
}

section.gallary .container .img img {
    width: 100%;
    border-radius: 10px;
    transition: scale 0.5s;
}

/* section.gallary .container .img img:hover {
    scale: 1.2;
} */

/* ? ------------------ Youtube ------------------ */

section.youtube .container {
    width: 90%;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

section.youtube .container iframe {
    width: 100%;
    aspect-ratio: 16/9;
}

/* ? ------------------ Map ------------------ */

.map .container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin: auto;
}

.map iframe {
    border-radius: 10px;
    width: 100%;
}

/* ? ------------------ Contact ------------------ */

section.contact .container {
    width: 50%;
    margin: auto;

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

section.contact .container .inputs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

section.contact .container .inputs input {
    width: 100%;
    font-size: 1.2rem;
    padding: 0.5rem 0;
    margin: 1rem 0;
    border: none;
    border-bottom: 1px solid black;
    background: #F5F5F5;
}

section.contact .container .inputs input:focus {
    border: none;
    outline: none;
    border-bottom: 1px solid black;
}

section.contact .container .inputs input::placeholder {
    font-size: 1.2rem;
    color: #2a2432;
}

section.contact .container form {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.radio-inputs {
    display: flex;
    border-radius: 0.5rem;
    background: var(--bg-gray-darker);
    /* background: white; */
    padding: 0.25rem;
    width: 70%;
    margin: auto;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.radio-inputs .radio {
    flex: 1 1 auto;
    text-align: center;
}

.radio-inputs .radio input {
    display: none;
}

.radio-inputs .radio .name {
    /* font-family: "Poppins"; */
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    border: none;
    padding: .5rem 0;
    color: rgba(51, 65, 85, 1);
    transition: all .1s ease-in-out;
}

.radio-inputs .radio input:checked+.name {
    background-color: #fff;
    font-weight: 600;
}

section.contact .container2 {
    /* background: red; */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    margin-top: 5rem;
}

section.contact .container2>* {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

section.contact .container2 h2 {
    margin: 0.5rem 0;
}

section.contact .container2 h3 {
    font-weight: 200;
}

section.contact .container2 img {
    height: 70px;
    cursor: pointer;
}

/* 
todo -------------------------------------------------------------------------
todo                                 Footer               
todo --------------------------------------------------------------------------
*/

/* ? ------------------ Footer ------------------ */


section.footer {
    /* background: red; */
    padding-bottom: 1rem;
}

section.footer .div {
    display: flex;
    align-items: center;
    justify-content: center;
}

section.footer .div a {
    text-decoration: none;
    color: white;
    text-align: center;
    font-size: 1rem;
    border-bottom: 1px solid white;
    margin-bottom: 2rem;
}

section.footer h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

section.footer .social-media {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

section.footer .social-media img {
    cursor: pointer;
    height: 50px;
}

section.footer .social-media img.insta {
    height: 65px;
}

section.footer .social-media img.yt {
    height: 75px;
}

section.footer p {
    text-align: center;
    margin-top: 2rem;
    /* padding-bottom: 2rem; */
}

/* 
todo -------------------------------------------------------------------------
todo                                                
todo -------------------------------------------------------------------------
*/