.blog-detail h1{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: left;
}

.blog-detail h2,h3,h4,h5,h6{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    /* margin-bottom: 15px; */
}

.blog-detail p ,li{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #555;
    margin-bottom: 15px;

}

.blog-detail img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}
ol, ul {
    padding-left: 2rem;
}
.blog-btn {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 30px;
    background: #0078d4;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s ease;
    font-family: Arial, Helvetica, sans-serif;
}

.blog-btn:hover {
    background: #0078d4b7;
}

@media (max-width:767px) {
    .blog-detail-img{
    margin: 0 20px 0 20px;
}
}

.banner-content h1 {
    text-align: left !important;
}

.list-content{
    margin-left: 20px;
}
/* .contailner-detail-page{
        background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../assets/images/banner1.jpg) center center no-repeat;
    background-size: cover;
} */


.page-banner {
    position: relative;
    height: 400px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}


.page-banner .overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 95, 170, 0.6); 
}

.banner-content {
    position: relative;
    z-index: 1;
    width: 85%;
    padding: 20px;
}

.banner-content h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: left;
}

.banner-content p {
    font-size: 16px;
    text-align: left;
}

.banner-content p a {
    color: #fff;
    text-decoration: none;
}

.banner-content p a:hover {
    text-decoration: underline;
}
@media (max-width:767px) {
    .banner-content h1 {
    font-size: 2rem !important;
}
    
}
/* end banner css */


/* comment area css */
.comment-section{
    background-color: #dbdee3;;
}
.wd-comment-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 36px 30px;
    width: 85%;
    margin: 0 auto;

}

/* Left Side */
.wd-comment-tag {
    color: #00a0d2;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.wd-comment-left h2 {
    font-size: 36px;
    margin: 10px 0 20px;
    font-weight: 700;
}

.wd-comment-left p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.wd-comment-contact {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.wd-comment-icon {
    font-size: 28px;
    margin-right: 15px;
}

/* Right Side */
.wd-comment-right form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wd-comment-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.wd-comment-right input,
.wd-comment-right textarea {
    padding: 14px;
    border: 1px solid #ccc;
    background: #e9e9e9;
    font-size: 15px;
    border-radius: 4px;
    outline: none;
}

.wd-comment-right textarea {
    resize: vertical;
}

.wd-comment-right button {
    background: #0078d4;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 14px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

.wd-comment-right button:hover {
    background: #3593db;
}

/* Responsive */
@media (max-width: 992px) {
    .wd-comment-section {
        grid-template-columns: 1fr;
        padding: 36px 0;

    }

    .wd-comment-row {
        grid-template-columns: 1fr;
    }
}

/* comment area css end */

/* faq css */

.wd-faq-section {
    max-width: 85%;
    margin: 60px auto;
    padding: 0 20px;
    font-family: Arial, Helvetica, sans-serif;
}

.wd-faq-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 700;
}

.wd-faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.wd-faq-question {
    width: 100%;
    background: #dbdee3;
    border: none;
    border-radius: 5px;
    padding: 15px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s ease;
}

.wd-faq-question:hover {
    background: #e9e9e9;
}

.wd-faq-icon {
    font-size: 22px;
    transition: 0.3s ease;
}

.wd-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
    background: #ffffff;
}

.wd-faq-answer p {
    padding: 15px;
    font-size: 16px;
}

/* Active State */
.wd-faq-item.active .wd-faq-answer {
    max-height: 200px;
}

.wd-faq-item.active .wd-faq-icon {
    transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 768px) {
    .wd-faq-title {
        font-size: 22px;
    }

    .wd-faq-question {
        font-size: 16px;
    }
}


/* end faq css */