/* ============== फाइल का नाम: style.css ============== */

/* --- बेसिक और वेरिएबल स्टाइल --- */
:root {
    --primary-color: #0d2c54;
    --secondary-color: #1a5ca1;
    --accent-color: #fca311;
    --text-dark: #212121;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --grey-text: #666;
}
html { scroll-behavior: smooth; }
body { font-family: 'Noto Sans Devanagari', sans-serif; margin: 0; background-color: var(--bg-light); color: var(--text-dark); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
h1, h2, h3, h4, h5, h6, .login-btn { font-family: 'Poppins', sans-serif; font-weight: 600; }
#menu-toggle { display: none; }
.section { padding: 60px 20px; }
.section-title { text-align: center; font-size: 2.2rem; color: var(--primary-color); margin-bottom: 40px; font-weight: 700; }
.page-banner { padding: 50px 20px; background: linear-gradient(rgba(13, 44, 84, 0.8), rgba(13, 44, 84, 0.8)), url('https://i.ibb.co/XF3jYj5/classroom-activity.png') no-repeat center center/cover; color: #fff; text-align: center; }
.page-banner h1 { font-size: 3.5rem; color: #fff; margin: 0; }
.page-banner p { font-size: 1.2rem; color: rgba(255, 255, 255, 0.8); margin-top: 5px; }

/* --- हेडर और टॉप बार --- */
.header-wrapper { background-color: #fff; box-shadow: 0 3px 15px rgba(0,0,0,0.07); }
.top-bar { background-color: var(--primary-color); color: #e0e0e0; padding: 8px 0; font-size: 0.85rem; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar-right a { color: #e0e0e0; text-decoration: none; font-weight: 500; transition: color 0.3s; }
.top-bar-right a:hover { color: var(--accent-color); }
.login-container { position: relative; }
.login-btn { background-color: var(--accent-color); color: var(--primary-color); padding: 6px 16px; border-radius: 5px; font-size: 0.9rem; gap: 8px; display: flex; align-items: center; text-decoration: none; transition: all 0.3s; }
.login-btn:hover { background-color: #ffb74d; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.login-dropdown { display: none; position: absolute; top: 110%; right: 0; background-color: #fff; min-width: 240px; box-shadow: 0 10px 25px rgba(0,0,0,0.15); z-index: 1002; border-radius: 8px; padding: 8px; margin: 0; list-style: none; border: 1px solid #eee; opacity: 0; transform: translateY(10px); transition: all 0.3s ease-in-out; }
.login-container:hover .login-dropdown { display: block; opacity: 1; transform: translateY(0); }
.login-dropdown li a { display: flex; align-items: center; gap: 12px; padding: 12px 15px; text-decoration: none; color: var(--text-dark); border-radius: 5px; font-weight: 500; }
.login-dropdown li a:hover { background-color: var(--bg-light); }
.login-dropdown i { color: var(--secondary-color); }

/* --- मुख्य हैडर --- */
/* --- मुख्य हैडर --- */
.main-header-section {
    padding: 15px 0; /* ऊपर-नीचे थोड़ा पैडिंग */
    border-bottom: 1px solid #eee;
    /* इस कंटेनर से फ्लेक्स पूरी तरह हटा दिया गया है, अब यह एक सामान्य ब्लॉक है */
}
.branding {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%; /* यह ब्रांडिंग सेक्शन को पूरी चौड़ाई देगा */
    margin-bottom: 15px; /* इसके और नीचे वाले संपर्क विवरण के बीच में गैप */
}
.branding.school-details {
  width: 100%;
  box-sizing: border-box;
  text-align: center; /* Optional: if you want content centered */
}
.branding .logo { width: 90px; height: 90px; flex-shrink: 0; }

.branding .school-details .school-main-name {
  font-size: 3em; /* Adjust this value if needed to fit on one line */
  margin-bottom: 0px;
}
.branding .school-details .school-sub-name {
  margin-top: 0px;
}
.branding .school-details .school-address { color: var(--grey-text); font-size: 0.9rem; margin: 6px 0 0 0; line-height: 1.4; }
.school-details {
  width: 100%;
  box-sizing: border-box;
  text-align: center; /* Optional: if you want content centered */
}

.school-details h1 {
  font-size: 3em; /* Adjust this value if needed to fit on one line */
  margin-bottom: 0px;
}

.school-details p {
  margin-top: 0px;
}

.header-contact-details {
    display: flex; /* यह अपने अंदर के आइटम्स को फ्लेक्स में रखेगा */
    align-items: center;
    justify-content: center; /* सभी संपर्क विवरणों को बीच में ले आएगा */
    gap: 40px;
    width: 100%; /* यह कंटेनर भी पूरी चौड़ाई लेगा */
    padding-top: 15px;
    border-top: 1px solid #f5f5f5; /* ऊपर एक हल्की सी लाइन, ताकि यह अलग दिखे */
}
.contact-item { display: flex; align-items: center; gap: 12px; }
.contact-item i { font-size: 1.8rem; color: var(--secondary-color); }
.contact-item .details { display: flex; flex-direction: column; }
.contact-item .details span { font-size: 0.8rem; color: var(--grey-text); text-transform: uppercase; font-weight: 500; }
.contact-item .details strong { font-size: 1rem; color: var(--text-dark); font-weight: 600; }
.contact-item .details a { color: inherit; text-decoration: none; font-weight: 600; }
.contact-item .details a:hover { color: var(--secondary-color); }

/* --- नोटिफिकेशन बार --- */
.notification-bar { background-color: var(--accent-color); color: var(--primary-color); padding: 10px; overflow: hidden; white-space: nowrap; }
.notification-bar p { margin: 0; display: inline-block; padding-left: 100%; animation: scroll-left 40s linear infinite; font-weight: 500; }
@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }

/* --- मुख्य नेविगेशन बार --- */
.main-nav-bar { background-color: var(--primary-color); position: sticky; top: 0; z-index: 1000; }
.main-nav-bar .container { padding: 0; }
.hamburger-menu, .mobile-home-link { display: none; }
.main-navigation { list-style: none; margin: 0; padding: 0; display: flex; }
.main-navigation > li { flex: 1; text-align: center; position: relative; border-left: 1px solid rgba(255, 255, 255, 0.1); }
.main-navigation > li:last-child { border-right: 1px solid rgba(255, 255, 255, 0.1); }
.main-navigation > li > a { color: var(--text-light); padding: 9px 10px; display: block; text-decoration: none; font-size: 0.95rem; text-transform: uppercase; font-weight: 500; transition: background-color 0.3s; }
.main-navigation > li > a:hover, .main-navigation > li > a.active { background-color: var(--secondary-color); }
.dropdown { display: none; position: absolute; left: 0; top: 100%; background-color: #fff; min-width: 260px; box-shadow: 0 8px 25px rgba(0,0,0,0.1); z-index: 1001; list-style: none; padding: 10px 0; margin: 0; opacity: 0; transform: translateY(5px); pointer-events: none; transition: all 0.3s ease-out; border-radius: 0 0 8px 8px; border-top: 3px solid var(--accent-color); }
.main-navigation li:hover > .dropdown { display: block; opacity: 1; transform: translateY(0); pointer-events: auto; }
.dropdown li a { color: var(--text-dark); padding: 13px 25px; text-align: left; text-transform: none; display: flex; gap: 12px; align-items: center; }
.dropdown li a:hover { background-color: var(--bg-light); color: var(--primary-color); }
.dropdown i { color: var(--accent-color); width: 20px; text-align: center; }

/* --- फुटर स्टाइल --- */
.main-footer { background-color: var(--primary-color); color: rgba(255, 255, 255, 0.8); padding: 50px 0 20px 0; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-bottom: 40px; }
.footer-widget h3 { color: var(--accent-color); font-size: 1.2rem; margin-top: 0; margin-bottom: 20px; border-bottom: 2px solid var(--secondary-color); padding-bottom: 10px; }
.footer-widget p, .footer-widget ul li a, .footer-widget .contact-info-footer li { color: rgba(255, 255, 255, 0.8); font-size: 0.95rem; text-decoration: none; transition: all 0.3s; }
.footer-widget ul { list-style: none; padding: 0; }
.footer-widget ul li { margin-bottom: 12px; }
.footer-widget ul.contact-info-footer li { display: flex; align-items: flex-start; gap: 12px; }
.footer-widget ul li a:hover { color: var(--accent-color); padding-left: 5px; }
.footer-widget .contact-info-footer i { margin-top: 5px; width: 15px; }
.footer-social-media a { color: #fff; font-size: 1.5rem; margin-right: 15px; transition: all 0.3s; }
.footer-social-media a:hover { color: var(--accent-color); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid var(--secondary-color); padding-top: 20px; text-align: center; font-size: 0.9rem; }

/* --- होम पेज (index.php) के स्टाइल --- */
.hero-section h1 { font-size: 2.5rem; font-weight: 700; text-shadow: 1px 1px 4px rgba(0,0,0,0.5); margin: 0; }
.hero-section p { font-size: 1.15rem; margin-top: 10px; color: rgba(255,255,255,0.9); font-weight: 300; }
.special-announcement-section { background-color: var(--primary-color); color: var(--text-light); padding: 30px 20px; border-bottom: 4px solid var(--accent-color); }
.special-announcement-box { display: flex; align-items: center; gap: 25px; border: 2px dashed var(--accent-color); padding: 20px; border-radius: 8px; }
.special-announcement-box .icon { font-size: 3rem; color: var(--accent-color); }
.special-announcement-box h3 { font-size: 1.5rem; margin: 0 0 8px 0; }
.special-announcement-box p { margin: 0; font-size: 1rem; line-height: 1.6; }
.welcome-section { background: var(--bg-white); }
.welcome-flex { display: flex; align-items: center; gap: 40px; }
.welcome-text { flex: 1 1 55%; }
.welcome-image { flex: 1 1 45%; }
.welcome-image img { width: 100%; border-radius: 8px; box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.welcome-text h2 { font-size: 1.8rem; text-align: left; margin-bottom: 15px; }
.welcome-text p { font-size: 1rem; line-height: 1.7; color: var(--text-muted); }
.features-section { background: var(--bg-light); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.feature-card { background: #fff; padding: 30px; text-align: center; border-radius: 8px; border: 1px solid #eee; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 10px 25px rgba(13, 44, 84, 0.1); }
.feature-card .icon { font-size: 2.5rem; color: var(--secondary-color); margin-bottom: 15px; }
.feature-card h3 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 8px; }
.feature-card p { font-size: 0.95rem; line-height: 1.6; color: var(--text-muted); }
.news-section { background: var(--bg-white); }
.news-item-container { max-width: 800px; margin: 0 auto; }
.news-item { border-bottom: 1px solid #eee; padding: 20px 10px; display: flex; align-items: flex-start; gap: 20px; }
.news-item:last-child { border-bottom: none; }
.news-item .date-box { background: var(--bg-light); color: var(--primary-color); padding: 10px; border-radius: 5px; text-align: center; min-width: 60px; }
.news-item .date-box span { display: block; font-weight: 700; font-size: 1.5rem; line-height: 1.2; }
.news-item .news-content h4 { font-size: 1.2rem; margin: 0 0 5px 0; color: var(--secondary-color); }
.news-item .news-content p { margin: 0; color: var(--text-dark); line-height: 1.6; }

/* --- About Us Page (about.php) के स्टाइल --- */
.section-intro { max-width: 900px; margin: 0 auto 40px auto; text-align: center; line-height: 1.9; }
.section-intro h3 { font-size: 1.8rem; color: var(--secondary-color); }
.mission-vision-section { background-color: var(--bg-light); }
.mission-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.mission-vision-card { background: #fff; padding: 35px; border-top: 5px solid var(--accent-color); box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08); border-radius: 8px; }
.mission-vision-card h3 { font-size: 2rem; color: var(--primary-color); margin: 0 0 15px 0; display: flex; align-items: center; gap: 15px; }
.mission-vision-card ul { list-style: none; padding: 0; }
.mission-vision-card li { display: flex; gap: 15px; margin-bottom: 15px; align-items: flex-start; line-height: 1.8; }
.mission-vision-card i.fa-check-circle { color: var(--primary-color); font-size: 1.2rem; margin-top: 7px; }
.principal-section { background: #fff; }
.principal-flex { display: flex; align-items: center; gap: 50px; background: var(--bg-light); padding: 40px; border-radius: 8px; }
.principal-img { flex-basis: 30%; text-align: center; flex-shrink: 0; }
.principal-img img { width: 220px; height: 220px; border-radius: 50%; object-fit: cover; border: 8px solid #fff; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); }
.principal-img h3 { margin: 15px 0 0 0; color: var(--primary-color); }
.principal-img p { margin: 5px 0 0 0; font-weight: 500; color: var(--secondary-color); }
.principal-msg { flex-basis: 70%; line-height: 1.8; }
.principal-msg p { margin-bottom: 15px; }
.accordion-container { max-width: 900px; margin: 40px auto 0 auto; }
.accordion-item { border: 1px solid #ddd; border-radius: 8px; margin-bottom: 15px; overflow: hidden; background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.accordion-item input[type="checkbox"] { display: none; }
.accordion-title { display: flex; justify-content: space-between; align-items: center; padding: 20px; cursor: pointer; font-size: 1.3rem; color: var(--primary-color); font-weight: 700; transition: background-color 0.3s; }
.accordion-title:hover { background-color: var(--bg-light); }
.accordion-title .icon { transition: transform 0.3s ease; }
.accordion-item input[type="checkbox"]:checked ~ .accordion-title { background-color: var(--secondary-color); color: #fff; }
.accordion-item input[type="checkbox"]:checked ~ .accordion-title .icon { transform: rotate(180deg); color: #fff; }
.accordion-content { max-height: 0; overflow: hidden; background: #fff; transition: max-height 0.8s ease, padding 0.5s ease; line-height: 1.8; }
.accordion-item input[type="checkbox"]:checked ~ .accordion-content { max-height: 2500px; padding: 0 25px 25px 25px; border-top: 1px solid #ddd; }
.accordion-content h4 { color: var(--secondary-color); border-bottom: 1px solid #eee; padding-bottom: 8px; margin-top: 15px; font-size: 1.1rem; }
.accordion-content ul { padding-left: 20px; }
.accordion-content ul li { margin-bottom: 10px; }


/* --- Academics, Admissions, Facilities, Fees, Gallery, Programs, Contact, Vacancies Pages --- */
.content-card { background: #fff; padding: 30px 40px; border-radius: 8px; box-shadow: 0 5px 25px rgba(0,0,0,0.08); margin-bottom: 40px; }
.content-card h3 { font-size: 2rem; color: var(--secondary-color); margin: 0 0 20px 0; padding-bottom: 15px; border-bottom: 2px solid #eee; display: flex; align-items: center; gap: 15px; }
.content-card ul { line-height: 1.9; color: var(--grey-text); padding-left: 25px; margin-bottom: 0; }
.content-card li { margin-bottom: 10px; }
.data-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.data-table th, .data-table td { border: 1px solid #ddd; padding: 12px 15px; text-align: left; }
.data-table th { background-color: var(--primary-color); color: #fff; font-weight: 600; }
.data-table tr:nth-child(even) { background-color: var(--bg-light); }
.data-table td:first-child { font-weight: 500; color: var(--text-dark); }
.notice { background-color: var(--bg-light); border-left: 5px solid var(--accent-color); padding: 15px; margin-top: 20px; font-style: italic; color: var(--text-muted); }
.content-box { background: #fff; padding: 35px; border-radius: 8px; box-shadow: 0 5px 25px rgba(0,0,0,0.08); margin-bottom: 30px; }
.content-box h3 { font-size: 1.8rem; color: var(--secondary-color); margin-top: 0; }
.content-box ul { line-height: 1.9; padding-left: 20px; color: var(--grey-text); }
.content-box li { margin-bottom: 12px; }
.download-btn { display: inline-block; background: var(--secondary-color); color: #fff; padding: 12px 25px; text-decoration: none; border-radius: 5px; font-weight: 600; transition: background-color 0.3s; margin-top: 10px; }
.download-btn:hover { background: var(--primary-color); }

/* --- Facilities Page --- */
.facility-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.facility-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 25px rgba(0,0,0,0.08); transition: transform 0.3s, box-shadow 0.3s; }
.facility-card:hover { transform: translateY(-8px); box-shadow: 0 12px 30px rgba(0,0,0,0.12); }
.facility-card img { width: 100%; height: 220px; object-fit: cover; }
.facility-card .content { padding: 25px; }
.facility-card h3 { font-size: 1.5rem; color: var(--primary-color); margin: 0 0 10px 0; }
.facility-card p { line-height: 1.7; color: var(--grey-text); margin: 0; }

/* --- Fees Page --- */
.fees-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.fee-table { width: 100%; border-collapse: collapse; }
.fee-table th, .fee-table td { border: 1px solid #ddd; padding: 15px; text-align: left; }
.fee-table th { background-color: var(--primary-color); color: #fff; font-family: 'Poppins', sans-serif; }
.fee-table td.class-name { font-weight: 700; color: var(--secondary-color); }
.payment-info-card { background: #fff; padding: 30px; border-radius: 8px; box-shadow: 0 5px 25px rgba(0,0,0,0.08); }
.payment-info-card h3 { font-size: 1.8rem; color: var(--secondary-color); margin: 0 0 20px 0; border-bottom: 2px solid #eee; padding-bottom: 15px; }
.payment-info-card ul { list-style-type: none; padding: 0; }
.payment-info-card li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 15px; line-height: 1.7; }
.payment-info-card i { color: var(--accent-color); font-size: 1.2rem; margin-top: 5px; }
.online-payment-btn { display: block; width: 100%; background: var(--accent-color); color: var(--primary-color); padding: 15px; text-align: center; text-decoration: none; border-radius: 5px; font-weight: 700; font-size: 1.2rem; transition: all 0.3s; margin-top: 20px; }
.online-payment-btn:hover { background: #ffb74d; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }

/* --- Gallery Page --- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.gallery-item { border-radius: 8px; overflow: hidden; position: relative; cursor: pointer; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.gallery-item img { width: 100%; height: 250px; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(13, 44, 84, 0.9), transparent); color: #fff; padding: 40px 20px 20px 20px; font-weight: 600; font-size: 1.1rem; transform: translateY(100%); transition: transform 0.4s ease; }
.gallery-item:hover .overlay { transform: translateY(0); }

/* --- Programs Page --- */
.program-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.program-card { background: #fff; border: 1px solid #eee; border-radius: 8px; text-align: center; padding: 30px; transition: all 0.3s; }
.program-card:hover { border-color: var(--accent-color); box-shadow: 0 8px 25px rgba(0,0,0,0.07); }
.program-card .icon { font-size: 3.5rem; color: var(--secondary-color); margin-bottom: 20px; }
.program-card h3 { font-size: 1.5rem; color: var(--primary-color); margin: 0 0 10px 0; }
.program-card p { line-height: 1.7; color: var(--grey-text); margin: 0; }

/* --- Contact Page --- */
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: flex-start; }
.contact-info-card { background: #fff; padding: 30px; border-radius: 8px; box-shadow: 0 5px 25px rgba(0,0,0,0.08); }
.contact-info-card h3 { font-size: 1.8rem; color: var(--secondary-color); margin: 0 0 20px 0; }
.contact-info-card ul { list-style-type: none; padding: 0; }
.contact-info-card li { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 25px; line-height: 1.6; color: var(--grey-text); }
.contact-info-card i { color: var(--primary-color); font-size: 1.8rem; width: 30px; }
.contact-info-card a { color: var(--grey-text); text-decoration: none; }
.contact-info-card a:hover { color: var(--secondary-color); }
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--text-dark); }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 5px; font-family: inherit; font-size: 1rem; }
.contact-form button { background: var(--primary-color); color: #fff; padding: 15px 30px; border: none; border-radius: 5px; font-size: 1.1rem; font-weight: 700; cursor: pointer; transition: background-color 0.3s; }
.contact-form button:hover { background: var(--secondary-color); }
.map-container { margin-top: 40px; height: 400px; border-radius: 8px; overflow: hidden; }
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* --- Vacancies Page --- */
.vacancies-container { max-width: 900px; margin: 0 auto; }
.vacancy-item { background: #fff; border-left: 5px solid var(--secondary-color); border-radius: 8px; padding: 25px 30px; margin-bottom: 25px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.vacancy-item h3 { font-size: 1.8rem; color: var(--primary-color); margin: 0 0 15px 0; }
.vacancy-item .details { color: #e74c3c; font-weight: bold; margin-bottom: 20px; }
.vacancy-item p { margin: 0; line-height: 1.7; }
.no-openings { text-align: center; padding: 40px; background-color: var(--bg-light); border: 2px dashed #ddd; border-radius: 8px; }

/* --- Alumni Pages --- */
.alumni-hero { padding: 80px 20px; text-align: center; background: linear-gradient(rgba(13, 44, 84, 0.9), rgba(13, 44, 84, 0.92)), url('https://i.ibb.co/68S4Lp0/principal-image.png') no-repeat center center/cover; color: #fff; }
.alumni-hero h1 { font-size: 4rem; font-weight: 800; margin: 0 0 10px 0; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); }
.alumni-hero p { font-size: 1.5rem; color: rgba(255,255,255,0.85); max-width: 800px; margin: 0 auto 30px auto; }
.register-cta-btn { background-color: var(--accent-color); color: var(--primary-color); padding: 15px 35px; text-decoration: none; font-size: 1.2rem; font-weight: 700; border-radius: 50px; transition: all 0.3s ease; box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4); }
.register-cta-btn:hover { background-color: #fff; transform: translateY(-5px); box-shadow: 0 8px 25px rgba(255, 193, 7, 0.6); }
.alumni-grid-section { padding: 60px 20px; }
.alumni-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 15px; }
.alumni-grid-item { aspect-ratio: 1 / 1; cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease; border-radius: 50%; overflow: hidden; border: 4px solid #fff; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.alumni-grid-item img { width: 100%; height: 100%; object-fit: cover; }
.alumni-grid-item:hover { transform: scale(1.1); z-index: 10; box-shadow: 0 8px 30px rgba(13, 44, 84, 0.3); }
.alumni-modal { display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.6); animation: fadeIn 0.5s; }
.modal-content { background-color: #fefefe; margin: 10% auto; padding: 40px; border: 1px solid #888; width: 80%; max-width: 600px; border-radius: 15px; text-align: center; position: relative; animation: slideIn 0.5s; }
.modal-close { color: #aaa; position: absolute; top: 15px; right: 25px; font-size: 28px; font-weight: bold; cursor: pointer; }
.modal-img { width: 150px; height: 150px; border-radius: 50%; border: 5px solid var(--accent-color); margin-bottom: 20px; object-fit: cover; }
.modal-name { font-size: 2.5rem; color: var(--primary-color); margin: 0; }
.modal-batch { font-size: 1rem; color: #777; margin-bottom: 15px; }
.modal-profession { font-size: 1.5rem; color: var(--secondary-color); margin-bottom: 20px; font-weight: 600; }
.modal-message { font-style: italic; color: #555; border-top: 1px solid #eee; padding-top: 20px; }
@keyframes fadeIn { from {opacity: 0;} to {opacity: 1;} }
@keyframes slideIn { from {transform: translateY(-50px);} to {transform: translateY(0);} }
.form-section { background-color: var(--bg-light); padding: 80px 20px; }
.registration-form-container { max-width: 700px; margin: 0 auto; background: #fff; padding: 40px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.registration-form-container h2 { text-align: center; font-size: 2.5rem; color: var(--primary-color); margin: 0 0 25px 0; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; }
.form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 5px; box-sizing: border-box; font-size: 1rem; }
.form-group-checkbox { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }
.submit-btn { background: var(--primary-color); color: #fff; padding: 15px; border: none; border-radius: 5px; font-size: 1.1rem; font-weight: 700; cursor: pointer; width: 100%; transition: all 0.3s; }
.submit-btn:hover { background: var(--secondary-color); }

/* --- लॉगिन पेज --- */
.login-page-wrapper { display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 50px 20px; background-color: var(--bg-light); }
.login-box { font-family: sans-serif; background: #fff; padding: 40px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); width: 100%; max-width: 400px; text-align: center; }
.login-box .logo { width: 80px; margin-bottom: 20px; }
.login-box h2 { color: #0d2c54; margin-bottom: 20px; }
.login-box .input-group { margin-bottom: 20px; text-align: left; }
.login-box .input-group label { display: block; margin-bottom: 5px; font-weight: 600; }
.login-box .input-group input { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 5px; box-sizing: border-box; }
.login-box .login-btn { color: #fff; padding: 12px; border: none; border-radius: 5px; width: 100%; cursor: pointer; font-size: 1rem; }
.login-box .error { color: red; background: #ffebee; border: 1px solid #ffcdd2; padding: 10px; border-radius: 5px; margin-bottom: 15px; }
.login-box .back-to-home { margin-top: 25px; }
.login-box .back-to-home a { color: #0d2c54; text-decoration: none; font-size: 0.9rem; }
.login-box .back-to-home a:hover { text-decoration: underline; }
/* स्पेसिफिक लॉगिन बटन कलर */
#loginForm .btn-primary, .admin-login-btn { background-color: var(--primary-color); border-color: var(--primary-color); }
#loginForm .btn-primary:hover, .admin-login-btn:hover { background-color: var(--secondary-color); }
.student-login-btn { background: #007bff; }
.teacher-login-btn { background: #28a745; }
.parent-login-btn { background: #ffc107; color: #212529; font-weight: 600; }
.loader { border: 4px solid #e0e0e0; border-radius: 50%; border-top: 4px solid var(--primary-color); width: 28px; height: 28px; animation: spin 0.7s linear infinite; margin: 10px auto; display: none; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }


/* --- ★★★★★ नया और बेहतर रिस्पॉन्सिव CSS ★★★★★ --- */
@media (max-width: 1200px) {
    .main-header-section { flex-direction: column; align-items: flex-start; gap: 15px; }
    .branding .school-details .school-main-name { font-size: 1.8rem; }
}
@media (max-width: 1024px) {
    .branding .school-details .school-main-name { font-size: 1.6rem; }
    .branding .school-details .school-address { font-size: 0.85rem; }
    .contact-item .details strong { font-size: 0.9rem; }
    .main-navigation > li > a { font-size: 0.85rem; padding: 9px 10px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 992px) {
    .principal-flex { flex-direction: column; text-align: center; gap: 30px; }
    .principal-msg { text-align: left; }
    .fees-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .school-details h1 {
    font-size: 20px; /* Apply the smaller font size for mobile */
    white-space: normal; /* Allow wrapping if the smaller size fits */
    overflow: visible;
    text-overflow: clip;
  }
    .section { padding: 40px 10px; }
    .section-title { font-size: 1.8rem; }
    .page-banner h1 { font-size: 2.5rem; }
    .page-banner p { font-size: 1rem; }
    .hero-section { padding: 60px 20px; }
    .hero-section h1 { font-size: 2.0rem; }
    .hero-section p { font-size: 1.1rem; }
    .welcome-flex { flex-direction: column; }
    .top-bar .container { flex-direction: column; text-align: center; gap: 15px; }
    .main-header-section { padding: 15px 10px; align-items: center; }
    
    /* ★★★ हेडर का नया, अंतिम और सबसे प्रमुख मोबाइल स्टाइल ★★★ */
    .branding { flex-direction: column; text-align: center; gap: 5px; }
    .branding .logo { display: block; width: 70px; height: 70px; margin: 0 auto 10px auto; }
    .branding .school-details .school-main-name { font-size: 4.8rem; line-height: 1.1; white-space: normal; margin-bottom: 10px; }
    .branding .school-details .school-sub-name { font-size: 2.4rem; line-height: 1.2; margin-top: 0; }
    .branding .school-details .school-address { font-size: 0.9rem; max-width: 95%; margin: 8px auto 0; line-height: 1.5; }

    .header-contact-details { flex-direction: column; gap: 15px; align-items: center; margin-top: 15px; width: 100%; }
    .contact-item { width: 100%; justify-content: center; border-top: 1px solid #f0f0f0; padding-top: 10px; }
    .contact-item:first-child { border-top: none; padding-top: 0; }
    .header-contact-details .contact-item .details span { display: none; }
    .header-contact-details .contact-item:nth-child(3) { display: none; }
    
    .main-nav-bar .container { display: flex; justify-content: space-between; align-items: center; height: 52px; position: relative; padding: 0 15px; }
    .mobile-home-link { display: block; color: var(--text-light); font-size: 1rem; font-family: 'Poppins', sans-serif; text-decoration: none; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 180px; }
    .hamburger-menu { display: block; font-size: 1.5rem; cursor: pointer; color: var(--text-light); z-index: 1005; padding: 10px; }
    .main-navigation { display: none; flex-direction: column; width: 100%; background-color: var(--primary-color); position: absolute; top: 52px; left: 0; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
    #menu-toggle:checked ~ .main-navigation { display: flex; }
    .main-navigation > li { text-align: left; border-top: 1px solid rgba(255, 255, 255, 0.1); }
    .main-navigation > li > a { padding: 15px 20px; font-size: 1.1rem; }
    .dropdown { position: static; display: none; background-color: rgba(0,0,0,0.15); min-width: 100%; box-shadow: none; border: none; transform: none !important; opacity: 1 !important; }
    .main-navigation li:hover > .dropdown { display: block; }
    .dropdown li a { padding: 12px 20px 12px 40px; font-size: 1rem; color: var(--text-light); }
    .dropdown li a:hover { background-color: var(--secondary-color); }
    .dropdown i { color: var(--accent-color); }
    
    .footer-grid { grid-template-columns: 1fr; }
    .footer-widget { text-align: center; }
    .footer-widget ul { display: inline-block; text-align: left; }
    .footer-widget h3 { display: inline-block; }
    .mission-vision-grid { grid-template-columns: 1fr; }
    .accordion-title { font-size: 1.1rem; padding: 15px; }
    .content-card h3 { font-size: 1.6rem; }
    .content-card, .login-box { padding: 20px; }
}
@media (min-width: 769px) {
    .mobile-home-link { display: none; }
}
/* =================================================================== */
/* ★★★★★ नया फ्लोटिंग प्रमोशनल विजेट स्टाइल ★★★★★ */
/* =================================================================== */
.promo-widget-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

.promo-widget-fab {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    animation: pulse-animation 2s infinite;
}

.promo-widget-fab:hover {
    transform: scale(1.1);
    animation-play-state: paused;
}

.promo-widget-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    border: 1px solid #eee;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease-in-out;
}

.promo-widget-box.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.promo-widget-box h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.promo-widget-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--grey-text);
    margin: 0 0 15px 0;
}

.promo-widget-box .guide-btn {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0 rgba(252, 163, 17, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(252, 163, 17, 0); }
    100% { box-shadow: 0 0 0 0 rgba(252, 163, 17, 0); }
}
/* =================================================================== */
/* ★★★ डैशबोर्ड पेजों के लिए कॉमन स्टाइल ★★★ */
/* =================================================================== */

.dashboard-header {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.dashboard-header h1 {
    margin: 0;
    font-size: 1.5rem;
}

.dashboard-header .logout-btn {
    color: var(--primary-color);
    background: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.dashboard-header .logout-btn:hover {
    background-color: var(--accent-color);
}

.dashboard-container {
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.welcome-msg {
    font-size: 1.2rem;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid var(--accent-color);
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.widget-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.widget {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    text-align: center;
    border-top: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-top-color: var(--accent-color);
}

.widget h3 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.widget p {
    color: var(--grey-text);
    line-height: 1.6;
    margin-bottom: 0;
}

.widget p a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
}

.widget p a:hover {
    text-decoration: underline;
    color: var(--primary-color);
}

.teacher-profile {
 background-color: #f9f9f9;
 border-radius: 10px;
 box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
 margin: 20px;
 padding: 20px;
 text-align: center;
 transition: transform 0.3s ease-in-out;
 border-top: 5px solid var(--primary-color, #007bff); /* एक रंगीन टॉप बॉर्डर */
}

.teacher-profile:hover {
 transform: translateY(-5px);
 box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.teacher-profile img {
 width: 120px;
 height: 120px;
 border-radius: 50%;
 object-fit: cover;
 margin-bottom: 15px;
 border: 5px solid #fff; /* फोटो के चारों ओर सफेद बॉर्डर */
 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.teacher-profile h3 {
 color: var(--heading-color, #333);
 margin-bottom: 5px;
}

.teacher-profile .designation {
 color: var(--text-muted, #6c757d);
 font-size: 0.9rem;
 margin-bottom: 15px;
}

.teacher-profile .details {
 text-align: left;
 margin-bottom: 15px;
}

.teacher-profile .details p {
 margin-bottom: 8px;
 color: var(--text-color, #495057);
 display: flex;
 align-items: center;
 gap: 8px;
}

.teacher-profile .details i {
 color: var(--accent-color, #28a745); /* आइकन का रंग */
}

.teacher-profile .bio {
 color: var(--body-text-color, #555);
 font-size: 0.95rem;
 line-height: 1.6;
}

/* और भी रंगीन विकल्प */
.teacher-profile:nth-child(even) {
 border-top-color: #ffc107; /* पीला */
 background-color: #fffaf0;
}

.teacher-profile:nth-child(odd) {
 border-top-color: #28a745; /* हरा */
 background-color: #e9f9ef;
}

/* आप और भी रंग संयोजन जोड़ सकते हैं */
/* ============== फाइल का नाम: style.css (अंतिम और संपूर्ण संस्करण) ============== */

/* --- बेसिक और वेरिएबल स्टाइल --- */
:root {
    --primary-color: #0d2c54; --secondary-color: #1a5ca1; --accent-color: #fca311;
    --text-dark: #212121; --text-light: #ffffff; --bg-light: #f8f9fa; --grey-text: #666;
    --success-color: #198754; --danger-color: #dc3545; --warning-color: #ffc107; --info-color: #0dcaf0;
    --border-color: #dee2e6; --font-family: 'Poppins', sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: 'Noto Sans Devanagari', sans-serif; margin: 0; background-color: var(--bg-light); color: var(--text-dark); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
h1, h2, h3, h4, h5, h6, .login-btn { font-family: 'Poppins', sans-serif; font-weight: 600; }
#menu-toggle { display: none; }
.section { padding: 60px 20px; }
.section-title { text-align: center; font-size: 2.2rem; color: var(--primary-color); margin-bottom: 40px; font-weight: 700; }
.page-banner { padding: 50px 20px; background: linear-gradient(rgba(13, 44, 84, 0.8), rgba(13, 44, 84, 0.8)), url('https://i.ibb.co/XF3jYj5/classroom-activity.png') no-repeat center center/cover; color: #fff; text-align: center; }
.page-banner h1 { font-size: 3.5rem; color: #fff; margin: 0; }
.page-banner p { font-size: 1.2rem; color: rgba(255, 255, 255, 0.8); margin-top: 5px; }

/* ... (आपका बाकी का पूरा मौजूदा CSS कोड यहाँ आएगा, जैसा आपने पहले दिया था) ... */
/* ... (यह सुनिश्चित करें कि आपका सारा पुराना कोड यहाँ मौजूद है) ... */

/* =================================================================== */
/* ★★★★★ अटेंडेंस सिस्टम के लिए नया, एकीकृत और आकर्षक स्टाइल ★★★★★ */
/* =================================================================== */

/* --- कस्टम ड्रॉपडाउन का नया स्टाइल --- */
.custom-select-wrapper { position: relative; display: block; width: 100%; font-family: 'Poppins', sans-serif; }
.custom-select-wrapper select { -webkit-appearance: none; -moz-appearance: none; appearance: none; width: 100%; padding: 12px 40px 12px 15px; border: 1px solid #ced4da; border-radius: 5px; background-color: #fff; color: var(--text-dark); font-size: 1rem; font-weight: 500; cursor: pointer; transition: all .2s ease-in-out; }
.custom-select-wrapper select:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 4px rgba(13, 44, 84, 0.2); }
.custom-select-wrapper::after { content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; top: 50%; right: 15px; transform: translateY(-50%); color: var(--secondary-color); pointer-events: none; transition: all 0.3s ease; }

/* --- मैसेज और नोटिस स्टाइल --- */
.message { padding: 15px; border-radius: 5px; margin: 20px 0; font-weight: 500; border: 1px solid transparent; }
.message.success { background-color: #d1e7dd; color: #0f5132; border-color: #badbcc; }
.message.error { background-color: #f8d7da; color: #842029; border-color: #f5c2c7; }
.message.notice { background-color: #fff3cd; color: #664d03; border-color: #ffecb5; }

/* --- अटेंडेंस पेज के लिए स्टाइल --- */
.status-radio { display: flex; gap: 20px; align-items: center; }
.status-radio label { margin-bottom: 0; cursor: pointer; font-size: 1.1rem; }
.status-radio input { width: auto; transform: scale(1.2); cursor: pointer; }
.reason-box { display: none; margin-top: 10px; }
.reason-box input { padding: 10px; }
.table-responsive-wrapper { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--border-color); border-radius: 5px; margin-top: 20px; }
.table-responsive-wrapper .data-table { margin-top: 0; border: none; min-width: 600px; }
.data-table th, .data-table td { white-space: nowrap; }
.data-table tr.absent-row td { background-color: #f8d7da !important; color: #58151c; }

/* --- रिपोर्ट पेज का नया डैशबोर्ड स्टाइल --- */
.report-dashboard { display: grid; grid-template-columns: 1fr 2fr; gap: 30px; align-items: center; margin-bottom: 30px; }
.progress-circle { position: relative; width: 180px; height: 180px; border-radius: 50%; background: conic-gradient(var(--success-color) 0deg, var(--bg-light) 0deg); display: flex; justify-content: center; align-items: center; margin: 0 auto; transition: background 1s ease-in-out; }
.progress-circle::before { content: ''; position: absolute; width: 150px; height: 150px; background: #fff; border-radius: 50%; }
.progress-circle .value-container { position: relative; font-family: 'Poppins', sans-serif; font-size: 2.8rem; font-weight: 700; color: var(--success-color); }
.progress-circle .value-container sup { font-size: 1.5rem; font-weight: 600; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.stat-card { background: var(--bg-light); padding: 20px; border-radius: 8px; display: flex; align-items: center; gap: 15px; border-left: 5px solid; }
.stat-card .icon { font-size: 2.5rem; }
.stat-card .info h4 { margin: 0; font-size: 1rem; color: var(--grey-text); }
.stat-card .info p { margin: 0; font-size: 1.8rem; font-weight: 600; }
.stat-total { border-color: var(--primary-color); } .stat-total .icon { color: var(--primary-color); }
.stat-present { border-color: var(--success-color); } .stat-present .icon { color: var(--success-color); }
.stat-absent { border-color: var(--danger-color); } .stat-absent .icon { color: var(--danger-color); }
.stat-unmarked { border-color: var(--secondary-color); } .stat-unmarked .icon { color: var(--secondary-color); }
.status-present { color: var(--success-color); font-weight: 600; }
.status-absent { color: var(--danger-color); font-weight: 600; }

/* --- फॉलो-अप डैशबोर्ड (एक्शन सेंटर) --- */
body.dashboard-open { overflow: hidden; }
.dashboard-layout { display: flex; height: calc(100vh - 190px); }
.sidebar { width: 100%; max-width: 420px; background-color: var(--bg-light); border-right: 1px solid var(--border-color); display: flex; flex-direction: column; }
.main-content-wrapper { flex-grow: 1; padding: 25px; overflow-y: auto; background-color: #fff; }
.sidebar-header { padding: 20px; border-bottom: 1px solid var(--border-color); }
.filters { padding: 20px; background-color: #fff; }
.student-list { overflow-y: auto; flex-grow: 1; padding: 15px; }
.student-card { display: flex; align-items: center; padding: 15px; margin-bottom: 12px; border-radius: 8px; cursor: pointer; background: #fff; transition: all 0.2s; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.student-card:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.student-card.active { background: #e9f5ff; border: 1px solid var(--primary-color); }
.status-light { width: 10px; height: 10px; border-radius: 50%; margin-left: auto; }
.status-new-case { background-color: var(--primary-color); }
.status-contacted { background-color: var(--accent-color); }
.status-resolved { background-color: var(--success-color); }
.focus-panel { position: fixed; top: 0; right: -100%; width: 100%; max-width: 500px; height: 100%; background: #fff; box-shadow: -5px 0 25px rgba(0,0,0,0.1); z-index: 1002; transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); display: flex; flex-direction: column; }
.focus-panel.active { right: 0; }
.panel-header { padding: 20px; background: linear-gradient(to right, var(--primary-color), var(--secondary-color)); color: #fff; }
.panel-header h3 { color: #fff; margin: 0; }
.panel-body { padding: 20px; overflow-y: auto; flex-grow: 1; }
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); display: none; z-index: 1001; }
.insight-bar { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px; margin-bottom: 20px; }
.insight-card { background: #fff; padding: 20px; border-radius: 8px; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.insight-card h4 { margin: 0 0 5px 0; color: var(--grey-text); }
.insight-card p { font-size: 2rem; font-weight: 700; margin: 0; }
.progress-bar-container { width: 100%; background-color: var(--border-color); border-radius: 20px; margin-bottom: 20px; }
.progress-bar { height: 10px; background: linear-gradient(to right, var(--accent-color), var(--success-color)); border-radius: 20px; }
.action-log { max-height: 200px; overflow-y: auto; border: 1px solid #eee; padding: 10px; margin-top: 10px; border-radius: 5px; }
.log-item { display: flex; gap: 10px; border-bottom: 1px dashed #eee; padding: 8px 0; }
.log-item small { color: var(--grey-text); }
.quick-actions button { font-size: 0.85rem; padding: 5px 10px; width: auto; margin-right: 5px; margin-top: 5px; background: var(--secondary-color); color: #fff; border:none; border-radius:20px; cursor:pointer;}
.quick-actions button:hover { background: var(--primary-color); }

@media (max-width: 992px) {
    .dashboard-layout { flex-direction: column; height: auto; }
    .sidebar { max-width: 100%; height: auto; }
    .main-content-wrapper.active { display: block; }
    .sidebar.details-active { display: none; }
    .report-dashboard { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
}