html, body {
    font-size: 16px;
}

body {
    padding-bottom: 0;
    margin:0;
}

/* General Styles */
.wrapper {
    font-family: 'Poppins', sans-serif !important;
    background: #fff8f1;
    color: #5d3311;
    line-height: 1.6;
    scroll-behavior: smooth;
    clear: both;
    width: 100%;
}

    .wrapper .bg-gradient {
        background: linear-gradient(90deg, #f67a44, #ffb347);
        width: 100%;
        z-index: 999;
    }

.foot {
    margin-top: 0;
}

.wrapper .navbar .social-icons .fa {
    font-size: 1.5rem;
    border:1px solid #999;
    background-color:#fff;
    border-radius:5px;
    padding:3px 5px;
}

.wrapper section a{
  /*  color: #e65100;*/
    text-decoration: underline;
}

    .wrapper a:hover {
        text-decoration: underline;
    }

.wrapper h1, .wrapper h2, .wrapper h3, .wrapper h4, .wrapper h5 {
    color: #bf360c;
    font-weight: 700;
}

.wrapper main.container {
    /* Reserved for future use */
}

/* Section Styling */
.wrapper section.section {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(255, 111, 0, 0.15);
    margin-bottom: 40px;
    padding: 30px 30px 40px;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

    .wrapper section.section.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .wrapper section.section ul {
        padding-left: 2.3rem;
    }

    .wrapper section.section h2 {
        margin-bottom: 1rem;
        position: relative;
        padding-left: 40px;
    }

        .wrapper section.section h2::before {
            content: attr(data-num);
            position: absolute;
            left: 0;
            top: 0;
            width: 32px;
            height: 32px;
            background: #ff6f00;
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(255,111,0,0.4);
        }

/* Lists */
.wrapper ul {
    margin-top: 0.5rem;
    padding-left: 1.3rem;
}

    .wrapper ul li {
        margin-bottom: 0.4rem;
    }

    .wrapper ul.breadcrumb {
        margin: 0;
    }

        .wrapper ul.breadcrumb a:hover {
            color: black;
        }
/* Highlight Quote / Callout */
.wrapper .highlight-quote {
    background: #fff8f1;
    border-left: 8px solid #ff6f00;
    color: #bf360c;
    font-size: 1.3rem;
    font-style: italic;
    max-width: 1000px;
    margin: 30px auto;
    padding: 20px 30px;
    box-shadow: 0 8px 25px rgba(255,111,0,0.15);
    user-select: none;
    border-radius: 6px;
}

    .wrapper .highlight-quote blockquote {
        margin: 0;
        border-left: 0;
    }

/* Icon Boxes */
.wrapper .icon-boxes .icon-box {
    background: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 30px 15px;
    border: 1px solid #cccc;
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

    .wrapper .icon-boxes .icon-box:hover {
        box-shadow: 0 12px 30px rgba(255, 111, 0, 0.35);
        transform: translateY(-8px);
    }

    .wrapper .icon-boxes .icon-box h5 {
        color: #e65100;
        font-weight: 700;
        margin-top: 15px;
        margin-bottom: 10px;
    }

    .wrapper .icon-boxes .icon-box p {
        color: #5d3311;
    }

    .wrapper .icon-boxes .icon-box ul {
        text-align: left;
        padding-left: 1.2rem;
        margin-top: 0.5rem;
        margin-bottom: 0;
    }

        .wrapper .icon-boxes .icon-box ul li {
            list-style-type: none;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }

.wrapper .icon-boxes .icon {
    color: #ff6f00;
}

/* Comparison Table */
.wrapper .comparison-table table {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(255, 111, 0, 0.15);
}

.wrapper .comparison-table thead {
    background: #ff6f00 !important;
    color: white !important;
}

.wrapper .comparison-table tbody tr:nth-child(odd) {
    background: #fff3e0;
}

/* Step Progress Bar */
.wrapper .progress-bar-section {
    max-width: 900px;
    margin: 40px auto;
}

.wrapper .progress-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.wrapper .step {
    flex: 1 1 18%;
    text-align: center;
    padding: 15px 10px;
    color: #9e9e9e;
    position: relative;
    min-width: 100px;
}

    .wrapper .step p {
        margin-top: 8px;
        font-weight: 600;
    }

    .wrapper .step .circle {
        width: 44px;
        height: 44px;
        margin: 0 auto;
        background: #ccc;
        border-radius: 50%;
        line-height: 44px;
        color: white;
        font-weight: 700;
        font-size: 1.3rem;
        transition: background 0.3s ease;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .wrapper .step.active {
        color: #ff6f00;
    }

        .wrapper .step.active .circle {
            background: #ff6f00;
            box-shadow: 0 8px 20px rgba(255,111,0,0.4);
        }

    .wrapper .step::after {
        content: '';
        position: absolute;
        top: 22px;
        right: 0;
        width: 100%;
        height: 4px;
        background: #ffcc80;
        z-index: -1;
    }

    .wrapper .step.active::after {
        background: #ff6f00;
    }

/* Infographic Header Image */
.wrapper .img-header-blog {
    width: 100%;
    clear: both;
    margin: auto;
    max-width: 1110px;
    text-align: center;
    padding: 0 15px;
    border-radius: 20px;
    margin-top: 40px;
    border: 1px solid rgba(246,122,68, 0.2);
    display: flex;
    justify-content: space-between;
    background-color: #fff;
}

.header-blog-text {
    text-transform: uppercase;
    font-weight: bold;
    color: black;
    text-align: left;
    padding: 100px 30px 10px 15px;
    font-size: 3.375rem;
    line-height: 3.375rem;
}

.wrapper .header-blog-text span {
    display: block;
    color: #f67a44;
    font-size: 1.75rem;
    line-height: 1.75rem;
}

.wrapper .img-header-blog img {
}

/* Stats Section */
.wrapper .stats-block .stat-item {
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(255, 111, 0, 0.15);
    padding: 30px 20px;
    transition: transform 0.3s ease;
}

    .wrapper .stats-block .stat-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 35px rgba(255,111,0,0.4);
    }

    .wrapper .stats-block .stat-item h2 {
        font-weight: 700;
        color: #e65100;
        margin-bottom: 0.3rem;
        font-size: 2.7rem;
    }

    .wrapper .stats-block .stat-item p {
        color: #5d3311;
        font-weight: 600;
        font-size: 1.1rem;
    }

.reveal-card {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease-out;
}

    .reveal-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

.wrapper section.section.noBefore h2::before {
    content: '';
}

.wrapper .navbar {
    margin-bottom: 0;
}

.wrapper .navbar-brand {
    height: auto;
}

    .wrapper .navbar-brand img {
        object-fit: contain;
        height: 72px;
    }

.wrapper .navbar .fa {
    font-size: 1.125rem;
    /* margin: 0 8px;*/
    color: #333;
}

    .wrapper .navbar .fa:hover {
        /*color: #007bff;*/
    }

.wrapper .navbar li {
    display: flex;
    align-items: center;
}

.navbar-nav .nav-item + .nav-item::before {
    content: "|";
    padding: 0 0.5rem;
    color: #999;
}

#comments {
    display: none;
}

.wrapper .navbar-toggler-icon {
    width: 2em;
    height: 2em;
}

.nav-link {
    transition: color 0.3s, transform 0.3s;
}

    .nav-link:hover {
        color: #007bff; /* Bootstrap primary color, change if needed */
        transform: scale(1.05); /* Slight zoom effect */
    }

    .nav-link i {
        margin-right: 5px; /* Space between icon and text */
        transition: color 0.3s, transform 0.3s;
    }

    .nav-link:hover i {
        color: #0056b3; /* Darker blue on hover */
        transform: rotate(10deg); /* Slight rotation */
    }

.social-icons a {
    color: #333;
    font-size: 1.125rem;
    transition: color 0.3s, transform 0.3s;
}

    .social-icons a:hover {
        color: #007bff; /* Change to a brand color if desired */
        transform: scale(1.2) rotate(5deg);
    }

.WithoutNumberBlock.wrapper section.section h2::before {
    content: "";
    background: none;
    box-shadow: none;
}

.WithoutNumberBlock.wrapper section.section h2 {
    padding-left: 0px;
}
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background-color: orange;
    color: white;
    padding: 10px 12px;
    border-radius: 50%;
    font-size: 20px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transition: background-color 0.3s;
}

    .scroll-to-top:hover {
        background-color: #0056b3;
        color:white;
    }
@media (min-width: 992px) {
    .wrapper .border-lg-top-0 {
        border-top: 0 !important;
    }
}

@media (max-width: 991.98px) {
    .wrapper .icon-boxes .icon-box ul {
        padding-left: 0;
            }
    .wrapper section.section ul.list-group {
    padding-left:0;
    }
    .wrapper .img-header-blog {
        width: 94%;
    }

    .header-blog-text {
        font-size: 2.5rem;
        line-height: 2.5rem;
        padding-top: 30px;
    }

    .wrapper .navbar-collapse {
        display: flex !important;
        align-items: stretch;
        flex-direction: column;
    }

    .wrapper .navbar li {
        display: block;
    }

    .wrapper .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        transform: translateX(-100%);
        width: 300px;
        height: 100% !important;
        background-color: #f8f9fa;
        overflow-y: auto;
        transition: transform 0.3s ease;
        z-index: 1050;
        padding: 1rem;
    }

    .navbar-collapse.show {
        transform: translateX(0);
    }

    ul.navbar-nav {
        margin: 0;
    }

    .navbar-nav .nav-item + .nav-item::before {
        content: '';
        display: none;
    }

    body.nav-open {
        overflow: hidden;
    }

    .mobile-nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1049;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

        .mobile-nav-overlay.active {
            display: block;
            opacity: 1;
        }

    .wrapper p {
        text-align: justify;
    }

    .wrapper .navbar .social-icons .fa {
        font-size: 2.125rem;
    }
}
 