/* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
           
        }
        
        body {
            margin: 0;
            padding: 0;
            font-family: 'Roboto', sans-serif;
            color: #333;
        }
        

        /* Banner Section */
        .banner {
	position: relative;
	margin: 0;
	padding: 80px 0;
	background: url('/plugins/fangan/banner1.jpg') no-repeat center center;
	background-size: cover;
	color: white;
	overflow: hidden;
}
        
        .banner-content {
            position: relative;
            z-index: 2;
            max-width: 1520px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .banner-tag {
            display: inline-flex;
            align-items: center;
            background: white;
            color: #333;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 400;
            margin-bottom: 20px;
            gap: 8px;
        }
        
        .banner-tag .tag-label {
            background: #28a745;
            color: white;
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
        }
        
        .banner-title {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 20px;
	color: #000;
}
        
        .banner-title span {
	color: #B90000;
}
        
        .banner-description {
            font-size: 16px;
            max-width: 600px;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .banner-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        .fangan-btn-primary {
            display: inline-block;
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #000000;
    border-radius: 25px;
    padding: 10px 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    width: fit-content;
    transition: all 0.3s ease;
        }
        .fangan-btn-primary:hover {
            display: inline-block;
    background-color: #000;
    color: #ffffff;
    border: 1px solid #000000;
    border-radius: 25px;
    padding: 10px 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    width: fit-content;
    transition: all 0.3s ease;
        }

        @media (max-width: 990px) {
            .banner-buttons {
                justify-content: center;
                padding-top:20px;
            }
            
            .banner-title {
                text-align: center;
                font-size: 36px;
            }
            
            .banner-description {
                text-align: center;
                margin-left: auto;
                margin-right: auto;
            }
            
            .banner-tag {
                margin-left: auto;
                margin-right: auto;
            }
            .banner {
            position: relative;
            margin: 0;
            padding: 60px 0;
            background: url('fangan/03.jpg') no-repeat center center;
            background-size: cover;
            color: white;
            overflow: hidden;
        }
        }
        
        .btn {
            display: inline-block;
            padding: 12px 24px;
            border-radius: 4px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .btn-primary {
            background: #007bff;
            color: white;
            border: 2px solid #007bff;
        }
        
        .btn-primary:hover {
            background: transparent;
            color: white;
        }
        
        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-secondary:hover {
            background: white;
            color: #333;
        }
        
        .btn-secondary i {
            font-size: 16px;
        }
        
        /* Client Logos */
        .client-logos {
            background: #f5f5f5;
            padding: 40px 0;
            /* border-bottom: 1px solid #eee; */
        }
        
        .client-logos-container {
	max-width: 1520px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}
        
        .client-card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow1: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .client-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
        }
        
        .client-card h3 {
            font-size: 20px;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
        }
        
        .client-card p {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
        }
        
              
        /* Solutions Area */
        .solutions-area {
            background-color: #fff;
            overflow-x: hidden;
            position: relative;
        }
        
        .solutions-area .section-title .sub-title {
            color: #00aaff;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
            display: block;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .solutions-area .section-title h2 {
            font-size: 36px;
            font-weight: 700;
            color: #333333;
            margin-bottom: 20px;
        }
        
        .solutions-categories {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-top: 30px;
        }
        
        .category-item {
            font-size: 18px;
            font-weight: 500;
            color: #666666;
            cursor: pointer;
            padding-bottom: 8px;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
        }
        
        .category-item:hover,
        .category-item.active {
            color: #333333;
            border-bottom-color: #333333;
        }
        
        .solutions-content {
            position: relative;
        }
        
        .solutions-category-content {
            display: none;
        }
        
        .solutions-category-content.active {
            display: block;
        }
        
        .solution-card {
            margin-bottom: 30px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            min-width: 300px;
            flex-shrink: 0;
        }
        

        
.solution-image {
    position: relative;
    height: 400px;
    width:611px;
    overflow: hidden;
}
        
        .solution-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .solution-card:hover .solution-image img {
            transform: scale(1.1);
        }
        
        .solution-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
            padding: 40px 30px 30px;
            transition: all 0.3s ease;
        }
        
        .solution-card:hover .solution-overlay {
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
        }
        
        .solution-icon {
            width: 60px;
            height: 60px;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .solution-card:hover .solution-icon {
            background-color: #00aaff;
            transform: scale(1.1);
        }
        
        .solution-icon i {
            font-size: 24px;
            color: #ffffff;
        }
        
        .solution-content h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #ffffff;
        }
        
        .solution-content p {
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
            opacity: 0.9;
            color: #ffffff;
        }
        
        .solution-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background-color: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 25px;
            color: #ffffff;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .solution-btn:hover {
            background-color: #00aaff;
            color: #ffffff;
            border-color: #00aaff;
            transform: translateX(5px);
            text-decoration: none;
        }
        
        .solutions-slider-container {
            position: relative;
            overflow: hidden;
            margin: 0 -15px;
            padding: 0 15px;
        }
        
        .solutions-slider {
            display: flex;
            gap: 30px;
            transition: transform 0.5s ease;
            padding: 0 15px;
        }
        
        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.9);
            border: 1px solid #e0e0e0;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #333333;
            transition: all 0.3s ease;
            z-index: 10;
        }
        
        .slider-btn:hover {
            background-color: #333333;
            color: #ffffff;
            border-color: #333333;
        }
        
        .slider-btn-left {
            left: 20px;
        }
        
        .slider-btn-right {
            right: 20px;
        }
        
        /* Responsive for Solutions Area */
        @media only screen and (max-width: 991px) {
            .solution-image {
                height: 350px;
            }
            
            .solution-content {
                padding: 30px 20px 20px;
            }
            
            .solution-content h3 {
                font-size: 18px;
            }
            
            .solutions-area .section-title h2 {
                font-size: 30px;
            }
        }
        
        @media only screen and (max-width: 767px) {
            .solution-card {
                margin-bottom: 20px;
            }
            
            .solution-image {
                height: 300px;
            }
            
            .solution-content {
                padding: 25px 15px 15px;
            }
            
            .solution-content h3 {
                font-size: 16px;
            }
            
            .solutions-area .section-title h2 {
                font-size: 24px;
            }
        }
        
        .default-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 25px;
            background: #000000;
            color: #ffffff;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .default-btn:hover {
            background: #111827;
            transform: translateY(-2px);
        }
        
        .mt-60 {
            margin-top: 60px;
        }
        
        .text-center {
            text-align: center;
        }
        
        .fangan-icon {
            background-color: #c01a1a;
            color: #fff;
            font-size: 32px;
            width: 64px;
            height: 64px;
            line-height: 64px;
            text-align: center;
            border-radius: 15%;
            margin-bottom: 25px;
        }
        
        @media only screen and (max-width: 992px) {
            .fangan-icon {
                font-size: 24px;
                width: 42px;
                height: 42px;
                line-height: 42px;
                margin-bottom: 15px;
            }
        }
        
        /* Grades Section */
        .grades-section {
            background: #f5f5f5;
            padding: 50px 0;
        }
        
        .grades-container {
            max-width: 1520px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .grades-section .help-card {
            background-color: #fff;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .grades-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .grade-card {
	height: 320px;
	border-radius: 12px;
	padding: 40px 30px;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}
        
        .grade-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .grade-card:nth-child(1) {
            background: #F7FAFF;
        }
        
        .grade-card:nth-child(2) {
            background: #FCFAFE;
        }
        
        .grade-card:nth-child(3) {
            background: #FFFAF4;
        }
        
        .grade-card:nth-child(4) {
            background: #F3FBFE;
        }
        
        .grade-level {
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 15px;
            opacity: 0.8;
        }
        
        
                }

        .grade-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #333;
        }
        
        .grade-lessons {
            font-size: 16px;
            margin-bottom: 30px;
            color: #666;
        }
        
        .grade-image {
            margin-top: 20px;
            text-align: center;
        }
        
        .grade-image img {
            max-width: 100%;
            height: auto;
            opacity: 0.7;
        }
        
        
        
        /* Responsive */
        @media only screen and (max-width: 768px) {
            .grades-section {
                padding: 60px 0;
            }
            
            .grades-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .grade-card {
                padding: 30px 20px;
            }
            
            .grade-title {
                font-size: 20px;
            }
        }
        
        @media only screen and (max-width: 480px) {
            .grades-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* Events Section */
        .events-section {
	background: white;
	padding: 70px 0 100px 0;
}
        
        .events-container {
            max-width: 1520px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .events-title {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .events-title h2 {
            font-size: 36px;
            font-weight: 700;
            color: #333;
            position: relative;
            display: inline-block;
        }
        
        .events-title h2 span {
            color: #ff6b35;
        }
        
        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .event-card {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            background: white;
        }
        
        .event-card:hover {

            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }
        
        .event-image {
            position: relative;
            height: 260px;
            overflow: hidden;
        }
        
        .event-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .event-card:hover .event-image img {
            transform: scale(1.05);
        }
        
        .event-date {
            position: absolute;
            bottom: 15px;
            left: 15px;
            background: white;
            padding: 5px 12px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 500;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }
        
        .event-content {
            padding: 25px;
        }
        
        .event-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #333;
        }
        
        .event-location {
            font-size: 14px;
            color: #666;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .event-location i {
            color: #ff6b35;
        }
        
        .event-action {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .event-join-btn {
            display: inline-block;
            padding: 8px 16px;
            background: transparent;
            color: #333;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .event-join-btn:hover {
            background: #333;
            color: white;
            border-color: #333;
        }
        
        /* Hide mobile button on desktop */
        .mobile-btn {
            display: none;
        }
        
        /* OEM Section */
        .oem-section {
            padding: 60px 0;
            background: #f5f5f5;
        }
        
        .oem-container {
            max-width: 1520px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .oem-part {
            margin-bottom: 60px;
        }
        
        .oem-part:last-child {
            margin-bottom: 0;
        }
        
        .oem-title {
            font-size: 28px;
            font-weight: 700;
            color: #000;
            text-align: center;
            margin-bottom: 40px;
        }
        
        .oem-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        
        .oem-cards-two {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .oem-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            transition: all 0.3s ease;
        }
        
        .oem-card:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        }
        
        .oem-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 10px;
        }
        .oem-card h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 10px;
        }
        .oem-card p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
            margin: 0;
        }
        
        .oem-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 8px;
        }
        
        .oem-card h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 10px;
        }
        
        /* Responsive - Events Section */
        @media only screen and (max-width: 1050px) {
            .events-section {
                padding: 60px 0;
            }
            
            .events-title h2 {
                font-size: 28px;
            }
            
            .events-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            /* Mobile: Card layout - content left, image right */
            .event-card {
                display: flex;
                flex-direction: row;
                align-items: center;
                height: auto;
                min-height: 160px;
                padding: 25px;
                border-radius: 16px;
                background: white;
                box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            }
            
            /* Reverse order on mobile: content first, then image */
            .event-image {
                width: 100px;
                height: 80px;
                flex-shrink: 0;
                order: 2;
                margin-left: 15px;
                border-radius: 8px;
                overflow: hidden;
                position: relative;
            }
            
            .event-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
            
            .event-date {
                position: absolute;
                bottom: 6px;
                left: 6px;
                background: white;
                padding: 2px 6px;
                border-radius: 3px;
                font-size: 10px;
                font-weight: 500;
                box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            }
            
            .event-content {
                flex: 1;
                padding: 0;
                display: flex;
                flex-direction: column;
                order: 1;
                min-width: 0;
            }
            
            .event-title {
                font-size: 17px;
                font-weight: 700;
                margin-bottom: 6px;
                color: #333;
                line-height: 1.3;
            }
            
            .event-location {
                font-size: 12px;
                color: #666;
                margin-bottom: 12px;
                line-height: 1.5;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }
            
            .event-location i {
                color: #ff6b35;
                margin-right: 3px;
                flex-shrink: 0;
            }
            
            /* Hide desktop button on mobile */
            .desktop-btn {
                display: none;
            }
            
            /* Show mobile button */
            .mobile-btn {
                display: inline-block;
                padding: 6px 20px;
                background: transparent;
                color: #333;
                border: 1px solid #ddd;
                border-radius: 20px;
                font-size: 13px;
                font-weight: 500;
                text-decoration: none;
                transition: all 0.3s ease;
                align-self: flex-start;
            }
            
            .mobile-btn:hover {
                background: #333;
                color: white;
                border-color: #333;
            }
            
            /* OEM Section Mobile */
            .oem-section {
                padding: 40px 0;
            }
            
            .oem-title {
                font-size: 22px;
                margin-bottom: 25px;
            }
            
            .oem-cards {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .oem-cards-two {
                grid-template-columns: 1fr;
            }
            
            .oem-card {
                padding: 20px;
            }
            
            .oem-number {
                font-size: 28px;
            }
        }
        
        @media only screen and (max-width: 480px) {
            .events-grid {
                grid-template-columns: 1fr;
            }
        }

        .video-hero-area {
            position: relative;
            height: 450px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            width: 100%;
        }
        .video-card-container {
            max-width: 1460px;
            margin: 0 auto;
            border-radius: 15px;
            overflow: hidden;
        }
        .video-hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1s ease;
        }
        .video-hero-area::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
            opacity: 0;
            transition: opacity 1s ease;
        }
        
        .video-hero-area.video-loaded::before {
            opacity: 0;
        }
        .video-hero-content {
            position: relative;
            z-index: 2;
            max-width: 1520px;
            width: 100%;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }
        .video-hero-content h2 {
            font-size: 60px;
            color: #ffffff;
            margin-bottom: 30px;
            font-weight: 700;
            font-family: 'Work Sans', sans-serif;
        }
        .video-hero-btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: transparent;
            color: #ffffff;
            border: 1px solid #ffffff;
            border-radius: 25px;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
             background-color: rgba(255, 255, 255, 1);
            color: #000000;

        }
        .video-hero-btn:hover {
            background-color: rgba(255, 255, 255, 1);
            color: #000000;
        }
        .video-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 9999;
            justify-content: center;
            align-items: center;
        }
        .video-modal.active {
            display: flex;
        }
        .video-modal-content {
            position: relative;
            max-width: 100vw;
            max-height: 100vh;
            background-color: rgba(0, 0, 0, 0.5);
            border-radius: 8px;
            overflow: visible;
        }
        .video-modal-content video {
            max-width: 100vw;
            max-height: 100vh;
            object-fit: contain;
            display: block;
            border-radius: 8px;
            background-color: transparent;
        }
        .video-modal-close {
            position: absolute;
            top: -45px;
            right: 10px;
            padding: 10px 20px;
            background-color: rgba(255, 255, 255, 0.95);
            border: none;
            border-radius: 25px;
            color: #333;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
            z-index: 10001;
        }
        .video-modal-close:hover {
            background-color: #fff;
            transform: scale(1.05);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }

        @media screen and (max-width: 992px) {
            .video-hero-content h2 {
                font-size: 36px;
            }
        }

        @media screen and (max-width: 768px) {
            .video-hero-area {
                height: 250px;
                background-color: #333333;
            }
            .video-hero-video {
                display: block;
                object-fit: cover;
            }
            .video-hero-content h2 {
                font-size: 24px;
                margin-bottom: 15px;
                color: #ffffff;
            }
            .video-hero-btn {
                padding: 8px 20px;
                font-size: 13px;
                background-color: transparent;
                color: #ffffff;
                border: 1px solid #ffffff;
            }
            .video-hero-btn:hover {
                background-color: rgba(255, 255, 255, 0.2);
                color: #ffffff;
            }
        }

        @media screen and (max-width: 480px) {
            .video-hero-area {
                height: 200px;
            }
            .video-hero-content h2 {
                font-size: 18px;
                color: #ffffff;
            }
            .video-hero-btn {
                padding: 6px 16px;
                font-size: 12px;
                color: #ffffff;
                border: 1px solid #ffffff;
            }
            .video-hero-btn:hover {
                color: #ffffff;
            }
        }

        .bgtop {
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            background: #000000;
        }
.courses-section {
	padding: 30px 0 60px 0;
}
        
        .courses-section .container {
            max-width: 1520px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .courses-section .section-title {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .courses-section .section-title h2 {
            font-size: 32px;
            font-weight: 700;
            color: #333;
            margin-bottom: 10px;
        }
        
        .courses-section .section-title h2 span {
            color: #f5a623;
        }
        
        .courses-section .section-title p {
            font-size: 16px;
            color: #666;
        }
        
        .course-category-container {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        
        .course-category-btn {
            padding: 10px 20px;
            border: 2px solid #e0e0e0;
            background: white;
            border-radius: 25px;
            cursor: pointer;
            font-size: 14px;
            color: #666;
            transition: all 0.3s ease;
        }
        
        .course-category-btn.active,
        .course-category-btn:hover {
            background: #333;
            border-color: #333;
            color: white;
        }
        
        .course-content {
            position: relative;
        }
        
        .course-category {
            display: none;
        }
        
        .course-category.active {
            display: block;
        }
        
        .course-item {
            display: flex;
            gap: 30px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
            overflow: hidden;
        }
        
        .course-text {
            flex: 1;
            padding: 40px;
        }
        
        .course-text h3 {
            font-size: 24px;
            font-weight: 700;
            color: #333;
            margin-bottom: 20px;
        }
        
        .course-text p {
            font-size: 14px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 20px;
        }
        
        .course-text h4 {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
        }
        
        .course-text ul {
            list-style: none;
            padding: 0;
        }
        
        .course-text ul li {
            font-size: 14px;
            color: #666;
            padding: 8px 0;
            padding-left: 20px;
            position: relative;
        }
        
        .course-text ul li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background: #007bff;
            border-radius: 50%;
        }
        
        .course-image {
            flex: 1;
            min-width: 400px;
        }
        
        .course-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        @media (max-width: 992px) {
            .course-item {
                flex-direction: column;
            }
            
            .course-image {
                min-width: 100%;
                height: 250px;
            }
            
            .course-text {
                padding: 30px;
            }
        }
    .font14 {
	font-size: 14px;
}
    .img-bgall {
	background-image: url('img/bgall.jpg');
	background-position: center bottom;
	 background-size: cover;
}
    .newStyle1 {
}

.nav-menu {
    background-color: #ffffff;
    padding: 0;
    border-bottom: 1px solid #eeeeee;
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-menu-container {
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 20px;
}
.nav-menu-items {
    display: flex;
    justify-content: center;
    gap: 50px;
}
.nav-menu-item {
    padding: 20px 0;
    color: #666666;
    font-size: 16px;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}
.nav-menu-item:hover {
    color: #333333;
}
.nav-menu-item.active {
    color: #333333;
    font-weight: 600;
}
.nav-menu-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #333333;
}
@media screen and (max-width: 768px) {
    .nav-menu-items {
        gap: 20px;
    }
    .nav-menu-item {
        font-size: 14px;
        padding: 15px 0;
    }
}
