:root {
    --primary: #3a0ca3;
    --secondary: #4361ee;
    --accent: #4cc9f0;
    --light: #f8f9fa;
    --dark: #212529;
}

.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-section {
    background: linear-gradient(rgba(58, 12, 163, 0.8), rgba(67, 97, 238, 0.8)), 
        url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: white;
}

/* Consolidated section styles */
.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
}

/* Consolidated course card styles */
.course-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.course-card .card-img-top {
    height: 220px; /* Increased from 180px */
    object-fit: cover;
}

.course-card .card-body {
    padding: 25px;
}

.course-card .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.course-card .card-text {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.course-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.course-card .duration {
    display: flex;
    align-items: center;
    color: #777;
    font-size: 0.9rem;
}

.course-card .rating {
    color: #f39c12;
    font-size: 0.9rem;
}

.course-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.8rem;
}

/* Consolidated course features */
.course-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.course-features li {
    padding: 5px 0;
    color: #555;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.course-features li i {
    color: var(--success);
    margin-right: 8px;
}

.courses-header {
    text-align: center;
    margin-bottom: 60px;
}

.courses-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* Consolidated button styles */
.btn-enroll {
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-enroll:hover {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    transform: scale(1.05);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

/* Section backgrounds */
.course-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.batches-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
}

.fullstack-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.youtube-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

/* Fullstack card adjustments (reduced size) */
.fullstack-horizontal-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    padding: 15px; /* Added padding reduction */
    margin-bottom: 20px; /* Added margin reduction */
}

.fullstack-horizontal-card:hover {
    transform: translateY(-5px);
}

.fullstack-horizontal-card .card-body {
    padding: 20px; /* Reduced padding */
}

.tech-category {
    font-weight: 600;
    color: #2c3e50;
    margin-top: 10px; /* Reduced margin */
    margin-bottom: 5px; /* Reduced margin */
    padding-bottom: 5px;
    border-bottom: 2px solid #3498db;
    display: inline-block;
    font-size: 0.9rem; /* Reduced font size */
}

/* Instructor styles */
.instructor-img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border: 5px solid #f8f9fa;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-icon {
    transition: all 0.3s ease;
    color: white;
    font-size: 1.5rem;
    margin-right: 15px;
}

.social-icon:hover {
    color: var(--accent);
    transform: translateY(-3px);
}

.expertise-tags .badge {
    font-size: 0.85rem;
    padding: 0.5em 0.8em;
    font-weight: 500;
    transition: all 0.2s ease;
}

.expertise-tags .badge:hover {
    background-color: #3498db !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.instructor-details h4 {
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.instructor-info {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.bg-light-custom {
    background-color: #f8f9fc;
}

/* Batch Cards Styling */
.batch-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    background: white;
    position: relative;
    margin-bottom: 1.5rem;
}

.batch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Batch Badge */
.batch-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.batch-badge.new {
    background: linear(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.batch-badge.upcoming {
	background: linear(135deg, #667eea 0%, #764ba2 100%);
	    color: white;
}

/* Card Header */
/* More specific selector for card header */
.batch-card .card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border: none !important;
    padding: 1.5rem 1.25rem 1rem !important;
}

.batch-card .card-header h5 {
    font-weight: 600 !important;
    font-size: 1.25rem !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    color: white !important;
}
/* Card Body */
.batch-card .card-body {
    padding: 1.5rem 1.25rem;
}

/* Date and Timing */
.start-date, .timing {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: #555;
}

.start-date i, .timing i {
    margin-right: 0.75rem;
    font-size: 1rem;
    color: #667eea;
    width: 16px;
    text-align: center;
}

/* Batch Details List */
.batch-details {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    padding: 1rem 0;
}

.batch-details li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.batch-details li:last-child {
    margin-bottom: 0;
}

.batch-details li i {
    margin-right: 0.75rem;
    font-size: 1rem;
    color: #667eea;
    width: 16px;
    text-align: center;
}

/* Enroll Button */
.btn-enroll {
    background: linear(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-enroll:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

/* Empty State Styling */
.text-center.py-5 {
    padding: 3rem 0;
}

.text-center.py-5 i {
    color: #6c757d;
    margin-bottom: 1rem;
}

.text-center.py-5 h4 {
    color: #495057;
    margin-bottom: 1rem;
}

.text-center.py-5 p {
    color: #6c757d;
    max-width: 400px;
    margin: 0 auto 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .batch-card {
        margin-bottom: 1rem;
    }
    
    .batch-card .card-header {
        padding: 1.25rem 1rem 0.75rem;
    }
    
    .batch-card .card-header h5 {
        font-size: 1.1rem;
    }
    
    .batch-card .card-body {
        padding: 1.25rem 1rem;
    }
    
    .batch-badge {
        top: 10px;
        right: 10px;
        font-size: 0.7rem;
        padding: 4px 10px;
    }
}

/* Animation for card appearance */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.batch-card {
    animation: fadeInUp 0.5s ease-out;
}

.footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.enrollment-form {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
}

.flash-message {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 12px 20px;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.2);
    z-index: 9999;
}

.flash-success {
    background: #28a745;
}

.flash-error {
    background: #dc3545;
}

.contact-info {
    background-color: #2c3e50;
    color: white;
}

.logo-text {
    font-weight: 700;
    color: #3498db;
}

.date-title {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 10px;
}

.highlighted-date {
    background: linear-gradient(45deg, #FF6B6B, #FF8E53);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    display: inline-block;
    margin: 8px 0;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.date-subtext {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 10px;
}

.feature-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: white;
    font-weight: 500;
}

/* YouTube channel card styles */
.channel-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.channel-card:hover {
    transform: translateY(-5px);
}

.channel-header {
    padding: 30px 30px 20px;
}

.channel-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.channel-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
}

.channel-stats {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
    color: #2c3e50;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
}

.btn-youtube {
    background: #FF0000;
    color: white;
    border: none;
    padding: 10px 25px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-youtube:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2);
    color: white;
}

.channel-desc {
    padding: 20px 30px 30px;
    border-top: 1px solid #eaeaea;
}

.channel-desc p {
    color: #555;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Book card styles */
.book-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.book-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.book-image-container {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.book-image {
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.book-card:hover .book-image {
    transform: scale(1.05);
}

.book-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.book-card:hover .book-overlay {
    opacity: 1;
}

.book-actions {
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.book-card:hover .book-actions {
    transform: translateY(0);
}

.rating {
    font-size: 0.9rem;
}

.price-tag {
    font-size: 1.1rem;
}

.btn-outline-primary {
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Modal styles */
#loginModal .modal-content,
#enrollmentModal .modal-content {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: none;
}

#loginModal .modal-header,
#enrollmentModal .modal-header {
    border-bottom: 1px solid #e9ecef;
    padding: 1.5rem;
}

#enrollmentModal .modal-header {
    background: linear-gradient(135deg, #3a0ca3 0%, #4361ee 100%);
    color: white;
    border-radius: 12px 12px 0 0;
}

#loginModal .modal-body,
#enrollmentModal .modal-body {
    padding: 2rem;
}

#loginModal .modal-footer,
#enrollmentModal .modal-footer {
    border-top: 1px solid #e9ecef;
    padding: 1rem 2rem;
}

#loginModal .input-group-text,
#enrollmentModal .input-group-text {
    background-color: #f8f9fa;
    border-right: none;
}

#enrollmentModal .input-group-text {
    color: #3a0ca3;
}

#loginModal .form-control,
#loginModal .form-select,
#enrollmentModal .form-control,
#enrollmentModal .form-select {
    border-left: none;
    padding: 0.75rem;
    border-radius: 0 0.375rem 0.375rem 0;
}

#loginModal .form-control:focus,
#loginModal .form-select:focus,
#enrollmentModal .form-control:focus,
#enrollmentModal .form-select:focus {
    box-shadow: none;
    border-color: #ced4da;
}

#enrollmentModal textarea.form-control {
    border-radius: 0.375rem;
    border-left: 1px solid #ced4da;
}

#loginModal .btn-primary,
#enrollmentModal .btn-primary {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    border: none;
    padding: 0.75rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#enrollmentModal .btn-primary {
    background: linear-gradient(135deg, #3a0ca3, #4361ee);
}

#loginModal .btn-primary:hover,
#enrollmentModal .btn-primary:hover {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    transform: translateY(-2px);
}

#enrollmentModal .btn-primary:hover {
    background: linear-gradient(135deg, #4361ee, #3a0ca3);
}

#loginModal .text-muted,
#enrollmentModal .text-muted {
    font-size: 0.9rem;
}

/* Alert animations */
.alert-dismissible {
    animation: slideInDown 0.5s ease;
}

@keyframes slideInDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.alert-auto-dismiss {
    animation: slideInDown 0.5s ease, fadeOut 0.5s ease 4.5s forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        display: none;
    }
}

/* Compact course cards */
.compact-course-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: none;
}

.compact-course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.course-image {
    height: 180px;
    object-fit: cover;
}

.course-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.course-instructor {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 0.75rem;
}

.course-details {
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.tech-pill {
    display: inline-block;
    font-size: 0.7rem;
    padding: 3px 8px;
    margin: 2px;
    border-radius: 12px;
    background-color: #f0f5ff;
    color: #3c6dc5;
    border: 1px solid #dbe7ff;
}

.course-date {
    background-color: #fff4e6;
    color: #e67700;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 0.75rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .channel-stats {
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .channel-header {
        padding: 25px 20px 15px;
    }
    
    .channel-desc {
        padding: 15px 20px 25px;
    }
}

@media (min-width: 768px) {
    #enrollmentModal .modal-dialog {
        max-width: 700px;
    }
    
    #enrollmentModal .form-row {
        display: flex;
        flex-wrap: wrap;
        margin-right: -5px;
        margin-left: -5px;
    }
    
    #enrollmentModal .form-row > .col {
        padding-right: 5px;
        padding-left: 5px;
    }
}

/* LMS Section Styling */
.lms-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
}

.lms-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.lms-section .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* LMS Card */
.lms-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    transition: all 0.3s ease;
    border: 1px solid #e8ebf1;
}

.lms-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* LMS Header */
.lms-header {
    margin-bottom: 2rem;
}

.lms-logo {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    object-fit: cover;
    border: 4px solid #e8ebf1;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.lms-name {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* LMS Stats */
.lms-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid #e8ebf1;
    border-bottom: 1px solid #e8ebf1;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* LMS Button */
.btn-lms {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-lms:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.6);
    color: white;
}

/* LMS Description */
.lms-desc {
    margin-top: 2rem;
}

.lms-desc p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* LMS Features */
.lms-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    background: #f8f9ff;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e8ebf1;
}

.feature-item:hover {
    transform: translateY(-3px);
    background: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 0.75rem;
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .lms-section {
        padding: 60px 0;
    }
    
    .lms-section .section-title {
        font-size: 2rem;
    }
    
    .lms-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .lms-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .lms-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .lms-name {
        font-size: 1.8rem;
    }
    
    .lms-logo {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .lms-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .lms-features {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 1rem 1.5rem;
    }
    
    .feature-item i {
        margin-bottom: 0;
        margin-right: 1rem;
        font-size: 1.5rem;
    }
}