body {
    padding: 0;
    margin: 0;
}

.fedblog-breadcrumb {
    padding: 30px 40px;
}

.fedblog-breadcrumb p {
    margin: 0;
    color: #000;
    font-size: 17px;
    font-weight: bold;
}

.fedblog-breadcrumb p a {
    text-decoration: none;
    color: #000;
}

.blog-img img {
    width: 100%;
}

.row.blog-content {
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
}

.blog-content {
    padding: 0px 40px;
}

.col-md-8.inner-left {
    padding: 0;
    background-color: #f2f2f2;
}

.blog-details {
    padding: 30px;
    background: #f2f2f2;
}

.fed-blog-meta span i {
    color: #e30103;
    font-size: 18px;
}

.fed-blog-meta {
    display: flex;
    gap: 25px;
    padding: 10px 0px;
}

.fed-blog-meta span {
    color: #000;
    font-size: 17px;
    font-weight: 600;
}

.fed-blog-title {
    font-size: 32px;
    font-weight: bold;
    line-height: 45px;
}

.blog-details p {
    font-size: 18px;
    color: #000;
    line-height: 35px;
    margin: 0;
}

.inner-block h2 {
    font-size: 32px;
    font-weight: bold;
    line-height: 45px;
    padding-top: 20px;
}

.fed-blog-list li {
    font-size: 18px;
    line-height: 35px;
}

.inner-right {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding-bottom: 40px;
}

.fed-blog-widget {
    padding: 55px 25px;
    background: #fff;
    box-shadow: 0px 0px 10px 0px #00000029;
}

.fed-blog-widget h3 {
    font-size: 22px;
    font-weight: bold;
    padding-bottom: 10px;
}

.form-control {
    padding: 15px 20px;
    border-radius: 0px;
    border: 1px solid #0000002e;
}

.fed-recent-posts,
.fed-categories {
    padding: 25px;
    background: #fff;
    box-shadow: 0px 0px 10px 0px #00000029;
}

.fed-recent-posts h2 {
    font-size: 22px;
    font-weight: bold;
    padding-bottom: 10px;
}

.other-blogs {
    display: flex;
    gap: 20px;
    align-items: center;
    background: #f2f2f2;
    margin-bottom: 30px;
}

.blog-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.other-blogs img {
    width: 100%;
    max-width: 100px;
    height: 120px;
    object-fit: cover;
}

.blog-info a {
    text-decoration: none;
    color: #000;
    font-size: 17px;
    font-weight: 700;
}

.blog-info i {
    color: #e30103;
}

.fed-categories h2 {
    font-size: 22px;
    font-weight: bold;
    padding-bottom: 10px;
}

.fed-categories ul {
    padding: 0;
}

.fed-categories ul li {
    list-style: none;
    padding-bottom: 15px;
}

.fed-categories i {
    color: #e30103;
}

.fed-categories a {
    color: #000;
    text-decoration: none;
    font-size: 17px;
    line-height: 30px;
}

.other-details {
    margin: 0px 40px;
    padding: 0px 30px 30px 30px;
    background: #f2f2f2;
    box-shadow: 0px 2px 5px 0px #00000036;
}

.other-details h1 {
    font-size: 32px;
    font-weight: bold;
    line-height: 45px;
}

.other-details p {
    font-size: 18px;
    color: #000;
    line-height: 35px;
    margin: 0;
}

.fed-blog-machine-list li {
    font-size: 18px;
    line-height: 35px;
}

.review-box {
    width: 100%;
    padding: 40px;
    box-sizing: border-box;
}

.review-box h2 {
    font-size: 35px;
    margin-bottom: 10px;
    color: #76757c;
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.review-box h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #e30103;
    margin-top: 8px;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.review-box h2:hover::after {
    width: 100%;
}

.review-box p {
    margin-bottom: 20px;
    color: #000;
    font-size: 20px;
}

.review-form .form-group {
    margin-bottom: 20px;
    position: relative;
}

.review-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

.review-form input,
.review-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
    background: #fafafa;
    box-shadow: inset 0 0 0 transparent;
}

.review-form input {
    height: 60px;
}

.review-form input:focus,
.review-form textarea:focus {
    border-color: #007bff;
    background: #fff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
}

.review-form input:hover,
.review-form textarea:hover {
    border-color: #555;
}

/* Floating label effect */
.review-form input:focus + label,
.review-form textarea:focus + label {
    color: #007bff;
}

/* SIDE BY SIDE FIELDS */
.form-row {
    display: flex;
    gap: 20px;
}

.form-row .half-width {
    flex: 1;
}

/* Button Animation */
.btn-submit {
    background-color: #007bff;
    color: #fff;
    padding: 14px 28px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 86, 179, 0.4);
}

/* Button Ripple Effect */
.btn-submit::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
    opacity: 0;
}

.btn-submit:active::after {
    width: 300px;
    height: 300px;
    opacity: 0;
}
