/* 
==============================================
Global Styles for Doric Institute of Advanced Learning
==============================================
*/

/* --- Variables & Base --- */
:root {
    --primary-color: #003366; /* Deep Blue */
    --secondary-color: #f4f4f4; /* Light Gray */
    --accent-color: #ffc107;   /* Amber/Gold */
    --text-color: #333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
}

/* --- Components --- */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #004080;
    border-color: #004080;
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

.carousel-caption {
    background-color: rgba(0, 51, 102, 0.7);
    border-radius: .5rem;
}

.blockquote {
    border-left: 5px solid var(--accent-color);
    padding-left: 1.5rem;
    font-style: italic;
}

.list-group-item {
    border: none;
    padding-left: 0;
}

.list-group-item::before {
    content: "\2713"; /* Checkmark */
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* --- Layout & Sections --- */
.section-bg {
    background-color: var(--secondary-color);
}

.page-header {
    background-size: cover;
    background-position: center center;
    padding: 6rem 0;
    color: white;
}

.map-responsive {
    overflow: hidden;
    padding-bottom: 40%; /* Aspect ratio for map */
    position: relative;
    height: 0;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    border: 0;
}

/* --- Management Page --- */
.management-card .card-title {
    color: var(--primary-color);
}
.management-card .card-subtitle {
    color: #6c757d;
}
.management-card .list-group-item {
    padding-left: 1.25rem; /* Align with card body padding */
}