@import url('https://fonts.googleapis.com/css2?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');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    
}

body{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    font-family: "Poppins", sans-serif;
    min-height: 100vh;
    
    
}

header{
    width:100%;
}

.navbar{
    background-color: #FFCC00;
    /* background-color: black; */
    height:10vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.logo{
    
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.website-logo{
    height: 20vh;
    width: 10vw;
    
}

.media-navbar-website-logo{
    display: none;
}


.website-logo:hover{
    transform: scale(1.15); /* Slight zoom effect on hover */
}

.website-name{
    font-size: 30px;
    font-weight: 600;
}


.media-navbar-button{
    display: none;
}

.media-navbar{
    display: none;
}

.nav-links{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 30%;
    
}

.nav-link{
    list-style: none;
    margin-right: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-link:hover{
    font-weight: 800;
}

a{
    text-decoration: none;
    color: black;
    font-size: 20px;
}

main{
    min-height: 80vh;
    
    width: 100%;
    display: flex;
    align-items: center;
    
    
}

.blog-container{
    margin: 10px 5px;
    height: auto;
}

/* .post-meta{
    margin: 10px 0px;
} */

h1{
    font-size: 40px;
    margin: 10px 0px;
}

h2{
    font-size: 30px;
}

p{
    font-size: 20px;
    margin: 20px 0px;
}

ul{
    margin: 10px 0px;
}

.ul-heading{
    font-size: 26px;
    font-weight: 800;
    margin: 10px 30px;
}

.ul-subheading{
    font-size: 20px;
    font-weight: 700;
    margin: 10px 40px;
}

.ul-para{
    font-size: 20px;
    font-weight: 400;
    margin: 10px 50px;
    align-items: start;
    
}

li{
    margin: 10px 0px;

    
}

.li-para{
    font-size: 20px;
    font-weight: 400;
    margin: 10px 40px;
}


.strong-margin{
    margin-left: 35px;

}

.li-supara01{
    font-size: 19px;
    font-weight: 400;
    margin: 10px 60px;
}

.li-subpara{
    font-size: 18px;
    font-weight: 400;
    margin: 0px 30px;
    text-align: start;
}


.font-sizep{
    font-size: 20px;
}


/* .contact-us-container{

    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    width: 40vw;
    padding: 10px;
    
}

.input-box{
    width: 30vw;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
}



.form-h3{
    font-size: 30px;
    text-align: center;
}

label{
    font-size: 20px;
    text-align: center;
    margin: 0 10px;
    width: 10vw;
}

input{
    font-size: 20px;
    text-align: center;
    margin: 10px;
    width: 31vw;
}

textarea{
    width: 30vw;
    font-size: 20px;
    text-align: center;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}


button{
    padding:0px 5px;
    font-size: 25px;
} */


.form-container {
            max-width: 500px;
            margin: 40px auto;
            padding: 30px;
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .form-h3 {
            margin-top: 0;
            color: #333;
            font-size: 24px;
            text-align: center;
            border-bottom: 2px solid #f1f1f1;
            padding-bottom: 15px;
            margin-bottom: 25px;
        }

        .input-box {
            margin-bottom: 20px;
        }

        .input-box label {
            display: block;
            margin-bottom: 8px;
            color: #555;
            font-weight: 600;
        }

        .input-box input, 
        .input-box textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 16px;
            box-sizing: border-box; /* Ensures padding doesn't affect width */
            transition: border-color 0.3s ease;
        }

        .input-box input:focus, 
        .input-box textarea:focus {
            outline: none;
            border-color: #f39c12; /* A warm saffron/orange touch for Swami Samarth theme */
            box-shadow: 0 0 5px rgba(243, 156, 18, 0.2);
        }

        .input-box textarea {
            resize: vertical; /* Allows user to expand height but not width */
        }

        button[type="submit"] {
            width: 100%;
            background-color: #f39c12;
            color: white;
            padding: 14px;
            border: none;
            border-radius: 6px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        button[type="submit"]:hover {
            background-color: #e67e22;
        }

.footer{
    width: 100%;
    background-color: #FFCC00;
    display: flex;
    align-items: center;
    justify-content: center;
}

.f-main{
    background-color: #FFCC00;
}


.footer-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    
}


.web-info{
    
    display: flex;
    align-items: center;
    justify-content: center;
    width:75vw;
}

.social-links{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 15vw;
    
}

.social-link{
    text-decoration: none;
    margin:5px;
    font-size: 20px;
}

footer{
    height: 10vh;
    width: 100%;
    
    display: flex;
    align-items: center;
    justify-content: center;
}


@media (max-width: 768px) {



}




@media (max-width: 600px) {

main{
    position: relative;
    height: auto;
}

.blog-container{
    
    height: auto;
}

.nav-links , .logo , .social-links{
    display: none;
}

.website-name{
    font-size: 30px;
    text-align: center;
    width: 90%;
}

i{
    font-size: 40px;
    width: 10%;
    margin: 10px;
}

h1{
    width: 100%;
}

.media-navbar-website-logo{
    display: block;
    margin-left: 10vw;
    height: 10vh;
}

.web-info{
    width: 100%;
    text-align: center;
}

.media-navbar-button{
    display: block;
}

.media-navbar{
    height: auto;
    width: 40vw;
    background-color: black;
    top: 0;
    left: 0;
    display: none;
    position: absolute;
    align-items: center;
    
}

.media-nav-links{
    
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.media-nav-link{
    list-style: none;
    font-size: 20px;
    width: 100%;
    text-align: center;
    transition: ease;
    height: 10vh;
}

.c{
    color: orange;
}

.media-nav-link:hover{
    font-weight: 700;
}

.li-para{
    width: 75vw;
    margin: 0px 35px;
}

p{
    width:94vw
}

.post-header{
    width: 94vw;
}

h2{
    width: 90vw;
    font-size: 25px;
}

.ul-heading{
    width: 74vw;
}

.strong-margin{
    width: 70vw;
}

.post-footer{
    height: auto;
}

.form-container{
    width: 100%;
}

.input-box{
    width: 95%;
    justify-content: space-between;
}

label{
    width: 15vw;
    font-size: 18px;
    
}

input ,textarea{
    width:65%
}


button{
    padding: 5px;
}



}