.swiper-pagination {
    position: relative;
}
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #1B0655;
    width: 15px;
    border-radius: 5px;
}
/*Fonts*/
.font-heading {
    font-family: 'Poppins', sans-serif;
}
.font-description {
    font-family: 'Poppins', sans-serif;
}
.font-title {
    font-family: 'Abhaya_Libre', serif;
}
.font-button {
    font-family: 'Abhaya_Libre', serif;
}
.font-content {
    font-family: 'Poppins', sans-serif;
}
.font-paragraph {
    font-family: 'Abhaya_Libre', serif;
}
.categories .active{
    color: white;
}
.categories .active{
    background-color: #1A3884;
}

.content h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.content h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 18px;
}

.content h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
}

.content h4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 14px;
}

.content h5 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
}

.content h6 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}
.content a {
    color: blue;
    text-decoration: none;
    font-size: 18px;
}
.content a:hover {
    color: red;
    text-decoration: underline;
}
.content a:focus {
    outline: 2px solid orange;
    color: green;
}
.content a:active {
    color: purple;
    text-decoration: none;
}
/* Text formatting */
.content strong, .content b {
    font-weight: bold;
}

.content em, .content i {
    font-style: italic;
}

.content u {
    text-decoration: underline;
}

.content s, .content strike {
    text-decoration: line-through;
}

.content sup {
    vertical-align: super;
    font-size: smaller;
}

.content sub {
    vertical-align: sub;
    font-size: smaller;
}

/* Paragraph and block elements */
.content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.content blockquote {
    margin: 1.5em 10px;
    padding: 10px;
    border-left: 5px solid #ccc;
    background-color: #f9f9f9;
}

.content div {
    margin-bottom: 10px;
}

.content pre {
    font-family: "Courier New", Courier, monospace;
    font-size: 14px;
    padding: 10px;
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    overflow-x: auto;
}

/* Alignment */
.content .align-left {
    text-align: left;
}

.content .align-center {
    text-align: center;
}

.content .align-right {
    text-align: right;
}

.content .align-justify {
    text-align: justify;
}

/* Lists */
.content ul {
    list-style-type: disc;
    margin-left: 40px;
}

.content ol {
    list-style-type: decimal;
    margin-left: 40px;
}

.content li {
    margin-bottom: 5px;
    margin-right: 15px;
}

/* Indent and Outdent */
.content .indent {
    padding-left: 20px;
}

.content .outdent {
    padding-left: 0;
}

/* Accordion */
.content .accordion {
    background-color: #eee;
    cursor: pointer;
    padding: 10px;
    border: 1px solid #ccc;
    text-align: left;
    margin-bottom: 5px;
}

.content .accordion-content {
    padding: 10px;
    display: none;
    background-color: #f9f9f9;
    border-top: none;
}

/* Tables */
.content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
}

.content th, .content td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.content th {
    background-color: #f2f2f2;
    font-weight: bold;
}

/* Horizontal Line */
.content hr {
    border: none;
    height: 1px;
    background-color: #ddd;
    margin: 20px 0;
}
/*Image Pointer class*/
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.point {
    width: 24px;
    height: 24px;
    border-width: 4px;
}

.label {
    font-size: 16px;
    padding: 8px 12px;
    pointer-events: none;
    user-select: none;
    z-index: 50;
    font-weight: bold;
}

.label-left {
    transform: translate(-100%, -50%) translateX(-20px);
}

.label-right {
    transform: translate(0%, -50%) translateX(20px);
}

.point {
    z-index: 20;
}

.point-container {
    z-index: 20;
}

.point-container:hover {
    z-index: 100;
}

.point-container:hover .label {
    opacity: 1;
    z-index: 101;
}
.solution-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: #1A3884 #f1f5f9;
}

.solution-scrollbar::-webkit-scrollbar {
    height: 6px;
}

.solution-scrollbar::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.solution-scrollbar::-webkit-scrollbar-thumb {
    background: #1A3884;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.solution-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #152d6b;
}
