.header-section {
    padding: 40px 0;
    text-align: center;
}
/* .header-title {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 15px;
} */
/* .header-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
} */
.social-icons {
    margin-bottom: 25px;
}
.social-icons i {
    font-size: 1.5rem;
    margin: 0 10px;
    color: #0077b5; /* LinkedIn Color */
}
.social-icons i:hover {
    color: #005582;
}
.browse-section {
    text-align: left;
    font-weight: bold;
    /* font-size: 1.2rem; */
    margin: 20px 0 30px;
}
.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}
.blog-card {
    margin-bottom: 30px;
    border: none;
    transition: transform 0.2s ease-in-out;
}
.blog-card:hover {
    transform: scale(1.02);
}
.card-body {
    padding: 15px;
}
/* .card-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
} */
.card-text {
    font-size: 0.9rem;
    color: #555;
}
.no-gap-row {
    margin-right: -15px;
    margin-left: -15px;
}
.no-gap-row > [class^="col-"] {
    padding-right: 15px;
    padding-left: 15px;
}
.subscribe-section {
    background-color: #0d1b2a;
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}
.subscribe-section h5 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.subscribe-section .form-control {
    border-radius: 25px;
    padding: 10px 15px;
}
.subscribe-section .btn {
    border-radius: 25px;
    background-color: #007bff;
    border: none;
}