/* About Section Styles */
.about {
    padding: 80px 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);
}

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

/* Counter Section Styles */
.counter-section {
    background: white;
    padding: 60px 0;
}

.counter-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.counter-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
}

.counter-number {
    font-size: 48px;
    font-weight: bold;
    color: #004296;
    margin-bottom: 10px;
}

.counter-text {
    font-size: 16px;
    color: #666;
}

@media (max-width: 768px) {
    .counter-grid {
        flex-direction: column;
    }
    
    .counter-item {
        min-width: 100%;
    }
}


/* Slider Base Style */
.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
   
}

.slides {
    display: flex;
    height: auto;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: auto;
   
}




.btn {
    display: inline-block;
    background-color: white;
    color: #004296;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
}

.slider-controls button {
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: #004296;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
}

@media (max-width: 768px) {
}

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

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #004296;
    font-size: 2.2rem;
}

.products-container {
    position: relative;
}

.product-slider {
    overflow: hidden;
}

.product-list {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
    padding: 10px;
}

.product-item {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    min-width: calc(25% - 15px);
    transition: all 0.3s ease;
}

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

.product-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.product-item h3 {
    color: #004296;
    margin-bottom: 10px;
	text-align: center;
}

.product-item p {
    color: #666;
    margin-bottom: 15px;
}

.product-item .btn {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    text-align: center;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.product-item .btn:hover {
    background-color: #0056b3;
}

.product-prev, .product-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
}

.product-prev {
    left: -20px;
}

.product-next {
    right: -20px;
}

@media (max-width: 992px) {
    .product-item {
        min-width: calc(33.33% - 14px);
    }
}

@media (max-width: 768px) {
    .product-item {
        min-width: calc(50% - 10px);
    }
    
    .product-prev {
        left: 0;
    }
    
    .product-next {
        right: 0;
    }
}

@media (max-width: 576px) {
    .product-item {
        min-width: 100%;
    }
}

/* News Carousel Styles */
.news-carousel {
    padding: 60px 0 100px 0px;
    background-color: #f9f9f9;
	
}

.carousel-container {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 25%;
    padding: 0 15px;
    box-sizing: border-box;
}

.carousel-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.news-content {
    background: white;
    padding: 20px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.news-content h3 {
    margin-top: 0;
    color: #004296;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    color: #004296;
    text-decoration: none;
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}

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

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-btn:hover {
    background: #004296;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background: #004296;
}

@media (max-width: 1024px) {
    .carousel-slide {
        min-width: 33.33%;
    }
}

@media (max-width: 768px) {
    .carousel-slide {
        min-width: 50%;
    }
}

@media (max-width: 480px) {
    .carousel-slide {
        min-width: 100%;
    }
    
    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}



/* Catalog Section Styles */
.catalog {
    padding: 60px 0;
    background-color: white;
}

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

.catalog-item {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

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

.catalog-icon {
    font-size: 40px;
    color: #004296;
    margin-bottom: 20px;
}

.catalog-item h3 {
    margin-bottom: 10px;
    color: #004296;
}

.catalog-item p {
    color: #666;
    margin-bottom: 20px;
}

.btn-outline {
    background: transparent;
    border: 2px solid #004296;
    color: #004296;
}

.btn-outline:hover {
    background: #004296;
    color: white;
}

@media (max-width: 768px) {
    .catalog-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
}
