/*
Theme Name: MY YOJANA THEME
Theme URI: https://yourdomain.com/
Author: Your Name
Version: 1.0
Description: MY YOJANA THEME एक responsive वर्डप्रेस थीम।
*/
* {margin:0;padding:0;box-sizing:border-box;}
body {font-family:Arial,sans-serif;background:#f7faff;}
.navbar {background:#0b2471;color:white;display:flex;justify-content:space-around;align-items:center;padding:12px 20px;}
.logo {font-size:20px;font-weight:bold;}
.nav-list ul {list-style:none;display:flex;gap:24px;}
.nav-list ul li a {color:white;text-decoration:none;font-size:16px;padding:6px 14px;border-radius:5px;}
.nav-list ul li a:hover {background:#fedd59;color:#0b2471;}
.menu-toggle {display:none;flex-direction:column;cursor:pointer;gap:5px;}
.menu-toggle span {width:26px;height:3px;background:white;}
.nav {display:block;}
footer {background:#0b2471;color:white;text-align:center;padding:16px 0;margin-top:32px;}
main {max-width:1000px;margin:24px auto 0;background:white;padding:24px 20px;border-radius:8px;box-shadow:0 0 6px #0002;}
th, td {padding:8px;border-bottom:1px solid #eee;}
th {background:#f5f5f5;}

@media (max-width:768px) {
  .nav-list ul {flex-direction:column;gap:0;}
  .nav {position:fixed;top:56px;right:-100%;width:200px;height:100vh;background:#0b2471;transition:right 0.3s;z-index:9991;}
  .nav.active {right:0;}
  .nav-list ul li {padding:18px 4px;border-bottom:1px solid #2222;}
  .menu-toggle {display:flex;}
}

/* Hamburger Animation */
.menu-toggle.open span:nth-child(1) {transform:rotate(45deg) translate(6px,6px);}
.menu-toggle.open span:nth-child(2) {opacity:0;}
.menu-toggle.open span:nth-child(3) {transform:rotate(-45deg) translate(7px,-6px);}
.button-container{
  display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    background-color: #f8f9fc;
    border-radius: 12px;
}
.button-blue{
  background-color: #007bff;
}
.button-red{
  background-color: #dc3545;
}
.button-orange{
  background-color: #fd7e14;
}
.button-green{
  background-color: #28a745;
}
.button-purple{
  background-color: #6f42c1;
}
.custom-button {
   color: #ffffff !important;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 20px;
    text-align: center;
    text-decoration: none !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s 
ease-in-out, box-shadow 0.2s 
ease-in-out;
    display: inline-block;
}

.footer-widget {
    justify-content: space-between;
    gap: 60px 20px;
    margin-bottom: 60px;
    text-align: left;
    line-height: 1.5;
}
.about-us, .site-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.contact, .footer-widget {
    display: flex;
    flex-wrap: wrap;
}
.copyright, .footer-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 950px;
}
.footer-outer {
    padding: 60px 30px 90px;
}
.site-links ul {
    display: block;
    list-style-type: none;
}
.site-links a, .contact a {
    color: #c6c6c6;
    text-decoration: none;
    height: 14px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
}
.skip-to-content, .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
section{
  margin-bottom: 25px;
}
@media (min-width: 721px) {
    .about-us {
        max-width: 45%;
    }
}