/* Root Variables for Consistent Theming */
:root {
    --primary-blue: #2c5aa0;
    --dark-blue: #1e4a86;
    --footer-dark: #0f2a50;
    --yellow-accent: #f0c040;
    --yellow-gradient: linear-gradient(#f0c040, #e8b435);
    --light-gray: #cccccc;
    --medium-gray: #999999;
    --dark-gray: #666666;
    --text-dark: #333333;
    --text-medium: #666666;
    --border-light: #eeeeee;
    --green-success: #28a745;
    --red-urgent: #dc3545;
    --orange-warning: #fd7e14;
    --purple-accent: #6f42c1;
    --blue-info: #17a2b8;
}

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

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f5f5f5;
    line-height: 1.4;
}

/* Header Section (From Provided St. John's) */
.header {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #1a237e;
    font-size: 24px;
    border: 3px solid #ffd700;
}

.logo-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50%;
}

.school-info h1 {
    font-size: 28px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 5px;
}

.school-info h2 {
    font-size: 20px;
    font-weight: normal;
    color: #e1f5fe;
}

.contact-info {
    text-align: right;
    font-size: 12px;
    line-height: 1.4;
}

.annual-day {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Navigation (From Provided St. John's) */
.navigation {
    background: linear-gradient(90deg, #c62828, #e53935, #ff5722, #ff9800, #4caf50, #2196f3);
    display: flex;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.nav-item {
    flex: 1;
    text-align: center;
    padding: 12px 5px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.nav-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Main Content (From Provided St. John's) */
.main-content {
    position: relative;
    height: 400px;
    background: url('images/building2.jpeg') center/cover;
    display: flex;
    align-items: center;
}

.news-sidebar {
    background: rgba(0, 51, 102, 0.95);
    color: white;
    width: 350px;
    height: 100%;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.news-title {
    color: #4fc3f7;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.news-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
    color: #e1f5fe;
}

.news-item {
    background: rgba(255,255,255,0.1);
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 4px solid #4fc3f7;
    font-size: 14px;
    line-height: 1.4;
}

.parents-visiting {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(45deg, #ff5722, #ff9800);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.parents-visiting:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

.careers-btn {
    background: #2196f3;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    margin-top: 10px;
    display: inline-block;
}

/* Bottom Section (From Provided St. John's) */
.bottom-section {
    display: flex;
    margin: 20px;
    gap: 20px;
    height: 200px;
}

.section-card {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.4);
}

.gallery-card {
    background: linear-gradient(135deg, #42a5f5, #1e88e5);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.contact-card {
    background: linear-gradient(135deg, #66bb6a, #4caf50);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 20px;
}

.admissions-card {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    position: relative;
}

.card-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
    font-size: 24px;
    transition: all 0.3s ease;
}

.icon:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.gallery-icons {
    display: flex;
    gap: 15px;
}

.gallery-icons img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.contact-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 10px;
}

.download-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #f44336;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.special-info {
    background: #00bcd4;
    color: white;
    padding: 10px;
    border-radius: 10px;
    margin: 10px 0;
    font-weight: bold;
}

/* MAIN CONTENT LAYOUT */
.main-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 280px 1fr 300px;
    gap: 20px;
}

/* WIDGET STYLES */
.widget {
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    overflow: hidden;
}

.widget-header {
    height: 42px;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.widget-content {
    padding: 18px;
}

/* LEFT SIDEBAR WIDGETS */
.left-sidebar {
    display: flex;
    flex-direction: column;
}

/* Academic Calendar Widget */
.calendar-widget .calendar-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.calendar-month {
    margin-bottom: 15px;
}

.month-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.month-nav {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--primary-blue);
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 3px;
    transition: background 0.3s ease;
}

.month-nav:hover {
    background: #f0f0f0;
}

.month-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.calendar-day.header {
    font-weight: 600;
    color: var(--text-medium);
    cursor: default;
}

.calendar-day:not(.header):hover {
    background: #e3f2fd;
    color: var(--primary-blue);
}

.calendar-day.today {
    background: var(--primary-blue);
    color: white;
    font-weight: 600;
}

.upcoming-events-mini h4 {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 10px;
    border-top: 1px solid var(--border-light);
    padding-top: 15px;
}

.mini-event {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
}

.event-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.event-dot.exam { background: var(--red-urgent); }
.event-dot.deadline { background: var(--orange-warning); }
.event-dot.event { background: var(--green-success); }

.event-text {
    font-size: 11px;
    color: var(--text-medium);
}

/* Quick Links Widget */
.quick-links-widget .quick-links-header {
    background: linear-gradient(135deg, var(--green-success), #20c997);
    color: white;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 15px 10px;
    border: 1px solid var(--border-light);
    border-radius: 5px;
    transition: all 0.3s ease;
    text-align: center;
}

.quick-link:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 2px 8px rgba(44, 90, 160, 0.2);
    transform: translateY(-2px);
}

.link-icon {
    font-size: 24px;
    margin-bottom: 5px;
}

.link-text {
    font-size: 11px;
    color: var(--text-dark);
    font-weight: 500;
}

/* Department Spotlight Widget */
.department-spotlight-widget .spotlight-header {
    background: linear-gradient(135deg, var(--purple-accent), #8b5cf6);
    color: white;
}

.spotlight-content {
    text-align: center;
}

.spotlight-image {
    width: 100%;
    height: 120px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.spotlight-image img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
}

.spotlight-content h3 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.spotlight-content p {
    font-size: 12px;
    color: var(--text-medium);
    line-height: 1.5;
    margin-bottom: 15px;
}

.spotlight-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 15px;
}

.stat-mini {
    text-align: center;
}

.stat-mini .stat-number {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-blue);
}

.stat-mini .stat-label {
    font-size: 10px;
    color: var(--text-medium);
}

.spotlight-btn {
    background: var(--purple-accent);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.spotlight-btn:hover {
    background: #5a3a8b;
}

/* Research Opportunities Widget */
.research-opportunities-widget .research-header {
    background: linear-gradient(135deg, var(--orange-warning), #ff8c00);
    color: white;
}

.research-opportunity {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-light);
}

.research-opportunity:last-child {
    border-bottom: none;
}

.research-opportunity h4 {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.research-department {
    font-size: 11px;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 8px;
}

.research-description {
    font-size: 12px;
    color: var(--text-medium);
    line-height: 1.4;
    margin-bottom: 10px;
}

.research-apply-btn {
    background: var(--orange-warning);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 3px;
    font-size: 11px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.research-apply-btn:hover {
    background: #e66a00;
}

/* Campus Services Widget */
.campus-services-widget .services-header {
    background: linear-gradient(135deg, #17a2b8, #138496);
    color: white;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

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

.service-info {
    display: flex;
    flex-direction: column;
}

.service-name {
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 500;
}

.service-status {
    font-size: 11px;
    color: var(--text-medium);
}

.service-status.open {
    color: var(--green-success);
    font-weight: 500;
}

.service-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.service-indicator.green { background: var(--green-success); }
.service-indicator.blue { background: #17a2b8; }
.service-indicator.yellow { background: var(--orange-warning); }
.service-indicator.red { background: var(--red-urgent); }

/* Connect Widget */
.connect-widget h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.connect-widget p {
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-medium);
    margin-bottom: 15px;
    text-align: justify;
}

.social-links {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 12px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.social-link.fb { background: #3b5998; }
.social-link.tw { background: #1da1f2; }
.social-link.yt { background: #ff0000; }
.social-link.gp { background: #dd4b39; }
.social-link.ig { background: #e4405f; }
.social-link.li { background: #0077b5; }

/* RIGHT SIDEBAR WIDGETS */
.right-sidebar {
    display: flex;
    flex-direction: column;
}

/* Success Stories Widget */
.success-stories-widget .success-header {
    background: linear-gradient(135deg, #ffc107, #ff8f00);
    color: white;
}

.success-carousel {
    position: relative;
    min-height: 180px;
}

.success-story {
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.success-story.active {
    opacity: 1;
}

.student-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 10px;
}

.student-avatar img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

.success-story h4 {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.student-major {
    font-size: 11px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.success-quote {
    font-size: 12px;
    color: var(--text-medium);
    line-height: 1.4;
    font-style: italic;
    margin-bottom: 10px;
}

.success-rating {
    font-size: 14px;
    color: #ffc107;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 15px;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-dots .dot.active {
    background: var(--primary-blue);
}

/* Campus Feed Widget */
.campus-feed-widget .feed-header {
    background: linear-gradient(135deg, #e91e63, #ad1457);
    color: white;
}

.feed-item {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}

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

.feed-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
}

.feed-avatar img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 50%;
}

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

.feed-text {
    font-size: 12px;
    color: var(--text-dark);
}

.feed-time {
    font-size: 10px;
    color: var(--text-medium);
}

.feed-more {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 3px;
    font-size: 11px;
    cursor: pointer;
    margin-top: 10px;
    width: 100%;
    transition: background 0.3s ease;
}

.feed-more:hover {
    background: var(--dark-blue);
}

/* Academic Announcements Widget */
.announcements-widget .announcements-header {
    background: linear-gradient(135deg, var(--red-urgent), #c82333);
    color: white;
}

.announcement-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

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

.announcement-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.announcement-item.urgent .announcement-badge {
    background: var(--red-urgent);
}

.announcement-item .announcement-badge {
    background: var(--blue-info);
}

.announcement-item h4 {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.announcement-item p {
    font-size: 12px;
    color: var(--text-medium);
    line-height: 1.4;
    margin-bottom: 5px;
}

.announcement-date {
    font-size: 10px;
    color: var(--text-medium);
}

/* Faculty Spotlight Widget */
.faculty-spotlight-widget .faculty-header {
    background: linear-gradient(135deg, var(--blue-info), #117a8b);
    color: white;
}

.faculty-profile {
    text-align: center;
}

.faculty-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 10px;
}

.faculty-photo img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

.faculty-profile h3 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.faculty-title {
    font-size: 12px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.faculty-description {
    font-size: 12px;
    color: var(--text-medium);
    line-height: 1.4;
    margin-bottom: 15px;
}

.faculty-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 15px;
}

.faculty-stat {
    text-align: center;
}

.faculty-stat .stat-number {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-blue);
}

.faculty-stat .stat-label {
    font-size: 10px;
    color: var(--text-medium);
}

.faculty-contact-btn {
    background: var(--blue-info);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faculty-contact-btn:hover {
    background: #0d6b7a;
}

/* Campus Statistics Dashboard */
.stats-dashboard-widget .stats-header {
    background: linear-gradient(135deg, #6f42c1, #5a3a8b);
    color: white;
}

.live-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.live-stat {
    text-align: center;
}

.live-stat .stat-icon {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.live-stat .stat-value {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-dark);
}

.live-stat .stat-label {
    font-size: 10px;
    color: var(--text-medium);
}

/* Interactive Chat Widget */
.chat-widget .chat-header {
    background: linear-gradient(135deg, #00bcd4, #0097a7);
    color: white;
}

.chat-messages {
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 15px;
}

.chat-message {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}

.chat-message:last-child {
    border-bottom: none;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
}

.message-avatar img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 50%;
}

.message-text {
    font-size: 12px;
    color: var(--text-dark);
}

.chat-input-area {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.chat-input {
    flex-grow: 1;
    padding: 8px;
    border: 1px solid var(--border-light);
    border-radius: 3px;
    font-size: 12px;
}

.chat-send {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 3px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.chat-send:hover {
    background: var(--dark-blue);
}

.chat-quick-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.quick-action {
    background: #f5f5f5;
    border: 1px solid var(--border-light);
    padding: 6px 12px;
    border-radius: 3px;
    font-size: 11px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.quick-action:hover {
    background: #e3f2fd;
    border-color: var(--primary-blue);
}

/* Enhanced Profile Widget */
.enhanced-profile-widget .profile-header {
    background: linear-gradient(135deg, #4caf50, #388e3c);
    color: white;
}

.profile-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-light);
}

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

.profile-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: relative;
}

.profile-avatar img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
}

.profile-avatar.verified::after {
    content: '✔';
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--green-success);
    color: white;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.profile-avatar.faculty::after {
    content: 'F';
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary-blue);
    color: white;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.profile-info h4 {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.profile-role {
    font-size: 11px;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.profile-text {
    font-size: 12px;
    color: var(--text-medium);
    line-height: 1.4;
}

/* CENTER CONTENT SECTIONS */
.center-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-slider {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
}

.slide-content h2 {
    color: white;
    font-size: 32px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    text-align: center;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    user-select: none;
}

.slider-arrow.left { left: 10px; }
.slider-arrow.right { right: 10px; }

.slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.5;
    cursor: pointer;
}

.slider-dots .dot.active {
    opacity: 1;
    background: var(--yellow-accent);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
}

.section-icon {
    font-size: 24px;
    color: var(--primary-blue);
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.featured-courses {
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 24px;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.course-item {
    border: 1px solid var(--border-light);
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.course-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.course-image {
    width: 100%;
    height: 120px;
}

.course-image img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.course-content {
    padding: 15px;
}

.course-content h3 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.course-meta {
    font-size: 12px;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.course-description {
    font-size: 12px;
    color: var(--text-medium);
    line-height: 1.4;
    margin-bottom: 12px;
}

.course-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.course-btn:hover {
    background: var(--dark-blue);
}

.news-section {
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 24px;
}

.news-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.news-icon {
    width: 24px;
    height: 24px;
    background: url('images/news-icon.png') center/cover;
}

.news-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.news-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-light);
}

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

.news-thumbnail {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.news-thumbnail img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.news-content h3 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.news-date {
    font-size: 12px;
    color: var(--text-medium);
}

.news-item.no-image .news-content {
    flex-grow: 1;
}

.gallery-section {
    margin-top: 20px;
}

.gallery-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
}

.gallery-item {
    width: 100%;
    height: 100px;
}

.gallery-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    transition: all 0.3s ease;
}

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

.upcoming-events {
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 24px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.event-card {
    border: 1px solid var(--border-light);
    border-radius: 5px;
    padding: 15px;
    transition: all 0.3s ease;
}

.event-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.event-icon {
    width: 100%;
    height: 120px;
    margin-bottom: 10px;
}

.event-icon img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
}

.event-date {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.event-title {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.event-time, .event-location {
    font-size: 12px;
    color: var(--text-medium);
    margin-bottom: 5px;
}

.event-btn {
    background: var(--green-success);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.event-btn:hover {
    background: #218838;
}

.student-achievements {
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 24px;
}

.achievement-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-light);
}

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

.student-photo {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.student-photo img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

.achievement-content h3 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.achievement-title {
    font-size: 14px;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.achievement-quote {
    font-size: 12px;
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: 10px;
}

.read-more {
    font-size: 12px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}

.department-showcase {
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 24px;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.department-card {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.department-image {
    width: 100%;
    height: 150px;
}

.department-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.department-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.department-card:hover .department-overlay {
    opacity: 1;
}

.department-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.department-stats {
    font-size: 12px;
    margin-bottom: 12px;
}

.explore-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.explore-btn:hover {
    background: var(--dark-blue);
}

.research-highlights {
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 24px;
}

.research-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.featured-research {
    display: flex;
    gap: 15px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 15px;
}

.featured-research:last-child {
    border-bottom: none;
}

.research-large-image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.research-large-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
}

.research-content h3 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.research-author {
    font-size: 12px;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.research-description {
    font-size: 12px;
    color: var(--text-medium);
    line-height: 1.4;
    margin-bottom: 8px;
}

.research-meta {
    font-size: 12px;
    color: var(--text-medium);
}

.secondary-research {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}

.secondary-research:last-child {
    border-bottom: none;
}

.research-small-image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.research-small-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.secondary-research h4 {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.secondary-research .research-meta {
    font-size: 11px;
    color: var(--text-medium);
}

.campus-life {
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 24px;
}

.campus-content {
    display: flex;
    gap: 20px;
}

.campus-grid {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
}

.campus-image {
    width: 100%;
    height: 100px;
}

.campus-image img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.campus-image:hover img {
    transform: scale(1.05);
}

.campus-info {
    flex: 1;
    text-align: center;
}

.campus-info h3 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.campus-info p {
    font-size: 12px;
    color: var(--text-medium);
    line-height: 1.4;
    margin-bottom: 15px;
}

.social-handle {
    font-size: 14px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.followers {
    font-size: 12px;
    color: var(--text-medium);
    margin-bottom: 15px;
}

.follow-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.follow-btn:hover {
    background: var(--dark-blue);
}

.testimonials-carousel {
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 24px;
    position: relative;
}

.testimonial-content {
    text-align: center;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
}

.testimonial-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-quote {
    font-size: 14px;
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial-author {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-title {
    font-size: 12px;
    color: var(--text-medium);
    margin-bottom: 10px;
}

.testimonial-stars {
    font-size: 14px;
    color: #ffc107;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    border: none;
}

.testimonial-nav.prev { left: 10px; }
.testimonial-nav.next { right: 10px; }

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
}

.testimonial-dot.active {
    background: var(--primary-blue);
}

.quick-stats {
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.stat-number {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
}

.stat-sublabel {
    font-size: 12px;
    color: var(--text-medium);
}

.footer {
    background: var(--footer-dark);
    color: white;
    padding: 40px 20px;
    margin-top: 20px;
}

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

.footer-widget h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-widget p {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.footer-image {
    width: 80px;
    height: 80px;
}

.footer-image img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 5px;
}

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

.footer-widget ul li {
    margin-bottom: 8px;
}

.footer-widget ul li a {
    color: #e1f5fe;
    text-decoration: none;
    font-size: 12px;
}

.footer-widget ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 20px;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 12px;
}

@media print {
    .header, .navigation, .footer, .left-sidebar, .right-sidebar, .hero-slider, .bottom-section {
        display: none;
    }

    .main-container {
        grid-template-columns: 1fr;
        margin: 0;
        padding: 0;
    }

    .center-content {
        box-shadow: none;
        margin: 0;
    }

    .widget, .featured-courses, .upcoming-events, .student-achievements, .department-showcase, .research-highlights, .campus-life, .testimonials-carousel, .quick-stats {
        box-shadow: none;
        border: 1px solid #000;
    }
}

/* RESPONSIVE DESIGN */
@media screen and (max-width: 1199px) {
    .main-container {
        grid-template-columns: 250px 1fr 250px;
    }

    .news-sidebar {
        width: 300px;
    }
}

@media screen and (max-width: 991px) {
    .main-container {
        grid-template-columns: 1fr;
    }

    .left-sidebar, .right-sidebar {
        display: none;
    }

    .hero-slider {
        height: 300px;
    }

    .bottom-section {
        flex-direction: column;
        height: auto;
    }

    .section-card {
        height: 200px;
    }
}

@media screen and (max-width: 767px) {
    .header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .contact-info {
        text-align: center;
    }

    .navigation {
        flex-wrap: wrap;
    }

    .nav-item {
        flex: none;
        width: 33.33%;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    .main-content {
        height: 300px;
    }

    .news-sidebar {
        width: 100%;
    }

    .courses-grid, .events-grid, .departments-grid, .stats-grid {
        grid-template-columns: 1fr;
    }

    .research-grid {
        grid-template-columns: 1fr;
    }

    .campus-content {
        flex-direction: column;
    }

    .campus-info {
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
    }
}

@media screen and (max-width: 480px) {
    .hero-slider {
        height: 200px;
    }

    .slide-content h2 {
        font-size: 24px;
    }

    .section-title {
        font-size: 16px;
    }

    .course-content h3, .event-title, .research-content h3 {
        font-size: 14px;
    }

    .bottom-section {
        margin: 10px;
    }

    .section-card {
        padding: 15px;
    }
}

/* About Us Section Styles */
.section.bg-gradient-animated {
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.section.bg-gradient-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44,90,160,0.1), rgba(30,74,134,0.1));
    animation: subtleGradient 10s ease infinite;
    z-index: 0;
}

@keyframes subtleGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.section > * {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 100%;
    padding: 0;
}

.section-header.fade-in {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in;
}

.section-badge {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.4;
    max-width: 600px;
}

.section-divider {
    width: 50px;
    height: 3px;
    background: var(--yellow-accent);
    margin-top: 15px;
}

.card.interactive.fade-in {
    background: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in;
    transition: all 0.3s ease;
}

.card.interactive:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.founder-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 2px solid var(--primary-blue);
}

.founder-text.collapsed {
    max-height: 100px;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.founder-text.expanded {
    max-height: none;
}

.founder-text-preview {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.expandable-content {
    display: none;
}

.founder-text.expanded .expandable-content {
    display: block;
    font-size: 13px;
    color: var(--text-medium);
    line-height: 1.5;
}

.founder-achievements h4 {
    font-size: 14px;
    color: var(--primary-blue);
    margin: 15px 0 8px;
}

.achievement-item {
    font-size: 13px;
    color: var(--text-medium);
    margin-bottom: 8px;
    padding-left: 10px;
    position: relative;
}

.achievement-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
}

.read-more-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 15px auto 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.read-more-btn:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn.expanded i {
    transform: rotate(180deg);
}

.timeline#interactive-timeline {
    margin: 20px 0;
    position: relative;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    position: relative;
}

.timeline-item.fade-in {
    animation: fadeIn 1s ease-in;
}

.timeline-item.slide-left {
    animation: slideLeft 1s ease-in;
}

.timeline-item.slide-right {
    animation: slideRight 1s ease-in;
}

.timeline-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

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

.timeline-content h4 {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 5px;
}

.timeline-content p {
    font-size: 13px;
    color: var(--text-medium);
    line-height: 1.4;
}

.philosophy-section, .vision-mission-section {
    margin: 20px 0;
}

.philosophy-section h3, .vision-mission-section h3 {
    font-size: 16px;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 10px;
}

.philosophy-section p, .vision-mission-section p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

.trust-members-section {
    margin: 20px 0;
}

.trust-members-section h3 {
    font-size: 16px;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.trust-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.trust-member-card {
    background: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.trust-member-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.trust-member-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 10px;
}

.trust-member-name {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 5px;
}

.trust-member-role {
    font-size: 12px;
    color: var(--text-medium);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

@media screen and (max-width: 767px) {
    .trust-members-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .trust-member-image {
        width: 60px;
        height: 60px;
    }

    .founder-image {
        width: 100px;
        height: 100px;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-icon {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 480px) {
    .section-title {
        font-size: 16px;
    }

    .section-subtitle {
        font-size: 13px;
    }

    .trust-members-grid {
        grid-template-columns: 1fr;
    }

    .trust-member-card {
        padding: 10px;
    }

    .trust-member-image {
        width: 50px;
        height: 50px;
    }
}