/* Updated Main CSS with Modern Design */
:root {
    --primary-color: #1a5276;
    --secondary-color: #2980b9;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #777;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
    --font-main: 'Poppins', sans-serif;
    --font-marathi: 'Noto Sans Devanagari', sans-serif;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Mukta','Noto Sans Devanagari', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #f9f9f9;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.5rem 0;
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 100;
}

.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.logo {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-marathi);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.tagline {
    font-size: 1.1rem;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

/* Navigation */
.main-nav {
    background-color: var(--dark-color);
    position: sticky;
    top: 0;
    z-index: 90;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    display: block;
    padding: 1rem 1.5rem;
    color: white;
    font-weight: 500;
    transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.main-nav a i {
    margin-right: 8px;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    padding: 10px;
    font-size: 1.5rem;
    color: white;
}

/* Content Layout */
.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 30px 0;
}

.main-content {
    flex: 1;
    min-width: 300px;
}

.sidebar {
    width: 280px;
}

/* Section Styling */
.section-title {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    color: var(--primary-color);
    font-family: var(--font-marathi);
    font-weight: 500;
    font-size: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

/* Profile Cards */
.profile-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 2rem 0;
}

.profile-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    overflow: hidden;
    border: 3px solid var(--light-color);
    position: relative;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-placeholder {
    width: 100%;
    height: 100%;
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 3rem;
}

.profile-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-marathi);
}

.profile-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.profile-designation {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Group Photo Section */
.group-photo-section {
    margin: 2.5rem 0;
}

.group-photo-container {
    margin-top: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.group-photo-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.group-photo-container img {
    display: block;
    width: 100%;
    height: auto;
}

.photo-caption {
    text-align: center;
    margin-top: 0.5rem;
    font-style: italic;
    color: var(--text-light);
}

/* Birthday Section */
.birthdays-section {
    margin: 2.5rem 0;
}

.birthday-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 1rem;
}

.birthday-card {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    width: 150px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.birthday-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.birthday-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.5rem;
}

.birthday-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--light-color);
    margin: 0 auto 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 2rem;
}

/* Sidebar Styles */
.sidebar-nav {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 1.5rem;
}

.sidebar-nav ul {
    list-style: none;
}

.sidebar-nav li a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-color);
    border-left: 3px solid transparent;
    transition: var(--transition);
    font-family: var(--font-marathi);
}

.sidebar-nav li a:hover,
.sidebar-nav li a.active {
    background: rgba(41, 128, 185, 0.1);
    border-left-color: var(--primary-color);
    color: var(--primary-color);
}

.sidebar-nav li a i {
    margin-right: 0.5rem;
    width: 20px;
    text-align: center;
}

.quick-links {
    background: white;
    border-radius: 10px;
    padding: 1.25rem;
    box-shadow: var(--box-shadow);
}

.quick-links h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-family: var(--font-marathi);
}

.quick-links ul {
    list-style: none;
}

.quick-links li a {
    display: block;
    padding: 0.5rem 0;
    color: var(--text-color);
    transition: var(--transition);
}

.quick-links li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.quick-links li a i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.birthday-widget {
    background: white;
    border-radius: 10px;
    padding: 1.25rem;
    box-shadow: var(--box-shadow);
    margin-top: 1.5rem;
}

.birthday-widget h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-family: var(--font-marathi);
}

.birthday-widget ul {
    list-style: none;
}

.birthday-widget li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.birthday-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 0.75rem;
}

.birthday-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    margin-right: 0.75rem;
}

.birthday-name {
    font-weight: 500;
    font-size: 0.9rem;
}

.birthday-designation {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Footer Styles */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 2.5rem 0 0;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
    font-family: var(--font-marathi);
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-section p,
.footer-section li {
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

.footer-section a {
    color: white;
    transition: var(--transition);
}

.footer-section a:hover {
    opacity: 0.7;
}

.footer-section i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 1.25rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: var(--primary-color);
}

.btn-secondary {
    background: var(--text-light);
}

.btn-view-all {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(41, 128, 185, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Alert Messages */
.alert {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Announcements */
.announcement-list {
    margin-top: 1.5rem;
}

.announcement-item {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--box-shadow);
}

.announcement-item h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.announcement-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.announcement-date i {
    margin-right: 0.5rem;
}

.announcement-content {
    line-height: 1.7;
}

/* Circulars Page */
.circular-filters {
    margin: 1.5rem 0;
}

.filter-form {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.circular-list {
    margin-top: 1.5rem;
}

.circular-item {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.circular-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.circular-icon {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--danger-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.circular-details {
    flex: 1;
}

.circular-details h3 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.circular-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.circular-meta i {
    margin-right: 0.25rem;
}

.btn-download {
    background: var(--success-color);
    margin-left: 1rem;
}

/* Gallery Page */
.gallery-albums {
    margin: 1.5rem 0;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.album-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.album-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.album-cover {
    height: 150px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-info {
    padding: 1rem;
}

.album-info h3 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.album-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .photo-overlay {
    opacity: 1;
}

.photo-overlay i {
    color: white;
    font-size: 1.5rem;
}

/* Contact Page */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

.contact-info {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
}

.contact-form {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
}

.contact-form .form-group {
    margin-bottom: 1.25rem;
}

.map-container {
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        order: -1;
    }

    .main-nav ul {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .main-nav ul.active {
        display: flex;
    }

    .profile-cards {
        grid-template-columns: 1fr;
    }

    .circular-item {
        flex-direction: column;
        text-align: center;
    }

    .circular-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .btn-download {
        margin-left: 0;
        margin-top: 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.no-data {
    padding: 2rem;
    text-align: center;
    color: var(--text-light);
    font-style: italic;
}

/* Print Styles */
@media print {

    .main-nav,
    .sidebar,
    .footer {
        display: none;
    }

    body {
        background: none;
        color: black;
        font-size: 12pt;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }
}/* Footer Styles */
.footer {
    background: var(--primary-color);
    color: white;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 50px 0 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-section p {
    margin-bottom: 15px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-section i {
    color: var(--accent-color);
    width: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-links i {
    font-size: 1.2rem;
    color: inherit;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Quick Links Section (Optional - if you want to add more sections) */
.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.8rem;
    color: var(--accent-color);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px 20px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section p {
        justify-content: center;
        text-align: left;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links a {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 30px 15px 15px;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
        padding: 0 10px;
    }
}