:root {
    --primary-blue: #2563eb;
    --success-green: #16a34a;
    --warning-orange: #ea580c;
    --light-blue: #dbeafe;
    --dark-blue: #1e40af;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    background-color: #f8fafc;
}

/* Breadcrumb Section */
.breadcrumb-section {
    background-color: #374151;
    padding: 12px 0;
    color: white;
    font-size: 14px;
}

.breadcrumb-section a {
    color: #d1d5db;
    text-decoration: none;
}

.breadcrumb-section a:hover {
    color: white;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: #9ca3af;
}

/* Main Hero Section */
.hero-section {
    background: linear-gradient(135deg, #4b5563 0%, #374151 50%, #1f2937 100%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="school" patternUnits="userSpaceOnUse" width="200" height="200"><rect width="200" height="200" fill="%23374151"/><rect x="50" y="40" width="100" height="80" fill="%234b5563" opacity="0.3"/><rect x="60" y="50" width="15" height="15" fill="%236b7280" opacity="0.4"/><rect x="80" y="50" width="15" height="15" fill="%236b7280" opacity="0.4"/><rect x="100" y="50" width="15" height="15" fill="%236b7280" opacity="0.4"/><rect x="120" y="50" width="15" height="15" fill="%236b7280" opacity="0.4"/><rect x="60" y="70" width="15" height="15" fill="%236b7280" opacity="0.4"/><rect x="80" y="70" width="15" height="15" fill="%236b7280" opacity="0.4"/><rect x="100" y="70" width="15" height="15" fill="%236b7280" opacity="0.4"/><rect x="120" y="70" width="15" height="15" fill="%236b7280" opacity="0.4"/><polygon points="50,40 100,20 150,40" fill="%235b6371" opacity="0.5"/></pattern></defs><rect width="200" height="200" fill="url(%23school)"/></svg>');
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.school-profile-container {
    position: relative;
    z-index: 2;
}

.school-logo-circle {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.school-logo-circle .logo-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.school-info h1 {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.school-acronym {
    color: #cbd5e0;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

.admission-status {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 15px;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%,
    100% {
        box-shadow: 0 0 8px rgba(22, 163, 74, 0.4);
    }

    50% {
        box-shadow: 0 0 15px rgba(22, 163, 74, 0.8);
    }
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.school-address {
    color: #d1d5db;
    font-size: 15px;
    margin: 8px 0 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.school-meta {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.meta-item {
    color: #d1d5db;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-item i {
    color: #9ca3af;
}

/* Right Side Badges and Buttons */
.right-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

/* .status-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
} */

/* .badge-admission-partner {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
} */
/* 
.badge-verified {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
} */

.action-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-wishlist {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-wishlist:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-enquiry {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-enquiry:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.btn-compare {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-compare:hover {
    background: white;
    color: #374151;
}

/* .btn-share {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
} */

/* .btn-share:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
} */

/* Accepting Applications Notice */
.accepting-notice {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    padding: 12px 0;
    border-left: 4px solid #f59e0b;
    font-size: 14px;
    font-weight: 500;
}

/* Navigation Tabs */
.nav-tabs-section {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 0;
}

.nav-tabs-custom {
    border-bottom: none;
    display: flex;
    flex-wrap: inherit;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
}

.nav-tabs-custom .nav-link {
    border: none;
    color: #6b7280;
    font-weight: 500;
    padding: 18px 24px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    background: transparent;
}

.nav-tabs-custom .nav-link:hover {
    color: var(--primary-blue);
    border-bottom-color: rgba(37, 99, 235, 0.3);
    background: transparent;
}

.nav-tabs-custom .nav-link.active {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
    background: transparent;
}

/* Main Content Sections */
.main-content-section {
    background-color: #f8fafc;
    min-height: 600px;
}

/* Admission Form Card */
.admission-form-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.card-header-custom {
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
}

.blue-accent-bar {
    width: 4px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 2px;
}

.school-name-small {
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 2px;
}

.section-title {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.admission-partner-badge {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

/* Session Selection */
.session-selection {
    padding: 20px 24px;
    background-color: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.session-label {
    color: #374151;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 14px;
}

.session-options {
    display: flex;
    gap: 20px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-check-input {
    margin: 0;
}

.form-check-label {
    color: #4b5563;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
}

/* Admission Table */
.admission-table-container {
    padding: 0;
}

.admission-table {
    margin: 0;
    border-collapse: collapse;
}

.admission-table thead {
    background-color: #f1f5f9;
}

.admission-table th {
    padding: 16px 20px;
    font-weight: 600;
    font-size: 14px;
    color: #475569;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
}

.admission-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.class-cell {
    font-weight: 600;
    color: #1f2937;
}

.date-cell {
    font-size: 13px;
}

.last-date {
    color: #6b7280;
    margin-bottom: 2px;
}

.days-left {
    color: #f59e0b;
    font-weight: 500;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.status-badge.ongoing {
    background-color: #dcfce7;
    color: #16a34a;
}

.fee-cell {
    font-weight: 600;
    color: #1f2937;
}

.btn-apply {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-apply:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.see-all-classes {
    padding: 20px 24px;
    text-align: center;
    border-top: 1px solid #f1f5f9;
}

.btn-see-all {
    background: transparent;
    color: #2563eb;
    border: none;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.btn-see-all:hover {
    color: #1d4ed8;
}

/* Photos Section */
.photos-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.photos-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
}

.photos-grid {
    padding: 20px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.photo-item {
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-item:hover img {
    transform: scale(1.05);
}

.view-all-photos {
    padding: 0 24px 20px;
    text-align: center;
}

.view-all-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.view-all-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Perfect School Widget */
.perfect-school-widget {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    border-radius: 12px;
    overflow: hidden;
    color: white;
    position: relative;
}

.perfect-school-widget::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.widget-header {
    padding: 20px 24px 0;
    position: relative;
    z-index: 2;
}

.widget-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.widget-content {
    padding: 16px 24px 24px;
    position: relative;
    z-index: 2;
}

.widget-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.btn-find-school {
    background: white;
    color: #16a34a;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    width: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-find-school:hover {
    background: #f8fafc;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive Design for Content Sections */
@media (max-width: 992px) {
    .session-options {
        flex-direction: column;
        gap: 12px;
    }

    .admission-table {
        font-size: 13px;
    }

    .admission-table th,
    .admission-table td {
        padding: 12px 16px;
    }
}

@media (max-width: 768px) {
    .main-content-section .container-fluid {
        padding-left: 16px;
        padding-right: 16px;
    }

    .card-header-custom,
    .session-selection,
    .see-all-classes {
        padding: 16px 20px;
    }

    .photos-grid {
        padding: 16px 20px;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .photos-header,
    .widget-header {
        padding: 16px 20px 0;
    }

    .widget-content {
        padding: 12px 20px 20px;
    }

    .admission-table-container {
        overflow-x: auto;
    }

    .admission-table {
        min-width: 600px;
    }
}

/* Visit School Section */
.visit-school-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.visit-content {
    padding: 24px;
}

.calendar-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.calendar-top {
    background: #ef4444;
    height: 20px;
    border-radius: 8px 8px 0 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.calendar-rings {
    display: flex;
    gap: 8px;
}

.ring {
    width: 6px;
    height: 12px;
    background: white;
    border-radius: 3px;
}

.calendar-body {
    background: white;
    border: 2px solid #e5e7eb;
    border-top: none;
    height: 60px;
    border-radius: 0 0 8px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.calendar-date {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.clock-overlay {
    position: absolute;
    bottom: -8px;
    right: -8px;
    background: #2563eb;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.visit-details {
    padding-left: 20px;
}

.visit-features {
    list-style: disc;
    padding: 0;
    margin: 0 0 16px 0;
    padding-left: 10px;
}

.visit-features li {
    color: #4b5563;
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.visit-features strong {
    color: #1f2937;
    font-weight: 600;
}

.visit-note {
    color: #2563eb;
    font-size: 13px;
    font-style: italic;
    margin: 0;
}

.btn-schedule-visit {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-schedule-visit:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

/* AI Recommendation Widget */
.ai-recommendation-widget {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.ai-recommendation-widget::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(
        circle,
        rgba(37, 99, 235, 0.1) 0%,
        transparent 70%
    );
}

.ai-content {
    padding: 24px;
    position: relative;
    z-index: 2;
}

.ai-features {
    margin-bottom: 20px;
}

.ai-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    position: relative;
}

.feature-icon {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.feature-text {
    color: #1f2937;
    font-size: 14px;
    line-height: 1.5;
    flex-grow: 1;
}

.text-primary {
    color: #2563eb !important;
    font-weight: 600;
}

.feature-illustration {
    position: absolute;
    top: -8px;
    right: 0;
}

.ai-avatars {
    display: flex;
    gap: 4px;
}

.avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid white;
    position: relative;
}

.avatar-1 {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    z-index: 3;
}

.avatar-2 {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    margin-left: -8px;
    z-index: 2;
}

.avatar-3 {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    margin-left: -8px;
    z-index: 1;
}

.ai-stats {
    background: white;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
    text-align: center;
}

.stats-highlight {
    color: #1f2937;
    font-size: 14px;
    line-height: 1.5;
}

.stats-number {
    color: #2563eb;
    font-size: 20px;
    font-weight: 700;
}

.btn-try-ai {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-try-ai:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

/* Languages Taught Section */
.languages-card,
.food-details-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.languages-content {
    padding: 24px;
}
.languages-content h3 {
    font-size: 18px;
}
.languages-content h4 {
    font-size: 16px;
}
.languages-content h5,
h6 {
    font-size: 16px;
}
.languages-content p {
    font-size: 14px;
}

.languages-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.language-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.language-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: white;
}

.language-icon.english {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.language-icon.hindi {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    font-family: "Noto Sans Devanagari", Arial, sans-serif;
}

.language-icon.sanskrit {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    font-family: "Noto Sans Devanagari", Arial, sans-serif;
}
.language-icon {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    font-family: "Noto Sans Devanagari", Arial, sans-serif;
}
.language-name {
    color: #1f2937;
    font-weight: 500;
    font-size: 14px;
}

/* Food Details Section */
.food-content {
    padding: 24px;
}

.food-options {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.food-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    flex: 1;
    min-width: 180px;
}

.food-option.available {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.food-option.not-available {
    background: #f9fafb;
    border-color: #e5e7eb;
    opacity: 0.7;
}

.food-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.food-option.available .food-icon {
    background: #dcfce7;
    color: #16a34a;
}

.food-option.not-available .food-icon {
    background: #f3f4f6;
    color: #9ca3af;
}

.food-details h6 {
    margin: 0 0 4px 0;
    color: #1f2937;
    font-weight: 600;
    font-size: 14px;
}

.food-status {
    font-size: 12px;
    font-weight: 500;
}

.food-option.available .food-status {
    color: #16a34a;
}

.food-option.not-available .food-status {
    color: #9ca3af;
}

.food-description {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
}

.food-description p {
    margin: 0;
}

/* Related News Section */
.related-news-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.news-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
}

.news-articles {
    padding: 20px 24px;
}

.news-item {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.news-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.news-image {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.news-content {
    flex-grow: 1;
}

.news-title {
    color: #1f2937;
    font-weight: 600;
    font-size: 13px;
    line-height: 1.4;
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 6px;
}

.news-author,
.news-date {
    color: #6b7280;
    font-size: 11px;
}

.news-views {
    background: #1f2937;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    display: inline-block;
    width: fit-content;
}

.languages-grid {
    gap: 15px;
}

.food-options {
    flex-direction: row;
    gap: 15px;
}

.food-option {
    min-width: auto;
}

/* } */

@media (max-width: 768px) {
    .languages-content,
    .food-content {
        padding: 16px 20px;
    }

    .news-header {
        padding: 16px 20px;
    }

    .news-articles {
        padding: 16px 20px;
    }

    .news-item {
        gap: 10px;
        margin-bottom: 16px;
        padding-bottom: 16px;
    }

    .news-image {
        width: 60px;
        height: 45px;
    }

    .languages-grid {
        flex-direction: column;
        gap: 12px;
    }

    .language-item {
        padding: 10px 14px;
    }
}

/* Original responsive styles */
@media (max-width: 992px) {
    .right-section {
        align-items: flex-start;
        margin-top: 20px;
    }

    .status-badges {
        align-items: flex-start;
    }

    .action-buttons {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 20px 0;
    }

    .school-logo-circle {
        width: 70px;
        height: 70px;
    }

    .school-logo-circle .logo-text {
        font-size: 2rem;
    }

    .school-info h1 {
        font-size: 1.5rem;
    }

    .school-meta {
        gap: 15px;
    }

    .action-buttons {
        gap: 8px;
    }

    .btn-enquiry {
        padding: 10px 20px;
        font-size: 14px;
    }

    .btn-compare {
        padding: 8px 16px;
        font-size: 14px;
    }

    .nav-tabs-custom .nav-link {
        padding: 15px 18px;
        font-size: 14px;
    }
}

/* Travel Info Section */
.travel-info-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 24px;
}

.travel-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
}

.blue-accent-bar {
    width: 4px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 2px;
}

.school-name-small {
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 2px;
}

.section-title {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

/* Tab Navigation */
.travel-tabs {
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    padding: 0 24px;
}

.travel-nav-tabs {
    border-bottom: none;
    margin-bottom: 0;
}

.travel-nav-tabs .nav-link {
    border: none;
    color: #6b7280;
    font-weight: 500;
    padding: 16px 0;
    margin-right: 32px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    background: transparent;
    position: relative;
}

.travel-nav-tabs .nav-link:hover {
    color: var(--primary-blue);
    border-bottom-color: rgba(37, 99, 235, 0.3);
    background: transparent;
}

.travel-nav-tabs .nav-link.active {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
    background: transparent;
}

.travel-nav-tabs .nav-link i {
    margin-right: 8px;
    font-size: 16px;
}

/* Travel Content */
.travel-content {
    padding: 24px;
}

.travel-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.travel-item:last-child {
    border-bottom: none;
}

.travel-item:hover {
    background: #f8fafc;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
}

.travel-item-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-grow: 1;
}

.travel-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.travel-icon.railway {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
}

.travel-icon.airport {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
}

.travel-icon.hospital {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
}

.travel-details h6 {
    margin: 0 0 4px 0;
    color: #1f2937;
    font-weight: 600;
    font-size: 15px;
}

.travel-location {
    color: #6b7280;
    font-size: 13px;
    margin: 0;
    line-height: 1.4;
}

.distance-badge {
    background: #f1f5f9;
    color: #1f2937;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.distance-badge i {
    color: #6b7280;
    font-size: 12px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #6b7280;
}

.empty-state i {
    font-size: 48px;
    color: #d1d5db;
    margin-bottom: 16px;
}

.empty-state h6 {
    color: #4b5563;
    font-weight: 600;
    margin-bottom: 8px;
}

.empty-state p {
    font-size: 14px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .travel-header,
    .travel-content {
        padding: 16px 20px;
    }

    .travel-tabs {
        padding: 0 20px;
    }

    .travel-nav-tabs .nav-link {
        margin-right: 24px;
        font-size: 14px;
        padding: 14px 0;
    }

    .travel-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .travel-item-left {
        width: 100%;
    }

    .distance-badge {
        align-self: flex-start;
    }

    .travel-item:hover {
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 576px) {
    .travel-nav-tabs .nav-link {
        margin-right: 16px;
        font-size: 13px;
    }

    .travel-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .travel-details h6 {
        font-size: 14px;
    }

    .travel-location {
        font-size: 12px;
    }
}

/* Additional hover effects */
.travel-item {
    border-radius: 8px;
    margin: 0;
}

.travel-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

/* Icon animations */
.travel-icon {
    transition: transform 0.3s ease;
}

.travel-item:hover .travel-icon {
    transform: scale(1.05);
}

/* Travel tab content area */
.tab-content {
    min-height: 200px;
}

.tab-pane {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-pane.active {
    opacity: 1;
}

/* Main Content Section */
.main-content-section {
    background-color: #f8fafc;
    padding: 20px 0;
}

/* Facilities Card */
.facilities-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.card-header-custom {
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
}

.blue-accent-bar {
    width: 4px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 2px;
}

.school-name-small {
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 2px;
}

.section-title {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.facilities-content {
    padding: 24px;
}

.facility-section {
    margin-bottom: 40px;
}

.facility-section:last-child {
    margin-bottom: 0;
}

.facility-section-title {
    color: #374151;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e5e7eb;
    position: relative;
}

.facility-section-title::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-blue);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 0fr));
    gap: 16px;
}

.facility-item {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.facility-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(37, 99, 235, 0.1),
        transparent
    );
    transition: left 0.5s;
}

.facility-item:hover {
    border-color: var(--primary-blue);
    background: #f0f9ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.facility-item:hover::before {
    left: 100%;
}

.facility-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.facility-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    flex-shrink: 0;
}

.medical-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.daycare-icon {
    background: linear-gradient(135deg, #ec4899, #be185d);
}

.meals-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.transport-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.alumni-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.boys-hostel-icon {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.girls-hostel-icon {
    background: linear-gradient(135deg, #f472b6, #ec4899);
}

.ac-icon {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.wifi-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.smart-icon {
    background: linear-gradient(135deg, #84cc16, #65a30d);
}

.facility-name {
    color: #1f2937;
    font-weight: 600;
    font-size: 15px;
    margin: 0;
}

.facility-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success-green);
}

.status-text {
    color: var(--success-green);
    font-size: 12px;
    font-weight: 500;
}

/* Sidebar */
.sidebar-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 20px;
}

/* Other Schools Section */
.schools-list {
    padding: 20px 24px;
}

.school-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 8px;
    border: 1px solid transparent;
}

.school-item:hover {
    background: #f8fafc;
    border-color: #e5e7eb;
    transform: translateX(2px);
}

.school-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 12px;
    margin-right: 12px;
    flex-shrink: 0;
}

.school-details {
    flex-grow: 1;
}

.school-name {
    color: #1f2937;
    font-weight: 600;
    font-size: 14px;
    margin: 0 0 2px 0;
    line-height: 1.3;
}

.school-location {
    color: #6b7280;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.school-arrow {
    color: #9ca3af;
    margin-left: auto;
}

/* Application Guide Section */
.guide-card {
    background: linear-gradient(
        135deg,
        var(--primary-blue) 0%,
        var(--dark-blue) 100%
    );
    color: white;
    position: relative;
    overflow: hidden;
}

.guide-card::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.guide-content {
    padding: 24px;
    position: relative;
    z-index: 2;
}

.guide-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.video-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.1);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-blue);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: white;
    transform: scale(1.1);
}

.guide-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.btn-watch-guide {
    background: white;
    color: var(--primary-blue);
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-watch-guide:hover {
    background: #f8fafc;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* See All Section */
.see-all-section {
    padding: 20px 24px;
    text-align: center;
    border-top: 1px solid #f1f5f9;
    background: #f9fafb;
}

.btn-see-all {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-see-all:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .facilities-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 12px;
    }

    .facility-item {
        padding: 16px;
    }
}

@media (max-width: 768px) {
    .main-content-section {
        padding: 15px 0;
    }

    .card-header-custom,
    .facilities-content,
    .schools-list,
    .guide-content {
        padding: 16px 20px;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .facility-item {
        padding: 16px;
    }

    .school-item {
        padding: 10px 12px;
    }

    .school-logo {
        width: 36px;
        height: 36px;
        font-size: 11px;
    }

    .see-all-section {
        padding: 16px 20px;
    }
}

/* Animation for facility items */
.facility-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.facility-item:nth-child(1) {
    animation-delay: 0.1s;
}

.facility-item:nth-child(2) {
    animation-delay: 0.2s;
}

.facility-item:nth-child(3) {
    animation-delay: 0.3s;
}

.facility-item:nth-child(4) {
    animation-delay: 0.4s;
}

.facility-item:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.school-hero {
    background: linear-gradient(#0a2860, #0a2860e6 27.95%, #0a2860e8) center
            center / cover,
        url(https://school.betterstudy.in/assets/front/img/background.webp);
    color: white;
    position: relative;
}

.material-symbols-rounded {
    font-family: "Material Icons", "Material Symbols Rounded";
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
}

/* Breadcrumb custom styling */
.breadcrumb-custom {
    font-size: 0.75rem;
    color: white;
}

.breadcrumb-custom a {
    color: white;
    text-decoration: none;
    transition: color 0.2s;
}

.mobile-breadcrumb .breadcrumb-custom {
    font-size: 10px;
    color: #666;
}
.breadcrumb-custom a:hover {
    color: #d1d5db;
}

.breadcrumb-separator {
    font-size: 1rem;
    margin: 0 0.25rem;
}

/* Badge styles */
.badge-admission-partner {
    background-color: white;
    border: 2px solid #fbbf24;
    color: #374151;
    font-size: 0.75rem;
    padding: 0.125rem 0.5rem;
    border-radius: 0.375rem;
}

.badge-verified {
    background-color: white;
    border: 2px solid #6b7280;
    color: #374151;
    font-size: 0.75rem;
    padding: 0.125rem 0.5rem;
    border-radius: 0.375rem;
}

.btn-share {
    border: 1px solid #6b7280;
    background: transparent;
    color: white;
    font-size: 0.75rem;
    padding: 0.125rem 0.5rem;
    border-radius: 0.375rem;
}

/* School logo */
.school-logo {
    width: 94px;
    height: 94px;
    border-radius: 0.5rem;
}

/* Pulse animation for admissions ongoing */
.pulse-wrapper {
    display: inline-flex;
    align-items: center;
}

.admissions-ongoing {
    background: linear-gradient(90deg, #2dcf01, #22c55e, #2dcf01);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
    font-size: 0.875rem;
    font-weight: 500;
}

.pulse {
    width: 12px;
    height: 12px;
    background-color: #2dcf01;
    border-radius: 50%;
    margin-right: 10px;
    animation: pulse-green 2s infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

@keyframes pulse-green {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(0.95);
    }
}

/* Button styles */
.btn-primary-custom {
    background-color: #3b82f6;
    border: none;
    color: white;
    font-weight: 500;
    padding: 0.25rem 3.5rem;
    border-radius: 0.125rem;
}

.btn-primary-custom:hover {
    background-color: #2563eb;
}

.btn-outline-custom {
    background-color: white;
    color: #3b82f6;
    border: none;
    font-weight: 600;
    padding: 0.375rem 1.75rem;
    border-radius: 0.125rem;
}

.btn-outline-custom:hover {
    background-color: #f3f4f6;
}

.btn-heart {
    background-color: white;
    color: #374151;
    border: 1px solid #d1d5db;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
}

.btn-heart:hover {
    background-color: #f9fafb;
}

/* Small text styling */
.text-xxs {
    font-size: 0.625rem;
}

.text-xs {
    font-size: 0.75rem;
}

/* Bottom positioning for action buttons */
.action-buttons-wrapper {
    position: absolute;
    /* bottom: 2.25rem; */
    right: -30px;
}

.bottom-notice {
    position: absolute;
    bottom: -1.75rem;
    font-size: 0.75rem;
    font-weight: 500;
}

/* ========== MOBILE STYLES ========== */

.mobile-layout {
    display: none;
}

.mobile-container {
    background: white;
    /* min-height: 100vh; */
}

/* Hero Image Section */
.hero-image {
    width: 100%;
    height: 200px;
    position: relative;
}

.share-button {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Carousel dots */
.carousel-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
}

.dot.active {
    background-color: white;
}

/* School Info Section */
.school-info {
    padding: 16px;
    background: white;
}

.school-header {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.school-logo-mobile {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e3f2fd;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.school-logo-mobile img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.school-details h2 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.location {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #666;
    font-size: 12px;
    margin-bottom: 4px;
}

.location {
    font-size: 16px;
    color: #666;
}

.views {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #666;
    font-size: 12px;
}

.views {
    font-size: 16px;
}

/* School Meta Info */
.school-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 12px 0;
    font-size: 12px;
    color: #666;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.meta-item {
    font-size: 16px;
    color: #666;
}

/* Action Buttons Mobile */
.action-buttons-mobile {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.btn-heart-mobile {
    width: 44px;
    height: 44px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.btn-compare-mobile {
    flex: 1;
    height: 44px;
    border: 1px solid #2196f3;
    background: white;
    color: #2196f3;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.btn-enquiry-mobile {
    flex: 1;
    height: 44px;
    background: #2196f3;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

.btn-compare-mobile,
.btn-heart-mobile {
    font-size: 20px;
}

/* Mobile Breadcrumb */
.mobile-breadcrumb {
    padding: 12px 16px;
    background: white;
    border-bottom: 1px solid #f0f0f0;
    font-size: 12px;
}

.mobile-breadcrumb a {
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.mobile-breadcrumb a:hover {
    color: #2196f3;
}

.mobile-breadcrumb {
    font-size: 16px;
    color: #666;
}

.mobile-breadcrumb .breadcrumb-separator {
    font-size: 14px;
    margin: 0 6px;
    color: #ccc;
}

.mobile-breadcrumb .current-page {
    color: #333;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 130px;
}

/* ========== RESPONSIVE BREAKPOINTS ========== */
@media (max-width: 767px) {
    .desktop-layout {
        display: none;
    }
    .mobile-layout {
        display: block;
    }
    body {
        background-color: #f5f5f5;
    }
}

@media (min-width: 768px) {
    .desktop-layout {
        display: block;
    }
    .mobile-layout {
        display: none;
    }
    body {
        background-color: white;
    }
}
