:root {
    --primary: #003366;
    --secondary: #e74c3c;
    --accent: #f39c12;
    --light: #f8f9fa;
    --dark: #343a40;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

.hero {
    background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.8)), 
                url('../images/DSCF0404.JPG') no-repeat center center/cover;
    color: white;
    padding: 120px 20px;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.btn {
    display: inline-block;
    background: var(--accent);
    color: yellow;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 20px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: var(--accent);
    bottom: -10px;
    left: 25%;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.course-overview {
    background: var(--light);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.overview-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-10px);
}

.overview-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.overview-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}


/* DOWNLOAD CURRICULUM CARD (FULL-WIDTH) */
.download-curriculum-card {
    grid-column: 1 / -1; /* Spans entire width of grid */
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid #3498db; /* Accent bar */
}

.download-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.download-content i {
    font-size: 2rem;
    color: #e74c3c; /* Red for PDF icon */
}

.download-content h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.2rem;
}

.download-content p {
    margin: 5px 0 0;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.download-btn {
    background: var(--accent);
    color: var(--dark);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    white-space: nowrap;
}

.download-btn:hover {
    background: var(--primary);
    color: white;
}

.download-btn i {
    margin-right: 8px;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
    .download-curriculum-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .download-content {
        flex-direction: column;
    }
    .download-btn {
        width: 100%;
        text-align: center;
    }
}
/* DOWNLOAD CURRICULUM CARD (FULL-WIDTH) Ends here*/


/* IATA Certification Section */
.iata-certification {
    padding: 20px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

.certification-card {
    display: flex;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.certification-badge {
    position: relative;
    background: #fff;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 250px;
    border-right: 1px solid #eee;
}

.certification-badge img {
    max-width: 150px;
    height: auto;
}

.badge-ribbon {
    position: absolute;
    top: 15px;
    right: 0px;
    background: #e31c3d;
    color: white;
    padding: 2px 18px;
    font-size: 12px;
    font-weight: bold;
    transform: rotate(25deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.certification-content {
    padding: 15px 8px 3px 12px;
    flex: 1;
}

.certification-label {
    display: inline-block;
    background: #0056a3;
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.certification-header h2 {
    color: #2c3e50;
    margin: 10px 0 5px;
    font-size: 1.5rem;
}

.certification-subtitle {
    color: #7f8c8d;
    margin-bottom: 1px;
    font-size: 0.95rem;
}

.certification-details {
    display: flex;
    gap: 40px;
    margin: 10px 0;
    margin-top: -20px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.detail-item i {
    color: #0056a3;
    font-size: 1.2rem;
    margin-top: 3px;
}

.detail-item h4 {
    margin: 0 0 5px;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.detail-item p {
    margin: 0;
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 500;
}

.certification-cta {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.certification-notice {
    margin: 10px 0;
    margin-top: -30px;
    padding: 15px;
    background-color: #f8f9fa;
    border-left: 4px solid #0066cc;
}

.certification-notice h2 {
    font-size: 1.2rem;
    margin-bottom: 3px;
    color: #333;
}

.certification-notice p {
    margin: 0;
    color: #555;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    margin-top: -30px;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn i {
    font-size: 0.9rem;
}

.cta-btn.primary {
    background: #0056a3;
    color: white;
    border: 2px solid #0056a3;
}

.cta-btn.primary:hover {
    background: #003d7a;
    border-color: #003d7a;
}

.cta-btn.secondary {
    background: white;
    color: #0056a3;
    border: 2px solid #0056a3;
}

.cta-btn.secondary:hover {
    background: #f0f7ff;
}


/*The why-choose-us section starts here*/
.hidden-section {
    display: none;
}

.why-choose-us {
    display: block;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, height 0.3s ease;
}

.why-choose-us.visible {
    opacity: 1;
    height: auto;
}

/* Style the button to look like your original */
.cta-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: darkblue;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    font-size: 15px;
}

.cta-btn.secondary {
    background-color: darkblue;
    color: white;
}

.cta-btn:hover {
    opacity: 0.9;
    color: darkblue;
}
/*The why choose course ends here*/

/* Enhanced Responsive Adjustments */
@media (max-width: 900px) {
    .certification-details {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .certification-card {
        flex-direction: column;
    }
    
    .certification-badge {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 20px;
        min-width: auto;
    }
    
    .certification-content {
        padding: 20px;
    }
    
    .certification-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .certification-cta {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .certification-badge {
        padding: 15px;
    }
    
    .certification-badge img {
        max-width: 120px;
    }
    
    .certification-header h2 {
        font-size: 1.3rem;
    }
    
    .certification-notice h2 {
        font-size: 1.1rem;
    }
}
/*Ends here*/


@media (max-width: 480px) {
    .certification-header h2 {
        font-size: 1.3rem;
    }
}


.curriculum {
    background: white;
}

.module {
    margin-bottom: 40px;
    border-left: 4px solid var(--primary);
    padding-left: 20px;
}

.module h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.module ul {
    list-style-position: inside;
}

.module li {
    margin-bottom: 10px;
}

.instructors {
    background: var(--light);
}

.instructor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.instructor-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.instructor-img {
    height: 250px;
    overflow: hidden;
}

.instructor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructor-info {
    padding: 20px;
}

.instructor-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.instructor-info p {
    color: #666;
    margin-bottom: 15px;
}

.requirements {
    background: white;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.requirement-card {
    background: var(--light);
    border-radius: 8px;
    padding: 25px;
}

.requirement-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.requirement-card h3 i {
    margin-right: 10px;
}

.requirement-card ul {
    list-style-position: inside;
}

.requirement-card li {
    margin-bottom: 8px;
}

.cta {
    background: linear-gradient(rgba(0, 51, 102, 0.9), rgba(0, 51, 102, 0.9)), 
                url('../images/flight-training-bg.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}


/* =============================================
BASIC AIRSIDE SAFETY COURSE
Additional Styles for Course-Specific Sections
============================================= */

/* 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;
}

/* Course Features Section */
.features {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.features .section-title {
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 40px;
    color: #2c83c3;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Enhanced CTA Section for Airside Safety */
.cta.airside-cta {
    background: linear-gradient(135deg, #2c83c3 0%, #1a5276 100%);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.cta.airside-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
}

.cta.airside-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta.airside-cta .btn-primary {
    background-color: var(--accent);
    border-color: #e74c3c;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 600;
}

.cta.airside-cta .btn-primary:hover {
    background-color: #c0392b;
    border-color: #c0392b;
}

.cta.airside-cta .btn-secondary {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 600;
    margin-left: 15px;
}

.cta.airside-cta .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Practical Training Highlights */
.training-highlights {
    padding: 60px 0;
    background-color: #fff;
}

.highlights-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.highlights-image {
    flex: 1;
    min-width: 300px;
}

.highlights-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.highlights-content {
    flex: 1;
    min-width: 300px;
}

.highlights-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.highlights-content ul {
    list-style: none;
    padding: 0;
}

.highlights-content li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.highlights-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 15px;
    height: 15px;
    background-color: #2c83c3;
    border-radius: 50%;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .highlights-container {
        flex-direction: column;
    }
    
    .highlights-image,
    .highlights-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .cta.airside-cta .cta-buttons {
        flex-direction: column;
    }
    
    .cta.airside-cta .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .cta.airside-cta h2 {
        font-size: 28px;
    }
    
    .cta.airside-cta p {
        font-size: 16px;
    }
    
    .cta.airside-cta .btn-primary,
    .cta.airside-cta .btn-secondary {
        width: 100%;
        display: block;
        margin-left: 0;
        margin-top: 10px;
    }
}
/* =============================================
BASIC AIRSIDE SAFETY COURSE
Additional Styles for Course-Specific Sections ends here
============================================= */



/* =============================================
HUMAN FACTORS & SAFETY MANAGEMENT COURSE
Additional Styles for Course-Specific Sections
============================================= */

/* Learning Outcomes Section */
.learning-outcomes {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.learning-outcomes .section-title {
    margin-bottom: 40px;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.outcome-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.outcome-card:hover {
    transform: translateY(-5px);
}

.outcome-card i {
    color: #2c83c3;
    font-size: 24px;
    margin-right: 15px;
    margin-top: 3px;
}

.outcome-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

/* Course Delivery Methods */
.delivery-methods {
    padding: 60px 0;
    background-color: #fff;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.delivery-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
}

.delivery-card:hover {
    border-color: #2c83c3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.delivery-card i {
    font-size: 40px;
    color: #2c83c3;
    margin-bottom: 20px;
    display: block;
}

.delivery-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #333;
}

.delivery-card ul {
    padding-left: 20px;
}

.delivery-card li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

/* Who Should Attend Section */
.audience {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.audience-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.audience-card i {
    font-size: 40px;
    color: #2c83c3;
    margin-bottom: 15px;
}

.audience-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.audience-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Certification Section */
.certification {
    padding: 60px 0;
    background-color: #2c83c3;
    color: #fff;
}

.certification-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.certification-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.certification-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.certification-text {
    flex: 2;
    min-width: 300px;
}

.certification-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark);
}

.certification-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.certification-text ul {
    list-style: none;
    padding: 0;
}

.certification-text li {
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: flex-start;
}

.certification-text i {
    margin-right: 10px;
    font-size: 20px;
    color: #fff;
}

/* Enhanced CTA Buttons */
.cta .btn-primary {
    background-color: #e74c3c;
    border-color: #e74c3c;
}

.cta .btn-primary:hover {
    background-color: #c0392b;
    border-color: #c0392b;
}

.cta .btn-secondary {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.cta .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cta .btn-tertiary {
    background-color: #3498db;
    border-color: #3498db;
}

.cta .btn-tertiary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .certification-content {
        flex-direction: column;
        text-align: center;
    }
    
    .certification-text ul {
        text-align: left;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .outcomes-grid,
    .delivery-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .outcome-card,
    .delivery-card,
    .audience-card {
        padding: 20px;
    }
}
/* =============================================
HUMAN FACTORS & SAFETY MANAGEMENT COURSE
Additional Styles for Course-Specific Sections Ends here
============================================= */




/* =============================================
       QUALITY MANAGEMENT SYSTEMS COURSE
       Additional Styles for QMS Course
============================================= */

    /* Benefits Section */
    .benefits {
        padding: 40px 0;
        background-color: #f8f9fa;
    }

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .benefit-card {
        background: #fff;
        border-radius: 8px;
        padding: 30px;
        display: flex;
        align-items: flex-start;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }

    .benefit-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .benefit-icon {
        margin-right: 20px;
    }

    .benefit-icon i {
        font-size: 30px;
        color: #2c83c3;
    }

    .benefit-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
        color: #333;
    }

    .benefit-content p {
        margin: 0;
        color: #666;
        font-size: 14px;
        line-height: 1.6;
    }

    /* Certification Badge */
    .certification-badge {
        padding: 40px 0;
        background-color: #2c83c3;
        color: #fff;
    }

    .badge-container {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 40px;
    }

    .badge-image {
        flex: 1;
        min-width: 300px;
        text-align: center;
    }

    .badge-image img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }

    .badge-content {
        flex: 2;
        min-width: 300px;
    }

    .badge-content h2 {
        font-size: 32px;
        margin-bottom: 15px;
        color: #fff;
    }

    .badge-content p {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 15px;
    }

    .badge-content ul {
        list-style: none;
        padding: 0;
    }

    .badge-content li {
        margin-bottom: 15px;
        font-size: 16px;
        display: flex;
        align-items: flex-start;
    }

    .badge-content i {
        margin-right: 10px;
        font-size: 20px;
        color: #fff;
    }

    /* Delivery Methods Tabs */
    .delivery-methods {
        padding: 60px 0;
        background-color: #fff;
    }

    .delivery-tabs {
        display: flex;
        border-bottom: 1px solid #e0e0e0;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }

    .tab {
        padding: 15px 25px;
        cursor: pointer;
        border-bottom: 3px solid transparent;
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 600;
        color: #666;
        transition: all 0.3s ease;
    }

    .tab i {
        font-size: 18px;
    }

    .tab.active {
        color: #2c83c3;
        border-bottom-color: #2c83c3;
    }

    .tab:hover:not(.active) {
        color: #333;
        background-color: #f5f5f5;
    }

    .delivery-content {
        display: none;
        gap: 40px;
        align-items: center;
        flex-wrap: wrap;
    }

    .delivery-content.active {
        display: flex;
    }

    .delivery-details {
        flex: 1;
        min-width: 300px;
    }

    .delivery-details h3 {
        font-size: 28px;
        margin-bottom: 20px;
        color: #333;
    }

    .delivery-details p {
        color: #555;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .delivery-details ul {
        list-style: none;
        padding: 0;
        margin-bottom: 30px;
    }

    .delivery-details li {
        margin-bottom: 10px;
        padding-left: 30px;
        position: relative;
        color: #555;
    }

    .delivery-details li i {
        position: absolute;
        left: 0;
        top: 4px;
        color: #2c83c3;
    }

    .delivery-image {
        flex: 1;
        min-width: 300px;
    }

    .delivery-image img {
        width: 100%;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    /* Who Should Attend */
    .audience {
        padding: 60px 0;
        background-color: #f8f9fa;
    }

    .audience-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }

    .audience-card {
        background: #fff;
        border-radius: 8px;
        padding: 25px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }

    .audience-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .audience-card i {
        font-size: 40px;
        color: #2c83c3;
        margin-bottom: 15px;
    }

    .audience-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
        color: #333;
    }

    .audience-card p {
        font-size: 14px;
        color: #666;
        margin: 0;
    }

    /* Responsive Adjustments */
    @media (max-width: 992px) {
        .badge-container,
        .delivery-content {
            flex-direction: column;
        }
        
        .badge-image,
        .delivery-image {
            width: 100%;
            margin-bottom: 30px;
        }
    }

    @media (max-width: 768px) {
        .delivery-tabs {
            flex-wrap: wrap;
        }
        
        .tab {
            flex: 1 0 120px;
            justify-content: center;
        }
    }

    @media (max-width: 480px) {
        .benefits-grid,
        .audience-grid {
            grid-template-columns: 1fr;
        }
        
        .benefit-card,
        .audience-card {
            padding: 20px;
        }
        
        .tab {
            padding: 12px 15px;
            font-size: 14px;
        }
        
        .delivery-details h3 {
            font-size: 24px;
        }
    }
/* =============================================
       QUALITY MANAGEMENT SYSTEMS COURSE
       Additional Styles for QMS Course ends here
============================================= */






/* =============================================
SAFETY MANAGEMENT SYSTEMS COURSE
Additional Styles for SMS Course
============================================= */

/* Highlights Section */
.highlights {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.highlight-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.highlight-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    margin-right: 20px;
}

.highlight-icon i {
    font-size: 30px;
    color: #2c83c3;
}

.highlight-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.highlight-content p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* SMS Framework Section */
.sms-framework {
    padding: 60px 0;
    background-color: #fff;
}

.framework-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--light);
    font-size: 60px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c83c3;
    position: relative;
}

.step-content p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.step-content ul {
    padding-left: 20px;
}

.step-content li {
    margin-bottom: 8px;
    color: #555;
}

/* Interactive Learning Section */
.interactive-learning {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.learning-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.learning-image {
    flex: 1;
    min-width: 300px;
}

.learning-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.learning-content {
    flex: 1;
    min-width: 300px;
}

.learning-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.learning-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.learning-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.method {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.method i {
    font-size: 24px;
    color: #2c83c3;
    margin-bottom: 10px;
    display: block;
}

.method span {
    font-size: 14px;
    color: #555;
}

/* Certification Section */
.certification {
    padding: 60px 0;
    background-color: #2c83c3;
    color: #fff;
}

.certification .container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.certification-badge {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.certification-badge img {
    max-width: 100%;
    height: auto;
}

.certification-content {
    flex: 2;
    min-width: 300px;
}

.certification-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--dark);
}

.certification-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.certification-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.certification-content li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.certification-content i {
    margin-right: 10px;
    font-size: 20px;
}

.certification-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.meta-item i {
    font-size: 20px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .learning-container,
    .certification .container {
        flex-direction: column;
    }
    
    .learning-image,
    .certification-badge {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .highlight-cards,
    .framework-steps {
        grid-template-columns: 1fr;
    }
    
    .step {
        padding: 25px;
    }
    
    .learning-methods {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .learning-content h2 {
        font-size: 28px;
    }
    
    .certification-content h2 {
        font-size: 28px;
    }
    
    .certification-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}
/* =============================================
SAFETY MANAGEMENT SYSTEMS COURSE
Additional Styles for SMS Course ends here
============================================= 







/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 80px 20px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    section {
        padding: 30px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
}