/* ============================================
   Destiny College - Global Theme
   Primary: #0a1936 (Dark Navy Blue)
   Accent: #ffffff (White)
   Section Borders: Solid Blue
   ============================================ */

:root {
    --dc-primary: #0a1936;
    --dc-primary-dark: #060f22;
    --dc-primary-light: #122a52;
    --dc-white: #ffffff;
    --dc-light: #f0f4f8;
    --dc-gray: #e9ecef;
    --dc-text: #212529;
    --dc-text-muted: #6c757d;
    --dc-blue-accent: #1a5dba;
    --dc-border-blue: #0a1936;
    --dc-gradient: linear-gradient(135deg, #0a1936, #122a52);
    --dc-gradient-dark: linear-gradient(135deg, #060f22, #0a1936);
    --dc-shadow: 0 10px 30px rgba(10, 25, 54, 0.15);
    --dc-shadow-lg: 0 15px 50px rgba(10, 25, 54, 0.25);
    --dc-radius: 0;
    --dc-radius-lg: 0;
    --dc-section-border: 3px solid var(--dc-border-blue);
}

/* ---- Global Overrides ---- */
body {
    font-family: 'Poppins', Arial, sans-serif;
    color: var(--dc-text);
    background: var(--dc-light);
}

/* ---- Section with blue bottom border ---- */
.dc-section {
    background: var(--dc-white);
    border-radius: var(--dc-radius);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--dc-shadow);
    border-bottom: var(--dc-section-border);
    position: relative;
}

.dc-section-dark {
    background: var(--dc-gradient);
    border-radius: var(--dc-radius);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--dc-shadow-lg);
    border-bottom: var(--dc-section-border);
    color: var(--dc-white);
}

/* ---- Card styles ---- */
.dc-card {
    background: var(--dc-white);
    border: none;
    border-radius: var(--dc-radius);
    box-shadow: var(--dc-shadow);
    transition: all 0.3s ease;
    border-bottom: var(--dc-section-border);
    overflow: hidden;
}

.dc-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--dc-shadow-lg);
}

.dc-card-header {
    background: var(--dc-gradient);
    color: var(--dc-white);
    padding: 0.6rem 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 3px solid var(--dc-border-blue);
}

/* ---- Section titles ---- */
.dc-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--dc-primary);
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    font-size: 1.5rem;
}

.dc-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--dc-primary);
    border-radius: 2px;
}

.dc-title-white {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--dc-white);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.dc-title-white::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--dc-white);
    border-radius: 2px;
}

/* ---- Buttons ---- */
.dc-btn-primary {
    background: var(--dc-primary);
    color: var(--dc-white);
    border: 2px solid var(--dc-primary);
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dc-btn-primary:hover {
    background: var(--dc-primary-light);
    color: var(--dc-white);
    border-color: var(--dc-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 25, 54, 0.3);
}

.dc-btn-outline {
    background: transparent;
    color: var(--dc-white);
    border: 2px solid var(--dc-white);
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dc-btn-outline:hover {
    background: var(--dc-white);
    color: var(--dc-primary);
    transform: translateY(-2px);
}

.dc-btn-white {
    background: var(--dc-white);
    color: var(--dc-primary);
    border: 2px solid var(--dc-white);
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dc-btn-white:hover {
    background: var(--dc-light);
    border-color: var(--dc-light);
    transform: translateY(-2px);
}

/* ---- Badges ---- */
.dc-badge {
    background: var(--dc-primary);
    color: var(--dc-white);
    padding: 0.4em 1em;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ---- Stats section ---- */
.dc-stats {
    background: var(--dc-gradient);
    border-radius: var(--dc-radius);
    padding: 1.25rem 1rem;
    margin-bottom: 1rem;
    color: var(--dc-white);
    box-shadow: var(--dc-shadow-lg);
    border-bottom: var(--dc-section-border);
}

.dc-stats .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dc-white);
}

.dc-stats .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* ---- Feature boxes ---- */
.dc-feature-box {
    text-align: center;
    padding: 1rem;
    border-radius: var(--dc-radius);
    background: var(--dc-white);
    height: 100%;
    box-shadow: var(--dc-shadow);
    border-bottom: var(--dc-section-border);
    transition: all 0.3s ease;
}

.dc-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--dc-shadow-lg);
}

.dc-feature-icon {
    font-size: 2rem;
    color: var(--dc-primary);
    margin-bottom: 0.5rem;
}

/* ---- Testimonials ---- */
.dc-testimonials {
    background: var(--dc-gradient);
    border-radius: var(--dc-radius);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    color: var(--dc-white);
    box-shadow: var(--dc-shadow-lg);
    border-bottom: var(--dc-section-border);
}

.dc-testimonials .dc-title-white::after {
    background: var(--dc-white);
}

.dc-testimonial-quote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 1.5rem;
}

.dc-testimonial-author {
    font-weight: 700;
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ---- Sidebar ---- */
.sidebar {
    background: var(--dc-primary) !important;
}

.sidebar .nav-link {
    color: rgba(255, 255, 255, 0.85);
    border-radius: 8px;
    margin-bottom: 2px;
    padding: 0.6rem 1rem;
    transition: all 0.2s ease;
}

.sidebar .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: translateX(3px);
}

.sidebar-header {
    background: var(--dc-primary-dark);
    border-bottom: 3px solid rgba(255, 255, 255, 0.15) !important;
}

/* ---- Navbar ---- */
.dc-navbar {
    background: var(--dc-gradient) !important;
    border-bottom: 3px solid rgba(255, 255, 255, 0.15);
}

.dc-navbar .navbar-brand {
    color: var(--dc-white) !important;
    font-weight: 700;
}

.dc-navbar .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    transition: color 0.2s;
}

.dc-navbar .nav-link:hover {
    color: var(--dc-white) !important;
}

/* ---- Footer ---- */
.dc-footer {
    background: var(--dc-gradient-dark);
    color: var(--dc-white);
    border-top: 3px solid rgba(255, 255, 255, 0.15);
}

.dc-footer h5 {
    color: var(--dc-white);
    font-weight: 700;
}

.dc-footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.dc-footer a:hover {
    color: var(--dc-white);
}

.dc-footer hr {
    border-color: rgba(255, 255, 255, 0.15);
}

/* ---- Compact card styles ---- */
.dc-card-compact {
    background: var(--dc-white);
    border: none;
    border-radius: var(--dc-radius);
    box-shadow: 0 2px 8px rgba(10, 25, 54, 0.08);
    transition: all 0.3s ease;
    border-bottom: 3px solid var(--dc-border-blue);
    overflow: hidden;
}

.dc-card-compact .card-body {
    padding: 1rem 1.25rem;
}

.dc-card-compact .card-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.dc-card-compact .card-text {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.dc-card-compact .btn {
    font-size: 0.8rem;
    padding: 0.3rem 0.75rem;
}

/* Global compact cards for dashboards */
.card.h-100 .card-body {
    padding: 1rem 1.25rem;
}

.card.h-100 .card-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.card.h-100 .card-text {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.card.h-100 .btn {
    font-size: 0.8rem;
    padding: 0.35rem 0.8rem;
}

/* Compact stat cards */
.card.text-white .card-body {
    padding: 0.75rem 1rem;
}

.card.text-white .card-title {
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
}

.card.text-white .card-text.display-5 {
    font-size: 1.5rem;
    font-weight: 800;
}

/* Compact dashboard section cards */
.dashboard-section .card-body {
    padding: 0.8rem 1rem;
}

.dashboard-section .card-title {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.dashboard-section .card-text {
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
}

.dashboard-section .btn {
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
}

/* Compact row gutters for dashboards */
.row.g-4 {
    --bs-gutter-x: 0.75rem;
    --bs-gutter-y: 0.75rem;
}

/* ---- Dashboard stat cards ---- */
.dc-stat-card {
    border: none;
    border-radius: var(--dc-radius);
    box-shadow: var(--dc-shadow);
    transition: all 0.3s ease;
    border-bottom: 3px solid var(--dc-border-blue);
    overflow: hidden;
}

.dc-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--dc-shadow-lg);
}

.dc-stat-card .card-body {
    padding: 0.6rem 0.8rem;
}

.dc-stat-card .card-title {
    font-weight: 600;
    font-size: 0.75rem;
}

.dc-stat-card .card-text {
    font-size: 1.3rem;
    font-weight: 800;
}

/* ---- Alert box ---- */
.dc-alert {
    background: linear-gradient(135deg, rgba(10, 25, 54, 0.05), rgba(10, 25, 54, 0.08));
    border-left: 4px solid var(--dc-primary);
    border-radius: var(--dc-radius);
    padding: 0.7rem 1rem;
    margin-bottom: 0.75rem;
}

.dc-alert .alert-heading {
    color: var(--dc-primary);
}

/* ---- Form controls ---- */
.form-control:focus {
    border-color: var(--dc-primary);
    box-shadow: 0 0 0 0.2rem rgba(10, 25, 54, 0.15);
}

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

.btn-primary:hover {
    background-color: var(--dc-primary-light);
    border-color: var(--dc-primary-light);
}

/* ---- HR with blue border ---- */
.dc-hr {
    border: none;
    border-top: var(--dc-section-border);
    margin: 2rem 0;
}

/* ---- Intake Alert Floating Widget ---- */
.floating-intake-alert {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: var(--dc-white);
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(10, 25, 54, 0.2);
    border: 1px solid rgba(10, 25, 54, 0.1);
    border-bottom: 3px solid var(--dc-primary);
    animation: pulse 1.5s infinite;
    transition: all 0.3s ease;
    max-width: 220px;
    overflow: hidden;
}

.floating-intake-alert:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(10, 25, 54, 0.3);
}

.intake-alert-link {
    text-decoration: none;
    color: var(--dc-text);
    display: block;
    padding: 6px;
}

.intake-alert-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.alert-icon-container {
    position: relative;
    background: var(--dc-gradient);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.alert-icon {
    font-size: 1rem;
    color: white;
    animation: ring 1.5s infinite;
}

.alert-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    font-weight: bold;
    border: 2px solid white;
}

.alert-text {
    text-align: left;
    flex-grow: 1;
    overflow: hidden;
}

.alert-title {
    font-weight: 700;
    font-size: 0.7rem;
    color: var(--dc-primary);
    margin-bottom: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.alert-date {
    font-size: 0.55rem;
    color: var(--dc-text-muted);
    margin-bottom: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.alert-phone a {
    font-size: 0.5rem;
    color: var(--dc-text-muted);
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.alert-phone a:hover {
    color: var(--dc-primary);
    text-decoration: underline;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

@keyframes ring {
    0% { transform: rotate(0); }
    10% { transform: rotate(10deg); }
    20% { transform: rotate(-10deg); }
    30% { transform: rotate(10deg); }
    40% { transform: rotate(-10deg); }
    50% { transform: rotate(0); }
    100% { transform: rotate(0); }
}

/* ---- Intake Alert Popup ---- */
.intake-alert-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2000;
    background: var(--dc-gradient);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(10, 25, 54, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
    width: 90%;
    max-width: 500px;
    overflow: hidden;
    animation: popupAppear 0.5s ease-out;
}

@keyframes popupAppear {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.intake-alert-header {
    background: var(--dc-primary-dark);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.intake-alert-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dc-white);
}

.intake-alert-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.intake-alert-close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

.intake-alert-body {
    padding: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.intake-alert-info p {
    margin: 12px 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.intake-alert-info i {
    color: var(--dc-white);
}

.intake-alert-info a {
    color: var(--dc-white);
    text-decoration: none;
    font-weight: 600;
}

.intake-alert-info a:hover {
    text-decoration: underline;
}

.intake-alert-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-intake-apply {
    background: var(--dc-white);
    border: 2px solid var(--dc-white);
    color: var(--dc-primary);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-intake-apply:hover {
    background: rgba(255,255,255,0.9);
    color: var(--dc-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.btn-intake-fees {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    color: rgba(255,255,255,0.9);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-intake-fees:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ---- Table overrides ---- */
.table thead th {
    background: var(--dc-primary);
    color: var(--dc-white);
    border-color: var(--dc-primary-light);
}

/* ---- Text color utility ---- */
.dc-text-primary { color: var(--dc-primary) !important; }
.dc-bg-primary { background-color: var(--dc-primary) !important; }
.dc-bg-primary-white { background-color: var(--dc-white) !important; }

/* ---- Mobile responsive ---- */
@media (max-width: 768px) {
    .floating-intake-alert {
        bottom: 70px;
        right: 12px;
        max-width: 200px;
    }
    
    .alert-icon-container {
        width: 30px;
        height: 30px;
    }
    
    .alert-icon {
        font-size: 0.9rem;
    }
    
    .alert-badge {
        width: 14px;
        height: 14px;
        font-size: 0.4rem;
        top: -2px;
        right: -2px;
    }
    
    .intake-alert-link {
        padding: 5px;
    }
    
    .alert-title {
        font-size: 0.65rem;
    }
    
    .alert-date {
        font-size: 0.5rem;
    }
    
    .alert-phone a {
        font-size: 0.45rem;
    }
    
    .dc-section, .dc-section-dark {
        padding: 0.75rem 1rem;
    }
}

/* ---- Fixed Bottom Navigation (Public) ---- */
.dc-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: var(--dc-gradient);
    border-top: 2px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 6px 0;
    box-shadow: 0 -2px 10px rgba(10, 25, 54, 0.3);
}

.dc-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.6rem;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 8px;
    transition: all 0.2s ease;
    min-width: 55px;
}

.dc-bottom-nav a i {
    font-size: 1.15rem;
    margin-bottom: 2px;
}

.dc-bottom-nav a:hover,
.dc-bottom-nav a.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.dc-bottom-nav .dc-bottom-nav-highlight {
    background: var(--dc-white);
    color: var(--dc-primary) !important;
    border-radius: 50px;
    padding: 5px 12px;
}

.dc-bottom-nav .dc-bottom-nav-highlight i {
    color: var(--dc-primary);
}

.dc-bottom-nav .dc-bottom-nav-highlight:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Public navbar fixed positioning */
.dc-public-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
}

/* Offset content for fixed navbar + bottom nav */
.dc-public-content {
    padding-top: 60px;
    padding-bottom: 0;
}

/* Footer CTA Bar */
.footer-cta {
    background: linear-gradient(90deg, #0a1936 0%, #122a52 100%);
    color: #fff;
    padding: 1.2rem 1.5rem;
    text-align: center;
    font-size: 1rem;
    letter-spacing: 1px;
    position: relative;
    z-index: 10;
    border-top: 3px solid rgba(255,255,255,0.2);
}
.footer-cta .social-icons a {
    color: #fff;
    margin: 0 0.8rem;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.footer-cta .social-icons a:hover {
    color: rgba(255, 255, 255, 0.7);
    transform: translateY(-3px) scale(1.1);
}
.footer-cta a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: underline;
}
.footer-cta a:hover {
    color: rgba(255,255,255,0.8);
}

@media (max-width: 768px) {
    .dc-bottom-nav a {
        font-size: 0.55rem;
        min-width: 48px;
        padding: 3px 4px;
    }
    
    .dc-bottom-nav a i {
        font-size: 1rem;
    }
    
    .dc-bottom-nav .dc-bottom-nav-highlight {
        padding: 4px 10px;
    }
    .footer-cta {
        padding: 1rem;
        font-size: 0.85rem;
    }
    .footer-cta .social-icons a {
        font-size: 1.1rem;
        margin: 0 0.5rem;
    }
}

/* ============================
   Beautiful Footer Styles
   ============================ */
.dc-beautiful-footer {
    position: relative;
    margin-top: 0;
}

.dc-footer-wave {
    position: relative;
    margin-bottom: -2px;
}
.dc-footer-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

.dc-footer-main {
    background: #060f22;
    padding: 0 0 2rem 0;
    color: #fff;
}

.dc-footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.dc-footer-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
    padding: 4px;
}
.dc-footer-college-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0;
    color: #fff;
}
.dc-footer-tagline {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}
.dc-footer-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 16px;
}

.dc-footer-social {
    display: flex;
    gap: 8px;
}
.dc-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}
.dc-social-link:hover {
    background: #1a5dba;
    border-color: #1a5dba;
    color: #fff;
    transform: translateY(-3px);
}

.dc-footer-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid #1a5dba;
    display: inline-block;
}

.dc-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.dc-footer-links li {
    margin-bottom: 8px;
}
.dc-footer-links li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}
.dc-footer-links li a:hover {
    color: #1a5dba;
    padding-left: 4px;
}
.dc-footer-links li a i {
    font-size: 0.6rem;
    color: #1a5dba;
}

.dc-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.dc-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.dc-contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(26,93,186,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a5dba;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.dc-contact-item .dc-contact-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
}
.dc-contact-item p {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.4;
}
.dc-contact-item p a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}
.dc-contact-item p a:hover {
    color: #1a5dba;
}

.dc-footer-bottom {
    background: #040a18;
    padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.dc-footer-bottom span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}
.dc-footer-bottom-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s;
}
.dc-footer-bottom-links a:hover {
    color: #1a5dba;
}
.dc-footer-sep {
    margin: 0 10px;
    color: rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
    .dc-footer-wave svg { height: 40px; }
    .dc-footer-main { padding-bottom: 1.5rem; }
    .dc-footer-brand { margin-bottom: 10px; }
    .dc-footer-logo { width: 40px; height: 40px; }
    .dc-footer-college-name { font-size: 1rem; }
    .dc-footer-heading { font-size: 0.9rem; }
    .dc-footer-links li a { font-size: 0.78rem; }
    .dc-contact-item p { font-size: 0.75rem; }
}
