@font-face {
    font-family: "Tiro-Devnagari";
    src: url("../fonts/TiroDevanagariSanskrit-Regular.ttf") format("truetype");
    font-weight: normal;
}

@font-face {
    font-family: "Tiro-Devnagari";
    src: url("../fonts/TiroDevanagariSanskrit-Italic.ttf") format("truetype");
    font-weight: normal;
    font-style: italic;
}

* {
    margin: 0;
    padding: 0;
    font-family: "Tiro-Devnagari", serif;
}


/* Navbar */
.navbar {
    z-index: 1000;
    position: fixed;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    height: 5rem;
    width: 100%;
    position: fixed;
    background-color: #00B295;
    gap: 25rem;
}

/* Site Name */
.name {
    font-size: 1.2rem;
}

.name a{
    text-decoration: none;
    color: white;
}

/* Navigation Links (Desktop) */
.navlinks {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.navlinks a {
    font-size: 0.9rem;
    color: white;
    text-decoration: none;
}

.navlinks :hover{
    transform: scale(1.3); 
    text-decoration: underline;
    color: white;
    transition: 0.3s ease-in-out;
}

.name:hover{
    transform: scale(1.2); 
    text-decoration: underline;
    color: white;
    transition: 0.3s ease-in-out;
}

/* Hamburger Menu (Hidden on Desktop) */
.hamburger {
    color: white;
    font-size: 2rem;
    cursor: pointer;
    display: none;
}

.banner {
    margin-top: 5rem;
    position: relative;
    width: 100%;
    height: 25rem;
    background: linear-gradient(rgba(7, 16, 19, 0.7), rgba(7, 16, 19, 0.7)), url("../images/WhatsApp%20Image%202025-01-24%20at%2022.43.15_eeb758de.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

body{
    background-color: #C9DAEA;
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.banner-intro {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 50%;
    align-self: flex-end;
    margin-bottom: 2rem;
}

.t1, .t2, .t3 {
    color: white;
    margin-bottom: 1.2rem;
    font-style: italic;
}

.t1{
    font-size: 1.2rem;
}

.t2{
    font-size: 3.2rem;
}

.t3{
    font-size: 1.2rem;
}

.banner-img{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25rem;
    width: 25rem;
    background-color: #FFFD98;
    border-radius: 50%;
    transition: background-image 1s ease-in-out;
}

.banner-img:hover{
    transform: translateY(-1rem);
    transition: 0.5s ease-in-out;
}

.buttons{
    width: 40%;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
    align-self: flex-start;
    justify-content: flex-end;
    margin-top: 2rem;
}

#download{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 8rem;
    height: 2rem;
    background-color: #FFFD98;
    border: none;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: bold;
}

#download:hover{
    transform: translateY(-0.5rem);
    background-color: #FFBB07;
    transition: 0.3s ease-in-out;
}

#download:active{
    transform: translateY(0.2rem);
    transition: 0.1s ease-in-out;
}

#toggle{
    font-size: 2rem;
    color: #FFBB07;
}

#toggle:hover{
    transform: translateY(-0.5rem);
    transition: 0.3s ease-in-out;
}

#toggle:active{
    transform: translateY(0.2rem);
    transition: 0.1s ease-in-out;
}

#pic1{
    height: 23rem;
    width: 23rem;
    background-image: url("../images/pic1.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50%;
    border: 0.2rem solid #071013;
}

.container{
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    width: 100%;
    height: 25rem;
}

.container-card{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #FFFD98;
    height: 80%;
    width: 90%;
    box-shadow: 0.7rem 0.7rem 0.3rem rgba(0, 0, 0, 0.25);
    border: 0.2rem solid #071013;
    border-radius: 2rem;
    gap: 3rem;
}

.heading{
    color: #071013;
    font-size: 1.8rem;
}

.description {
    width: 95%;
    line-height: 1.6;
    font-size: 1rem;
}


.description li{
    line-height: 1.8;
}

hr{
    background-color: #071013;
    height: 0.3rem;
    width: 82.5rem;
    margin-left: 2rem;
}

.info-section{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.info{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.5rem;
    background-color: #FFFD98;
    padding: 1rem;
    padding-left: 2rem;
    line-height: 1.8;
    box-shadow: 0.7rem 0.7rem 0.3rem rgba(0, 0, 0, 0.25);
    border: 0.2rem solid #071013;
    border-radius: 2rem;
    width: 90%;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.quote{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    background-color: #FFFD98;
    padding: 1rem;
    padding-left: 2rem;
    line-height: 1.8;
    box-shadow: 0.7rem 0.7rem 0.3rem rgba(0, 0, 0, 0.25);
    border: 0.2rem solid #071013;
    border-radius: 2rem;
    width: 90%;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.quoted{
    font-size: 1.6rem;
}

.quoter{
    font-size: 1.3rem;
}

.info ul{
    list-style-type: none;
    margin-left: 1rem;
}

.info a{
    color: blue;
    text-decoration: none;
}

.info a:hover{
    text-decoration: underline;
}

.divider{
    background-color: #071013;
    height: 0.3rem;
    margin-right: 2rem;
}

footer{
    flex-direction: column;
    display: flex;
    justify-content: flex-start;
    align-items: flex;
    gap: 1rem;
    height: 20rem;
    width: 100%;
    background-color: #191516;
    color: white;
}

footer hr{
    background-color: white;
    height: 0.1rem;
}

.footer-heading{
    margin-top: 2rem;
    margin-left: 2rem;
    font-size: 1.8rem;
}

.footer-description{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 0.8rem;
    line-height: 1.6;
    gap: 8rem;
}

.social{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 1.2rem;
}

.social a{
    color: white;
    text-decoration: none;
}

.copyright{
    margin-top: 1rem;
}

.copyright-heading, .copyright-description{
    font-size: small;
    text-align: end;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.formgroup {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #FFFD98;
    height: auto;
    width: 80%;
    padding: 2rem;
    gap: 2rem;
    margin-top: 2rem;
    border: 0.2rem solid #071013;
    border-radius: 1.2rem;
    box-shadow: 0.5rem 0.5rem 0.3rem rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}

textarea {
    width: 90%;
    height: 8rem;
    padding: 0.8rem;
    border-radius: 0.5rem;
    border: 0.15rem solid #071013;
    font-size: 1rem;
    resize: vertical;
    margin: 1rem 0;
}

input {
    width: 90%;
    padding: 0.7rem;
    font-size: 1rem;
    border-radius: 0.5rem;
    border: 0.15rem solid #071013;
}

textarea:focus,
input:focus,
.submit:hover {
    outline: none;
    background-color: #00B295;
    box-shadow: 0 0 0.5rem rgba(0, 178, 149, 0.5);
}

input:hover,
textarea:hover,
.submit:hover {
    transform: scale(1.02);
    transition: 0.2s ease-in-out;
}

.submit{
    width: 8rem; 
    height: 3rem;
    font-size: 1rem;
    background-color: #191516;
    color: white;
    font-weight: bold;
}

#sos{
    color: blue;
    cursor: pointer;
}

#sos:hover{
    text-decoration: underline;
}