/* About Section Styles */
.about-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
}

.feature i {
    color: #004296;
    font-size: 20px;
    margin-right: 10px;
}

.video-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-container img {
    width: 100%;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button i {
    color: #004296;
    font-size: 24px;
    margin-left: 5px;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Certificates Section */
.certificates-section {
    padding: 60px 0;
    background: white;
}

.certificates-slider {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}

.certificates-track {
    display: flex;
    transition: transform 0.5s ease;
    padding: 20px 0;
}

.certificate-item {
    min-width: 300px;
    margin: 0 15px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.certificate-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.certificate-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.certificate-caption {
    padding: 15px;
    background: #004296;
    color: white;
    text-align: center;
    font-weight: bold;
}

.cert-prev, .cert-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 66, 150, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
}

.cert-prev {
    left: 10px;
}

.cert-next {
    right: 10px;
}

.cert-prev:hover, .cert-next:hover {
    background: #004296;
}

/* Products Section */
.products-section {
    padding: 60px 0 120px 0px;
    background-color: #f9f9f9;
	
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    padding: 15px 15px 0;
    color: #004296;
}

.product-card p {
    padding: 0 15px;
    color: #666;
}

.product-card .btn {
    display: block;
    margin: 15px;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        order: 2;
    }
    
    .about-video {
        order: 1;
    }
}

@media (max-width: 768px) {
    .certificate-item {
        min-width: 250px;
    }
}

@media (max-width: 576px) {
    .certificate-item {
        min-width: 200px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}