/* मुख्य सेटिंग्ज */
body {
    font-family: 'Poppins', sans-serif !important;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6;
    transition: all 0.3s ease;
    letter-spacing: -0.2px !important;
    line-height: 1.6 !important;
    -webkit-font-smoothing: antialiased;
}

/* हेडर डिझाईन */
header {
    background: linear-gradient(135deg, #002f6c, #004aad);
    color: white;
    text-align: center;
    padding: 40px 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

header nav a {
    color: #ffffff !important;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 700 !important;
    font-size: 17px !important;
    opacity: 1 !important;
    filter: none !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5) !important;
    transition: 0.3s;
}

header nav a:hover {
    color: #ffcc00 !important;
}

/* कंटेनर आणि बॉक्स लेआउट */
.container {
    display: flex;
    align-items: stretch;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 40px 10%;
}

.box {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    min-width: 300px;
    flex: 1;
}

/* इमेज सेटिंग */
.box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* मजकूर सेटिंग */
#content-text {
    font-weight: 500 !important;
    color: #111 !important;
    line-height: 1.8 !important;
    text-align: justify;
}

#content-button {
    background-color: #004aad !important;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 20px;
    transition: 0.3s;
}

#content-button:hover {
    background-color: #0066ff !important;
    transform: scale(1.05);
}

/* डार्क मोड सेटिंग */
body.dark-mode {
    background-color: #121212;
    color: #e0e0e0;
}

body.dark-mode .box {
    background-color: #1e1e1e;
    color: white;
}

body.dark-mode #content-text {
    color: #ddd !important;
}

/* फुटर */
footer {
    background: linear-gradient(90deg, #002f6c, #004aad) !important;
    color: white !important;
    padding: 20px 0;
    text-align: center;
    margin-top: 50px;
}
