  /* Custom styles */
  .card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.article-title {
    transition: color 0.3s ease;
}

.swiper-wrapper {
    height: auto;
}

.card-hover:hover .article-title {
    color: #2563eb;
}

.featured-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #f97316;
    color: white;
    padding: 2px 8px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0.25rem;
    z-index: 10;
}

.category-tag {
    display: inline-block;
    background-color: #f97316;
    color: white;
    padding: 1px 6px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 0.25rem;
}

.date-badge {
    color: #ef4444;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Hero Slider Styles */
.hero-slide {
    position: relative;
    height: 550px;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-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: 100px 30px 30px;
    color: white;
}

/* Swiper custom styles */
.heroSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: white;
    opacity: 0.5;
}

.heroSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #2563eb;
}

.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
    color: #2563eb;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.heroSwiper .swiper-button-next:after,
.heroSwiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

/* Section headers with lines */
.section-header {
    display: flex;
    align-items: center;
    margin: 2rem 0;
}

.section-header:before,
.section-header:after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #e5e7eb;
}

.section-header:before {
    margin-right: 1rem;
}

.section-header:after {
    margin-left: 1rem;
}

.section-title {
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    background-color: #f97316;
    padding: 0.3rem 1rem;
    font-size: 0.875rem;
    border-radius: 0.25rem;
}

/* Newsletter form styles */
.newsletter-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    width: 100%;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

/* Featured number badge */
.number-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background-color: #2563eb;
    color: white;
    font-weight: 700;
    border-radius: 0.25rem;
    margin-right: 0.5rem;
}

/* Category hover effects */
.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}

 /* Custom styles */

 .article-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 20px 0 15px;
    color: #1e3a8a;
}

.article-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.25rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.article-content blockquote {
    border-left: 4px solid #2563eb;
    padding-left: 1rem;
    font-style: italic;
    margin: 1.5rem 0;
    color: #4b5563;
}

/* Swiper custom styles */
.article-navigation-swiper {
    width: 100%;
    height: 100%;
    margin-bottom: 2rem;
}

.article-navigation-swiper .swiper-slide {
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: auto;
}

.article-navigation-swiper .swiper-slide:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.article-navigation-swiper .swiper-button-next,
.article-navigation-swiper .swiper-button-prev {
    color: #3B82F6;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.article-navigation-swiper .swiper-button-next:after,
.article-navigation-swiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.article-navigation-swiper .swiper-pagination-bullet-active {
    background: #3B82F6;
}

.article-navigation-swiper {
    padding: 20px;
}

/* Direction indicators */
.prev-indicator,
.next-indicator {
    display: flex;
    align-items: center;
    color: #3B82F6;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Card hover effect */
.article-card {
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.article-card:hover .article-title {
    color: #3B82F6;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 15px;
}

.play-button:hover {
    background: rgba(0, 0, 0, 0.7);
}

.heroSwiper .swiper-button-next:after, .heroSwiper .swiper-button-prev:after {
    display: none;
}

.swiper-button-prev svg, .swiper-button-next svg{
    height: 20px !important;
    width: 20px !important;
}

.blogvideo {
    padding-bottom: 50px;
    /* Add space for pagination */
}

.blogvideo .swiper-pagination {
    bottom: 10px;
    /* Adjust pagination position */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.blogvideo .swiper-pagination-bullet {
    background: #d1d5db;
    /* Gray color for inactive dots */
    opacity: 1;
}

.blogvideo .swiper-pagination-bullet-active {
    background: #ef4444;
    /* Red color for active dot */
}

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

.blogvideo .swiper-slide {
    height: auto !important;
}

.blogvideo h3{
    font-size: 14px;
}

.article-content ul {
    list-style-type: disc;
    padding-left: 30px;
}

.article-content ol {
    list-style-type: decimal;
    padding-left: 30px;
}

.article-content h3 {
        margin: 15px 0 8px;
        font-size: 18px;
        font-weight: 500;
}

.blogvideo .swiper-wrapper {
    height: auto !important;
    padding-bottom: 50px;
}

.article-content  table,.article-content  table td {
    width: 100%;
    border: 1px solid rgb(147, 147, 147);
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-slide {
        height: 400px;
    }

    .hero-overlay h1 {
        font-size: 1.75rem;
    }

    .hero-overlay p {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .hero-slide {
        height: 350px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 30px;
        height: 30px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 14px;
    }
}