/* Internal Complaint Committee Page Styles - Central University of Gujarat */

:root {
    --orange: #f57c00;
    --blue: #005cb9;
    --white: #ffffff;
    --dark: #333333;
    --light-gray: #f8f9fa;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f8f9fa;
}

/* Page Header */
.page-header {
    background: var(--orange);
    color: var(--white);
    margin-top: 24px; /* Space for quick menu + navbar */
    padding: 20px 0 !important;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--white) !important;
}

.page-header p {
    font-size: 18px;
}

.breadcrumb {
    background: transparent;
    font-size: 0.95rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.5rem 1rem;
    margin: 0 auto;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #fff;
    font-weight: 500;
}

@media (max-width: 576px) {
    .breadcrumb {
        font-size: 0.85rem;
        padding: 0.25rem 0.5rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 30px 0;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
}

/* Main Content Structure */
.main-content {
    padding: 60px 0;
}

/* Section heading */
.section-heading-full {
    background-color: #005cb9;
    color: #ffffff !important;
    padding: 20px 30px;
    font-weight: 600;
    font-size: 1.75rem;
    text-align: left;
    margin-bottom: 30px;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 92, 185, 0.3);
    width: 100%;
    box-sizing: border-box;
}

/* Orange underline */
.section-heading-full::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #f57c00;
    margin-top: 10px;
    border-radius: 2px;
}

/* RESPONSIVE ADJUSTMENT */
@media (max-width: 768px) {
    .section-heading-full {
        font-size: 1.25rem;
        padding: 15px 20px;
        text-align: left;
    }

    .section-heading-full::after {
        width: 60px;
        margin-left: 0;
    }
}

/* Section Cards */
.section-content {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 2rem;
    border-top: 4px solid var(--orange);
}

.section-body {
    padding: 30px;
}

.section-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Committee Table */
.committee-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.committee-table th,
.committee-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.committee-table th {
    background: var(--blue);
    color: var(--white);
    font-weight: 600;
}

.committee-table tr:hover {
    background-color: #f8f9fa;
}

/* Downloads List */
.downloads-list {
    list-style: none;
    padding: 0;
}

.downloads-list li {
    margin-bottom: 1rem;
}

.download-link {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s ease;
    border-left: 4px solid var(--orange);
}

.download-link:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateX(5px);
    text-decoration: none;
}

.download-link i {
    margin-right: 15px;
    font-size: 1.4rem;
    color: var(--orange);
    min-width: 25px;
}

.download-link:hover i {
    color: var(--white);
}

/* Contact Info */
.contact-info {
    background: linear-gradient(135deg, var(--orange) 0%, #e65100 100%);
    color: var(--white);
    padding: 25px;
    border-radius: 15px;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-item i {
    margin-right: 15px;
    font-size: 1.2rem;
    width: 25px;
    margin-top: 2px;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Cards for various sections */
.info-card {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border-left: 5px solid var(--orange);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.info-card h5 {
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 15px;
}

/* Alert styles */
.alert-important {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
}

.alert-important .alert-heading {
    color: white;
    margin-bottom: 15px;
}

/* Badge styles */
.notification-badge {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin: 5px 0;
    font-size: 0.9rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .main-content {
        padding: 30px 0;
    }
    
    .section-body {
        padding: 20px;
    }
    
    .committee-table th,
    .committee-table td {
        padding: 8px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .download-link {
        flex-direction: column;
        text-align: center;
        padding: 12px;
    }
    
    .download-link i {
        margin-right: 0;
        margin-bottom: 8px;
    }
}

/* Additional styles for form */
.btn-primary {
    background-color: var(--orange);
    border-color: var(--orange);
}

.btn-primary:hover {
    background-color: #e65100;
    border-color: #e65100;
}

.form-control:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 0.2rem rgba(245, 124, 0, 0.25);
}

/* Icon styling */
.section-icon {
    font-size: 3rem;
    color: var(--orange);
    margin-bottom: 20px;
}

/* Two column layout for content */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .two-column {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}