/*destinations files and pages css part*/

/* ===== Custom Styles for Skylead Aviation ===== */

/* Hero Banner Styles */
.banner_area {
    position: relative;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--tertiary-color) 100%) !important;
}

.banner_area .banner_inner {
    background: url('../img/banner-bg.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    min-height: 500px;
}

.banner_area .overlay {
    background: linear-gradient(135deg, rgba(26, 43, 109, 0.9) 0%, rgba(44, 62, 80, 0.9) 100%);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.banner_content h2 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner_content p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Main Title Styles */
.main_title h2 {
    font-size: 36px;
    font-weight: 700;
    /* color: #2c3e50; */
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    text-transform: uppercase;
}

.main_title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    /* background: #e74c3c; */
    background: var(--primary-color);
}

.main_title p {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 0;
}

/* Feature Cards */
.single_feature {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
    margin-bottom: 30px;
    height: 100%;
}

.single_feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature_head i {
    font-size: 50px;
    color: #e74c3c;
    margin-bottom: 20px;
    display: block;
}

.feature_head h4 {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature_content p {
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Quick Facts Box */
.quick-facts {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.quick-facts h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 24px;
}

.quick-facts .unordered-list li {
    color: #fff;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
}

.quick-facts .unordered-list li strong {
    color: #fff;
    font-weight: 600;
}

/* Course Details */
.course_details_area {
    background: #f8f9fa;
}

.course_details_inner {
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.content_wrapper .title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 10px;
}

.single_details h6 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.single_details p {
    color: #7f8c8d;
    margin-bottom: 0;
    font-size: 15px;
}

/* Right Sidebar */
.right-contents {
    position: sticky;
    top: 100px;
}

.sidebar_top {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8e8e8;
}

.sidebar_top .title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.sidebar_top ul li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.sidebar_top ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar_top ul li a {
    color: #7f8c8d;
    font-size: 15px;
}

.sidebar_top ul li span.color {
    color: #e74c3c;
    font-weight: 600;
}

/* Buttons */
.genric-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
}

.genric-btn.primary {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.genric-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.genric-btn.primary-border {
    background: transparent;
    border: 2px solid #e74c3c;
    color: #e74c3c;
}

.genric-btn.primary-border:hover {
    background: #e74c3c;
    color: #fff;
}

.genric-btn.circle {
    border-radius: 50px;
}

.genric-btn.arrow {
    position: relative;
    padding-right: 50px;
}

.genric-btn.arrow span {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.genric-btn.arrow:hover span {
    right: 15px;
}

.country-overview {
    background: #fff;
}

/* Advantages List */
.d-flex.align-items-center {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.d-flex.align-items-center:last-child {
    border-bottom: none;
}

.d-flex.align-items-center i {
    font-size: 20px;
    min-width: 30px;
}

.d-flex.align-items-center .h5 {
    color: #2c3e50;
    font-weight: 500;
    margin-bottom: 0;
}

/* Header Styles */
/* .header_area .navbar-light .navbar-nav .nav-item .nav-link {
    color: #2c3e50;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.header_area .navbar-light .navbar-nav .nav-item .nav-link:hover {
    color: #e74c3c;
} */

/* Footer Styles */
/* .footer-area {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
}

.footer-area .single-footer-widget h4 {
    color: #fff;
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 20px;
}

.footer-area .single-footer-widget ul li a {
    color: #bdc3c7;
    transition: all 0.3s ease;
}

.footer-area .single-footer-widget ul li a:hover {
    color: #e74c3c;
    padding-left: 5px;
} */

/* Responsive Design */
@media (max-width: 1199px) {
    .banner_content h2 {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .banner_content h2 {
        font-size: 36px;
    }
    
    .main_title h2 {
        font-size: 30px;
    }
    
    /* .section_gap,
    .section_gap_top,
    .sample-text-area {
        padding: 70px 0;
    } */
    
    .right-contents {
        margin-top: 50px;
    }
}

@media (max-width: 767px) {
    .banner_content h2 {
        font-size: 28px;
    }
    
    .banner_content p {
        font-size: 16px;
    }
    
    .main_title h2 {
        font-size: 26px;
    }
    
    .course_details_inner {
        padding: 30px 20px;
    }
    
    .single_feature {
        padding: 30px 20px;
    }
    
    /* .section_gap,
    .section_gap_top,
    .sample-text-area {
        padding: 50px 0;
    } */
}

@media (max-width: 575px) {
    .banner_content h2 {
        font-size: 24px;
    }
    
    .main_title h2 {
        font-size: 22px;
    }
    
    .feature_head h4 {
        font-size: 20px;
    }
    
    .genric-btn {
        padding: 10px 25px;
        font-size: 13px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%) !important;
}

.bg-gradient-blue {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%) !important;
}

.bg-gradient-dark {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%) !important;
}

/* Card Hover Effects */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Badge Styles */
.badge-primary {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Progress Bars */
.progress-bar-custom {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 10px;
}

/* Testimonial Styles */
.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #e74c3c;
}

.testimonial-text {
    font-style: italic;
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.testimonial-designation {
    color: #e74c3c;
    font-size: 14px;
    margin-bottom: 0;
}


/* ===== Custom Styles for Skylead Aviation ===== */

/* School Tabs Styles */
.school-tabs-nav {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.school-tabs-nav .nav-tabs {
    border: none;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 10px 0;
}

.school-tabs-nav .nav-tabs .nav-item {
    margin: 0 5px;
    flex-shrink: 0;
}

.school-tabs-nav .nav-tabs .nav-link {
    border: none;
    border-radius: 10px;
    padding: 20px 15px;
    text-align: center;
    background: #f8f9fa;
    color: #7f8c8d;
    transition: all 0.3s ease;
    min-width: 140px;
    border: 2px solid transparent;
    font-weight: 500;
}

.school-tabs-nav .nav-tabs .nav-link:hover {
    background: #fff;
    color: #2c3e50;
    border-color: #e74c3c;
    transform: translateY(-2px);
}

.school-tabs-nav .nav-tabs .nav-link.active {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    border-color: #e74c3c;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

.tab-school-logo {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    padding: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tab-school-logo img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 5px;
}

.tab-school-logo i {
    font-size: 24px;
    color: #e74c3c;
}

.school-tabs-nav .nav-link.active .tab-school-logo {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.school-tabs-nav .nav-link.active .tab-school-logo i {
    color: #fff;
}

.school-tab-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-top: 5px;
}

/* School Header */
.school-header {
    border-bottom: 2px solid #f1f1f1;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.school-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #ddd;
    font-size: 16px;
}

.stars i.filled {
    color: #f39c12;
}

.rating-text {
    color: #7f8c8d;
    font-size: 14px;
    font-weight: 500;
}

/* Statistics Box */
.stat-box {
    padding: 25px 15px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.stat-icon i {
    color: #fff;
    font-size: 28px;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    color: #7f8c8d;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
}

/* Course Items */
.course-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
    margin-bottom: 15px;
}

.course-item:hover {
    background: #f8f9fa;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    border-color: #e74c3c;
}

.course-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.course-icon i {
    color: #fff;
    font-size: 20px;
}

.course-content h6 {
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 16px;
}

.course-content p {
    color: #7f8c8d;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Section Subtitles */
.section-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.section-subtitle:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 2px;
}

/* Facility Items */
.facility-item {
    padding: 25px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f1f1f1;
    text-align: center;
}

.facility-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #e74c3c;
}

.facility-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(155, 89, 182, 0.3);
}

.facility-icon i {
    color: #fff;
    font-size: 28px;
}

.facility-item h6 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 16px;
}

.facility-item p {
    color: #7f8c8d;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Contact List */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.contact-list li:hover {
    background: #f8f9fa;
    padding-left: 10px;
    border-radius: 5px;
}

.contact-list li:last-child {
    border-bottom: none;
}

.contact-list li i {
    color: #e74c3c;
    width: 20px;
    font-size: 16px;
}

.contact-list li span {
    color: #7f8c8d;
    font-size: 14px;
}

/* Fleet Info */
.fleet-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.fleet-info h6 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 16px;
}

.fleet-info p {
    color: #7f8c8d;
    margin-bottom: 0;
    font-size: 14px;
}

/* School Overview */
.school-overview {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.school-overview .lead {
    color: #fff;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Quick Facts */
.quick-facts {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.quick-facts h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 24px;
    text-align: center;
}

.quick-facts .unordered-list li {
    color: #fff;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    padding-left: 10px;
}

.quick-facts .unordered-list li strong {
    color: #fff;
    font-weight: 600;
}



/* Responsive Tabs */
@media (max-width: 768px) {
    .school-tabs-nav .nav-tabs {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    
    .school-tabs-nav .nav-tabs .nav-item {
        margin: 5px;
        flex: 1 0 calc(50% - 10px);
        min-width: 120px;
    }
    
    .school-tabs-nav .nav-tabs .nav-link {
        min-width: auto;
        padding: 15px 10px;
    }
    
    .tab-school-logo {
        width: 40px;
        height: 40px;
    }
    
    .tab-school-logo i {
        font-size: 18px;
    }
    
    .school-tab-name {
        font-size: 12px;
    }
    
    .stat-box {
        padding: 20px 10px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
    }
    
    .stat-icon i {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .school-tabs-nav .nav-tabs .nav-item {
        flex: 1 0 100%;
    }
    
    .course-item {
        padding: 15px;
    }
    
    .facility-item {
        padding: 20px 15px;
    }
}

/* Ensure tab panes are properly hidden/shown */
.tab-pane {
    display: none;
}

.tab-pane.show {
    display: block;
}

.tab-pane.active {
    display: block;
}

/* School Tabs Active State */
.school-tabs-nav .nav-tabs .nav-link.active {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%) !important;
    color: #fff !important;
    border-color: #e74c3c !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

/* Tab content animation */
.tab-pane.fade {
    transition: opacity 0.15s linear;
}

.tab-pane.fade.show {
    opacity: 1;
}

.tab-pane.fade:not(.show) {
    opacity: 0;
}

/*destination-folder-css-code*/

 .country-overview {
        padding: 80px 0;
    }
    .quick-facts {
        background: #f9f9ff;
        padding: 30px;
        border-radius: 5px;
    }


    /*hero-css-part-destination-page*/
    /* Hero Section Styles */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white-bg) 0%, var(--light-bg) 100%);
    position: relative;
    overflow: hidden;
}

/* .hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(252, 158, 14, 0.1) 100%);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
} */

.hero-content {
    position: relative;
    z-index: 2;
}

/* Country Header */
.country-header {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 30px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(25, 23, 26, 0.1);
    /* max-width: 400px; */
    /* width: auto; */
    width: max-content;
    min-width: 100px;
    /* background: var(--tertiary-color); */
    background: rgba(var(--secondary-color-rgb), 0.1);
    margin-top: -20px;
}

.country-flag {
    width: 30px;
    /* height: 60px; */
    border-radius: 50%;
    overflow: hidden;
    /* border: 3px solid var(--primary-color); */
    /* box-shadow: 0 8px 25px rgba(252, 158, 14, 0.2); */
}

.flag-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.country-name {
    font-size: 18px;
    /* font-weight: 600; */
    color: var(--secondary-color);
    /* background: var(--white-bg); */
    padding: 10px 10px;
    /* text-transform: uppercase;
    letter-spacing: 1px; */
}

/* Hero Title */
.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--primary-color);
}

/* Hero Description */
.hero-description {
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 30px;
}

/* CTA Button */
.hero-cta {
    margin-bottom: 40px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e58e08 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(252, 158, 14, 0.3);
    transition: all 0.3s ease;
    border: none;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(252, 158, 14, 0.4);
    color: white;
}

.cta-btn i {
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(5px);
}

/* Hero Stats */
.hero-stats {
    border-top: 2px solid rgba(25, 23, 26, 0.1);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2a272d 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(25, 23, 26, 0.2);
}

.stat-icon i {
    color: white;
    font-size: 24px;
}

.stat-content h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-content p {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 0;
    font-weight: 500;
}

/* Image Grid */
.hero-image-grid {
    position: relative;
    z-index: 2;
}

.image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 1/1;
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.image-card.main-image {
    aspect-ratio: 1/1.2;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-card:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(252, 158, 14, 0.9) 0%, rgba(229, 142, 8, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: all 0.3s ease;
}

.image-card.main-image .image-overlay {
    opacity: 1;
}

.image-card:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.overlay-content i {
    font-size: 20px;
}

.overlay-content span {
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .country-header {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-stats .row {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 32px;
        text-align: center;
    }
    
    .hero-description {
        text-align: center;
    }
    
    .hero-cta {
        text-align: center;
    }
    
    .stat-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 10px;
    }
    
    .image-card {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }
    
    .country-flag {
        width: 50px;
        height: 50px;
    }
    
    .country-name {
        font-size: 16px;
        padding: 8px 16px;
    }
    
    .cta-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
    }
    
    .stat-icon i {
        font-size: 20px;
    }
    
    .stat-content h4 {
        font-size: 20px;
    }
}

/* Justified Gallery Section - Equal Height, Variable Width */
.justified-gallery-section {
    background: var(--light-bg);
    padding: 100px 0;
}

.container-fluid.px-0 {
    padding-left: 0;
    padding-right: 0;
}

/* Justified Grid - Equal Height, Variable Width */
.justified-grid-equal-height {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 0;
    width: 100%;
}

.justified-item-equal {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    border-right: 1px solid rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    height: 350px; /* Fixed equal height for all images */
    flex: 1 1 300px; /* Flexible width with minimum 300px */
}

/* Remove right border from items that don't have a neighbor */
.justified-item-equal:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.8);
}

/* Remove borders from last row */
.justified-item-equal:nth-last-child(-n+4) {
    border-bottom: none;
}

/* Make some items wider for visual interest */
.justified-item-equal:nth-child(5n+1) {
    flex: 2 1 400px; /* Wider item */
}

.justified-item-equal:nth-child(5n+3) {
    flex: 1.5 1 350px; /* Medium width */
}

.justified-item-equal:nth-child(5n+5) {
    flex: 2.5 1 500px; /* Extra wide item */
}

.justified-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.justified-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(0.95);
}

.justified-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(252, 158, 14, 0.85) 0%, rgba(229, 142, 8, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.justified-item-equal:hover .justified-overlay {
    opacity: 1;
}

.justified-item-equal:hover img {
    transform: scale(1.1);
    filter: brightness(1);
}

.justified-item-equal:hover {
    transform: translateY(-5px);
    z-index: 10;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(30px);
    transition: all 0.4s ease;
}

.justified-item-equal:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 36px;
    margin-bottom: 12px;
    display: block;
}

.overlay-content span {
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Alternative: CSS Grid with equal height */
.justified-grid-equal-height.grid-version {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 350px;
    gap: 0;
}

.justified-grid-equal-height.grid-version .justified-item-equal {
    height: auto;
    flex: none;
}

/* Make some grid items span multiple columns */
.justified-grid-equal-height.grid-version .justified-item-equal:nth-child(5n+1) {
    grid-column: span 2;
}

.justified-grid-equal-height.grid-version .justified-item-equal:nth-child(5n+5) {
    grid-column: span 2;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .justified-item-equal {
        height: 300px;
        flex: 1 1 250px;
    }
    
    .justified-item-equal:nth-child(5n+1) {
        flex: 2 1 350px;
    }
    
    .justified-item-equal:nth-child(5n+3) {
        flex: 1.5 1 300px;
    }
    
    .justified-item-equal:nth-child(5n+5) {
        flex: 2 1 400px;
    }
}

@media (max-width: 991px) {
    .justified-gallery-section {
        padding: 80px 0;
    }
    
    .justified-item-equal {
        height: 280px;
        flex: 1 1 200px;
    }
    
    .justified-item-equal:nth-child(5n+1) {
        flex: 2 1 300px;
    }
    
    .justified-item-equal:nth-child(5n+3) {
        flex: 1.5 1 250px;
    }
    
    .justified-item-equal:nth-child(5n+5) {
        flex: 1.5 1 350px;
    }
    
    .overlay-content i {
        font-size: 32px;
    }
    
    .overlay-content span {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .justified-gallery-section {
        padding: 60px 0;
    }
    
    .justified-item-equal {
        height: 250px;
        flex: 1 1 150px;
        border-right: 1px solid rgba(255, 255, 255, 0.8);
        border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    }
    
    .justified-item-equal:nth-child(5n+1),
    .justified-item-equal:nth-child(5n+3),
    .justified-item-equal:nth-child(5n+5) {
        flex: 1 1 150px; /* Reset special widths on mobile */
    }
    
    /* Remove right border on mobile for better layout */
    .justified-item-equal:nth-child(2n) {
        border-right: none;
    }
    
    .overlay-content i {
        font-size: 28px;
    }
    
    .overlay-content span {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .justified-gallery-section {
        padding: 50px 0;
    }
    
    .justified-item-equal {
        height: 200px;
        flex: 1 1 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    }
    
    .justified-item-equal:last-child {
        border-bottom: none;
    }
    
    .overlay-content i {
        font-size: 24px;
    }
    
    .overlay-content span {
        font-size: 12px;
        letter-spacing: 1px;
    }
}


/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.lightbox.show {
    display: block;
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Prevent body scroll when lightbox is open */
body.lightbox-open {
    overflow: hidden;
}


/* courses.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.courses-container {
    max-width: 1200px;
    width: 90%;
    overflow: hidden;
    margin: 40px auto;
}

.courses-header {
    color: white;
    padding: 30px 40px;
    text-align: center;
}

.courses-header h1 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1px;
}

.courses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.course-card {
    display: flex;
    padding: 25px;
    border-bottom: 1px solid #eaeaea;
    border-right: 1px solid #eaeaea;
    transition: all 0.3s ease;
}

.course-card:nth-child(odd) {
    border-right: 1px solid #eaeaea;
}

.course-card:nth-child(even) {
    border-right: none;
}

.course-card:nth-child(3), .course-card:nth-child(4) {
    border-bottom: none;
}

.course-card:hover {
    background-color: #f8fafc;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.course-logo {
    /* width: 80px;
    height: 80px; */
    /* background: #1a3a5f; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    flex-shrink: 0;
}

.course-logo i {
    font-size: 35px;
    color: white;
}

.course-content {
    flex: 1;
}

.course-title {
    font-size: 24px;
    font-weight: 700;
    /* color: #1a3a5f; */
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.course-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #3498db;
    margin-bottom: 15px;
}

.course-description {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .courses-container {
        width: 95%;
        margin: 20px auto;
    }
    
    .courses-header {
        padding: 25px 30px;
    }
    
    .courses-header h1 {
        font-size: 28px;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .course-card {
        padding: 30px;
    }
    
    .course-card:nth-child(odd), .course-card:nth-child(even) {
        border-right: none;
    }
    
    .course-card:nth-child(3) {
        border-bottom: 1px solid #eaeaea;
    }
    
    .course-logo {
        width: 70px;
        height: 70px;
        margin-right: 20px;
    }
    
    .course-logo i {
        font-size: 30px;
    }
    
    .course-title {
        font-size: 20px;
    }
    
    .course-subtitle {
        font-size: 16px;
    }
    
    .course-description {
        font-size: 15px;
    }
}



/* Advantages Section */
.advantages-section {
    background: var(--white-bg);
    padding: 100px 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.advantage-card {
    background: var(--white-bg);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(25, 23, 26, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e58e08 100%);
    transform: scaleX(0);
    transition: all 0.3s ease;
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e58e08 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(252, 158, 14, 0.3);
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1);
}

.advantage-icon i {
    color: var(--white-bg);
    font-size: 28px;
}

.advantage-content {
    text-align: center;
}

.advantage-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Responsive Design for Advantages */
@media (max-width: 1200px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 991px) {
    .advantages-section {
        padding: 80px 0;
    }
    
    .advantage-card {
        padding: 30px 25px;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .advantage-icon i {
        font-size: 24px;
    }
    
    .advantage-title {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .advantages-section {
        padding: 60px 0;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .advantage-card {
        padding: 25px 20px;
    }
    
    .advantage-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .advantage-icon i {
        font-size: 20px;
    }
    
    .advantage-title {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .advantages-section {
        padding: 50px 0;
    }
    
    .advantages-grid {
        margin-top: 30px;
    }
    
    .advantage-card {
        padding: 20px 15px;
    }
}

