/* Hero Section aircraft maintenance */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/bas.jpg') !important;
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

/* Course Table Section */
.course-table-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    overflow: hidden;
}

.course-table-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.course-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: white;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.course-table.visible {
    opacity: 1;
    transform: translateX(0);
}

.course-table th, .course-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.course-table th {
    background-color: #2c83c3;
    color: white;
    font-weight: 600;
}

.course-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.course-table tr:hover {
    background-color: #e9f5ff;
}

.course-table td:first-child {
    font-weight: bold;
    color: #2c83c3;
}

/* Responsive Table */
@media (max-width: 768px) {
    .course-table {
        display: block;
        overflow-x: auto;
    }
    
    .course-table th, .course-table td {
        padding: 10px 8px;
        font-size: 14px;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 40px 0;
    background-color: #fff;
}

.testimonials .section-title {
    margin-bottom: 40px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 80px;
    color: rgba(44, 131, 195, 0.1);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    font-style: italic;
    color: #555;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid #2c83c3;
}

.testimonial-author h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 18px;
}

.testimonial-author p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* Instructors Section */
.instructors {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.instructors .section-title {
    margin-bottom: 40px;
}

.instructor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.instructor-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.instructor-card:hover {
    transform: translateY(-10px);
}

.instructor-img {
    height: 250px;
    overflow: hidden;
}

.instructor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instructor-card:hover .instructor-img img {
    transform: scale(1.1);
}

.instructor-info {
    padding: 20px;
}

.instructor-info h3 {
    margin: 0 0 5px 0;
    color: #2c83c3;
}

.instructor-info p {
    margin: 0;
    color: #666;
}

.instructor-info p:first-of-type {
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        height: 50vh;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .instructor-grid {
        grid-template-columns: 1fr;
    }
}












.course-table-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.course-table-container {
    overflow-x: auto;
    margin: 0 auto;
    max-width: 1200px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.course-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.course-table th, 
.course-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.course-table th {
    background-color: #003366;
    color: white;
    font-weight: 600;
}

.course-table tr:nth-child(even) {
    background-color: #f5f5f5;
}

.course-table tr:hover {
    background-color: #eef7ff;
}

.course-table ul, 
.course-table ol {
    margin: 0;
    padding-left: 20px;
}

.course-table li {
    margin-bottom: 5px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .course-table-section {
        padding: 40px 0;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
    
    .course-table th, 
    .course-table td {
        padding: 10px;
        font-size: 14px;
    }
    
    .course-table-container {
        margin: 0 15px;
    }
}

@media (max-width: 480px) {
    .course-table th, 
    .course-table td {
        padding: 8px;
        font-size: 13px;
    }
    
    .course-table ul, 
    .course-table ol {
        padding-left: 15px;
    }
}