.breadcrumb-section-img {
    position: relative;
    width: 100%;
    height: 80vh;
    background-size: cover;
    background-position: center right ;
    border-radius: 10px;
    
}

.bg_overlay {
    background-image: linear-gradient(to right, rgba(3, 32, 62, 0.90), transparent);
    border-radius: 10px;
}

.breadcrumb-section-txt {
    position: relative;
    padding: 30px 10px 30px 30px;
}

.breadcrumb-section-txt h1 {
    color: #fff;
    font-size: 55px;
    font-weight: 700;
}

.breadcrumb-section-txt h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 500;
}

.breadcrumb-section-txt p {
    color: #fff;
    font-size: 16px;
}

.blog-title {
    color: black;
    font-size: 38px;
    font-weight: 600;
}

.blog-meta {
    color: rgb(127, 127, 127);
}

.blog-content .toc {
    position: sticky;
    top: 50px;
}

.blog-content .toc .toc-list {
    list-style-type: none;
    padding-left: 0;
}


.blog-content .toc .toc-list a:hover{
    color:#F26522;

}

.blog-content .toc .toc-list li {
    border-left: 3px solid rgb(158, 158, 158);
    padding: 10px 0;
    font-size: 16px;
    cursor: pointer;
    padding-left: 15px;
    transition: all 0.3s ease;
}

.blog-content .toc .toc-list li:hover {
    color: #F26522;
    border-left: 3px solid #F26522;
}

.blog-content .toc .toc-list li a {
    color: black;
    font-size: 16px;
    text-decoration: none;
}

.blog-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 14px;
}

.blog-content h3 {
    font-size: 24px;
    margin-top: 30px;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.icon {
    width: 30px;
    height: 30px;
    display: inline-block;
    background-size: contain;
    background-position: center;
    transition: all 0.3s ease;
}

.icon:hover {
    opacity: 0.8;
}

.instagram {
    background-image: url('https://cdn-icons-png.flaticon.com/512/2111/2111463.png');
}

.facebook {
    background-image: url('https://cdn-icons-png.flaticon.com/512/733/733547.png');
}

.linkedin {
    background-image: url('https://cdn-icons-png.flaticon.com/512/174/174857.png');
}

.x-twitter {
    background-image: url('https://cdn-icons-png.flaticon.com/512/5968/5968958.png');
}

h2 + h3 {
    margin-top: 20px;
}

.custom-bullets {
    list-style: none;
    padding-left: 1.5em;
}

.custom-bullets li {
    position: relative;
    margin-bottom: 0.5em;
    font-size: 18px;
}

.custom-bullets li::before {
    content: '•';
    position: absolute;
    left: -20px;
    color: #f26522;
    font-size: 20px;
    line-height: 1;
}



/* @media (max-width: 768px) {
    .breadcrumb-section-img {
        height: 60vh;
    }

    .breadcrumb-section-txt h1 {
        font-size: 40px;
    }

    .breadcrumb-section-txt h2 {
        font-size: 24px;
    }

    .breadcrumb-section-txt p {
        font-size: 14px;
    }

    .blog-title {
        font-size: 30px;
    }

    .blog-content h2 {
        font-size: 28px;
    }

    .blog-content h3 {
        font-size: 20px;
    }

    .custom-bullets li::before {
        font-size: 18px;
    }

    .icon {
        width: 25px;
        height: 25px;
    }
} */

.comparison-table th,
.comparison-table td {
  vertical-align: middle;
}

.blog-content table{
    font-size: 18px;
    margin-top: 30px;
    
    
}

.blog-content table td{
    padding: 14px;
}

.blog-content table th{
    background-color: #FEF1EA;
    padding: 14px;

}


.blog-content a{
    color: #F26522;
    text-decoration: none;
}
.faq-header {
        background: linear-gradient(135deg, #f26522, #f58a4f);
        color: white;
        border-radius: 10px;
        padding: 2rem;
        margin-bottom: 2rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      }

      .faq-item {
        margin-bottom: 1rem;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        border: 1px solid #e9ecef;
      }

      .faq-item:hover {
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-2px);
        border-color: #f26522;
      }

      .faq-question {
        background-color: white;
        padding: 1.5rem;
        cursor: pointer;
        font-weight: 600;
        color: #f26522;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .faq-question:hover {
        background-color: rgba(242, 101, 34, 0.05);
      }

      .faq-question h3 {
        margin: 0;
        font-size: 1.25rem;
        color:black;
        font-weight: 600;
        flex-grow: 1;
      }

      .faq-answer {
        background-color: #f5f9ff;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
      }

      .faq-answer.show {
        padding: 1.5rem;
        max-height: 500px;
      }

      .faq-icon {
        transition: transform 0.3s ease;
        color: #f26522;
        margin-left: 1rem;
      }

      .faq-icon.rotate {
        transform: rotate(180deg);
      }

      .highlight {
        color: #f26522;
        font-weight: bold;
      }

      .btn-primary {
        background-color: #f26522;
        border-color: #f26522;
      }

      .btn-primary:hover {
        background-color: #d4530e;
        border-color: #d4530e;
      }

      a {
        color: #f26522;
      }

      a:hover {
        color: #d4530e;
      }


@media(max-width:430px){
    .blog-title{
        font-size: 30px;
    }
    .breadcrumb-section{
        padding: 0px 10px;
    }
    .breadcrumb-section-img{
        height: 30vh;
    }
    .blog-content h3{
        font-size: 20px;
    }
    .blog-content h2{
        font-size: 24px;
    }

}


