/* Hero Section */
.hero-section {
    position: relative;

    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
    transition: transform 0.5s ease;
}

.hero-section:hover .hero-image {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #082a42 0, rgba(1, 13, 20, 0) 100%);
}

/* Content Wrap */
.content-wrap {
    margin-left: auto;
    margin-right: auto;
    max-width: 1009px;
    padding-left: 20px;
    padding-right: 20px;
}

.content-wrap .content-inner {
    border-left: 3px solid #da291c;
    padding-left: 36px;
    overflow: auto;
    bottom: 0;
}

.content-inner h1 {
    font-size: 50px;
    line-height: 52px;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: #fff;
    font-weight: 400;
    margin-bottom: 30px;
}

/* Main Heading and Description */
.main-heading {
    font-size: 32px;
    font-weight: 600;
    margin-top: 20px;
    color: #000;
    font-family: 'Bebas Neue', sans-serif;
}

.main-description {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
}

/* Main Blog */
.main-blog {
    display: flex;
    align-items: center;
    max-width: 1009px;
    margin: 30px auto;
    background-color: #fff;
    border-radius: 0 40px;
    overflow: hidden;

    transition: transform 0.3s ease;
}

.main-blog:hover {
    transform: translateY(-5px);
}

.main-blog-image {
    flex-basis: 50%;
    height: 400px;
    width: 400px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;

}

.main-blog-content {
    flex-basis: 50%;
    padding: 30px;
}

.main-blog .blog-title {
    font-size: 40px !important;
    line-height: 44px !important;
    font-family: 'Bebas Neue', sans-serif;
    color: #000;
    margin: 0 0 15px;
    text-transform: uppercase;
    font-weight: 400;
}

/* Additional Blog Cards */
.blog-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
    max-width: 1009px;
    margin-left: auto;
    margin-right: auto;
}

.blog-card {

    overflow: hidden;

    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card-image {
    width: 100%;
    height: 226px; /* As specified */
    background-size: cover; /* As specified */
    background-position: center center; /* As specified */
    background-repeat: no-repeat; /* As specified */
    border-radius: 0 40px; /* As specified */
}

.blog-card-content {
    padding: 15px;
    background-color: #fff;
}

.blog-card .blog-title {
    font-size: 24px; /* As specified */
    line-height: 30px; /* As specified */
    letter-spacing: -.01em; /* As specified */
    margin-bottom: 15px; /* As specified */
    font-family: 'Bebas Neue', sans-serif;
    color: #000;
    font-weight: 400;
}

.blog-description {
    font-size: 16px;
    color: #666;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
    line-height: 1.5;
}

.blog-description li {
    font-size: 16px;
    color: #666;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
    line-height: 1.5;
}


.continue-reading {
    display: inline-block;
    color: #b30c00; /* As specified */
    font-weight: 600; /* As specified */
    text-decoration: none;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    transition: text-decoration 0.3s ease;
}

.continue-reading:hover {
    text-decoration: underline;
    color: #E10707;
    /* As specified */
}

/* Search Container */
.search-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    max-width: 1009px;
    margin: 0 auto;
}

.filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
    width: 100%;
}

.filter-list h3 {
    width: 100%;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
    font-family: 'Bebas Neue', sans-serif;
}

.filter-item {
    flex: 0 0 auto;
}

.filter-item a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.filter-item a:hover {
    background-color: #E10707;
    color: #fff !important;
}

.search-bar {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin-top: 20px;
}

.search-input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: #007bff;
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 18px;
}
.section-padding-70{
    padding-top: 40px;
}

.subscription-section {
    background-color: #004B70; /* Professional blue */
    width: 100%;
    padding: 50px 0;
}



.subscription-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.subscription-text {
    flex: 1;
}

.subscription-title {
    font-size: 32px;
    line-height: 36px;
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    margin-bottom: 15px;
    font-weight: 400;

}

.subscription-description {
    font-size: 16px;
    color: #ffffff; /* Light color for contrast on blue */
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
}

.subscription-form {
    flex: 1;
    max-width: 400px;
}

.newsletter input[type="email"] {
    border: none;
    padding: 10px;
    width: 100%;
    font-size: 16px;
    margin-bottom: 10px;
    background-color: #fff;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    outline: none;

}

.newsletter input[type="email"]::placeholder {
    color: #999;
}

.newsletter input[type="email"]:focus {
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.text-disclaimer {
    font-size: 10px;
    margin-top: 10px;
    color: #d9e0ff;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
    line-height: 1.4;
}

.privacy-policy-link {
    color: #fff;
    text-decoration: underline;
}

.privacy-policy-link:hover {
    color: #E10707;
}

.sign-up-button {
    display: inline-block;
    padding: 12px 35px;
    background-color: #E10707;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.sign-up-button:hover {
    background-color: #c10606;
    transform: scale(1.05);
}
.carousel-section {
    padding: 40px 0;
    background-color: #f8f8f8;
}

.carousel-title {
    font-size: 32px;
    line-height: 36px;
    color: #000;
    font-family: 'Bebas Neue', sans-serif;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 400;
    text-align: center;
}

.carousel-card {
    background-color: #fff;
    border: 2px solid #E10707;
    border-radius: 0 20px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.item {
    box-shadow: none;

}

.carousel-card-title {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -.01em;
    margin-bottom: 10px;
    font-family: 'Bebas Neue', sans-serif;
    color: #000;
    font-weight: 400;
}

.carousel-card-description {
    font-size: 14px;
    color: #666;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
    line-height: 1.5;
}

.carousel-read-more {
    display: inline-block;
    color: #b30c00;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: text-decoration 0.3s ease;
}

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

.owl-nav .nav-btn {
    background-color: #E10707;
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.owl-nav .nav-btn:hover {
    background-color: #c10606;
}

.owl-nav .prev-slide,
.owl-nav .next-slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.owl-nav .prev-slide {
    left: -50px;
}

.owl-nav .next-slide {
    right: -50px;
}
.recent-articles-owl-carousel{
    padding: 10px 0px;
}
.industry-information {
    margin-top: 120px;

    padding: 20px;
    background: #EEEEEE;

}
/* Responsive Design */
@media (max-width: 768px) {
    .main-blog {
        flex-direction: column;
        border-radius: 8px;
    }

    .main-blog-image {
        flex-basis: auto;
        width: 100%;
        height: 250px;
        border-radius: 8px;
    }

    .main-blog-content {
        flex-basis: auto;
        padding: 20px;
    }

    .main-blog .blog-title {
        font-size: 32px !important;
        line-height: 36px !important;
    }

    .blog-card .blog-title {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 12px;
    }

    .blog-description {
        font-size: 14px;
    }

    .continue-reading {
        font-size: 14px;
    }

    .filter-list {
        gap: 10px;
    }

    .filter-item a {
        padding: 8px 15px;
        font-size: 14px;
    }

    .search-input {
        padding: 10px 35px 10px 12px;
        font-size: 14px;
    }
    .owl-nav .prev-slide {
        left: -30px;
    }

    .owl-nav .next-slide {
        right: -30px;
    }
    .content-inner h1 {
    font-size: 30px;
    line-height: 36px;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: #fff;
    font-weight: 400;
    margin-bottom: 30px;
}
    .blog-description li{
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .main-blog-image {
        height: 200px;
    }

    .main-blog .blog-title {
        font-size: 28px !important;
        line-height: 32px !important;
    }

    .blog-card-image {
        height: 180px;
    }

    .blog-card .blog-title {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 10px;
    }

    .blog-description {
        font-size: 13px;
    }

    .continue-reading {
        font-size: 13px;
    }

    .filter-list {
        gap: 8px;
    }

    .filter-item a {
        padding: 6px 12px;
        font-size: 13px;
    }

    .search-bar {
        max-width: 100%;
    }
     .subscription-description,
    .text-disclaimer {
        font-size: 13px;
    }

    .sign-up-button {
        padding: 10px 20px;
        font-size: 14px;
    }
     .carousel-title {
        font-size: 24px;
        line-height: 28px;
    }

    .carousel-card-title {
        font-size: 18px;
        line-height: 22px;
    }

    .carousel-card-description {
        font-size: 13px;
    }

    .carousel-read-more {
        font-size: 13px;
    }

    .owl-nav .prev-slide {
        left: -20px;
    }

    .owl-nav .next-slide {
        right: -20px;
    }
}
