* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Poppins, sans-serif;
}

p, li {
    font-family: "Open Sans", sans-serif;
}

:root {
    --ak-gold: #e8c33b;
    --ak-text-gray: #333;
    --ak-light-blue-bg: #e9f3f8;
}

.top-bar {
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 0px;
    position: absolute;
    width: 100%;
    top: 0px;
    z-index: 1001;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-links a {
    color: rgb(255, 255, 255);
    font-size: 13px;
    margin-left: 20px;
    text-decoration: none;
    transition: 0.3s;
}

.top-links a:hover {
    color: rgb(232, 195, 59);
}

.top-links i {
    margin-right: 5px;
    color: rgb(232, 195, 59);
}

.main-header {
    position: absolute;
    width: 100%;
    top: 45px;
    z-index: 999;
    padding: 10px 0px;
}

.logo img {
    max-height: 60px;
    width: auto;
    margin-left: 64%;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0px 10px;
    font-size: 14px;
    transition: 0.3s;
    color: rgb(0, 0, 0) !important;
}

.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: rgb(232, 195, 59) !important;
}

.talk-btn {
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 5px;
    background-color: rgb(232, 195, 59);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
}

@media (max-width: 991px) {
    .main-header {
        top: 0px;
        background: rgb(17, 17, 17);
        position: relative;
    }

    .navbar-collapse {
        background: rgb(26, 26, 26);
        padding: 20px;
        margin-top: 15px;
        border-radius: 8px;
        box-shadow: rgba(0, 0, 0, 0.5) 0px 10px 30px;
    }

    .navbar-nav .nav-link {
        padding: 12px 0px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .logo img {
        max-height: 45px;
    }
}

@media (max-width: 575px) {
    .logo img {
        max-height: 40px;
    }
}

.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    background: url("../img/hero-banner.png") center center / cover no-repeat;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: rgb(232, 195, 59);
}

.hero-content h1 {
    font-size: 33px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: -57px;
    padding-top: 18%;
    text-align: left;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.7;
    color: rgb(221, 221, 221);
    margin-bottom: 32px;
    margin-top: 68px;
    text-align: left;
}

.hero-btns .btn {
    padding: 10px 22px;
    margin-right: 10px;
    font-weight: 500;
    transform: skew(-20deg);
    border-radius: 0px !important;
}

.btn-success {
    background-color: rgb(250, 172, 35);
}

@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 22px;
    }

    .top-links {
        display: none !important;
    }

    .main-header {
        top: 0px;
        padding: 10px 0px;
    }
}

.ak-consult-sec {
    padding: 40px 0px;
    background-color: rgb(255, 255, 255);
    overflow: hidden;
}

.ak-consult-heading {
    font-weight: 800;
    color: var(--ak-dark-text);
    margin-bottom: 30px;
    font-size: 32px;
}

.ak-consult-form {
    max-width: 1100px;
    margin: 0px auto 50px;
}

.ak-input {
    height: 50px;
    border: 1px solid rgba(132, 25, 33, 0.52);
    padding-left: 15px;
    transform: skew(-20deg);
    border-radius: 0px !important;
}

.ak-input:focus {
    box-shadow: none;
    border-color: var(--ak-gold);
}

.ak-btn-signup {
    width: 100%;
    height: 50px;
    background-color: rgb(132, 25, 33);
    color: white;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    font-weight: 700;
    transition: 0.3s;
    transform: skew(-20deg);
}

.ak-btn-signup:hover {
    background-color: rgb(250, 172, 35) !important;
    color: rgb(255, 255, 255);
}

.ak-logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0px;
}

.ak-logo-track {
    display: flex;
    width: calc(4000px);
    animation: 30s linear 0s infinite normal none running scrollLogos;
}

.ak-logo-item {
    padding: 0px 15px;
    flex-shrink: 0;
}

.ak-logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0px);
    }

    100% {
        transform: translateX(calc(-2000px));
    }
}

.ak-logo-slider:hover .ak-logo-track {
    animation-play-state: paused;
}

@media (max-width: 992px) {
}

@media (max-width: 576px) {
    .ak-consult-heading {
        font-size: 24px;
    }
}

.ak-trust-sec {
    padding: 40px 0px;
    background-color: rgb(255, 255, 255);
}

.ak-trust-img-box {
    width: 100%;
    text-align: center;
}

.ak-trust-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 0px auto;
    margin-top: 34px;
}

.ak-trust-content {
    padding-left: 30px;
}

.ak-trust-heading {
    font-size: 42px;
    font-weight: 800;
    color: var(--ak-dark-text);
    line-height: 1.2;
    margin-bottom: 25px;
}

.ak-trust-text {
    font-size: 16px;
    color: rgb(68, 68, 68);
    line-height: 1.7;
    margin-bottom: 20px;
}

.ak-trust-btn-wrap {
    margin-top: 30px;
}

.ak-btn-gold {
    display: inline-block;
    background-color: var(--ak-gold);
    color: rgb(255, 255, 255);
    padding: 15px 35px;
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
    border-radius: 5px;
    transition: 0.3s;
    text-transform: uppercase;
}

.ak-btn-gold:hover {
    background: var(--ak-dark-blue);
    transform: translateY(-2px);
    color: rgb(255, 255, 255);
}

@media (max-width: 991px) {
    .ak-trust-content {
        padding-left: 0px;
        margin-top: 40px;
        text-align: center;
    }

    .ak-trust-heading {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .ak-trust-heading {
        font-size: 26px;
    }

    .ak-btn-gold {
        width: 100%;
        text-align: center;
    }
}

.ak-subject-sec {
    padding: 30px 0px;
    background-color: rgb(255, 255, 255);
    overflow: hidden;
}

.ak-sec-heading {
    font-weight: 800;
    font-size: 36px;
    color: var(--ak-dark-text);
    line-height: 1.2;
}

.ak-sec-text {
    max-width: 700px;
    margin: 15px auto;
    color: var(--ak-text-gray);
    font-size: 16px;
}

.ak-slider-container {
    width: 100%;
    cursor: grab;
    overflow: hidden;
    position: relative;
}

.ak-slider-container:active {
    cursor: grabbing;
}

.ak-slider-track {
    display: flex;
    transition: transform 0.5s ease-out;
    will-change: transform;
}

.ak-slider-card {
    flex: 0 0 33.333%;
    padding: 15px;
    box-sizing: border-box;
}

.ak-card-inner {
    background: rgb(255, 255, 255);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 10px 30px;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ak-card-inner .ak-card-headings {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.ak-card-inner p {
    flex-grow: 1;
    font-size: 14px;
    color: rgb(0, 0, 0);
    margin-bottom: 25px;
    line-height: 1.6;
}

.ak-card-btn {
    align-self: flex-start;
    margin-top: auto;
    background: var(--ak-gold);
    color: rgb(255, 255, 255);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    padding: 12px 30px;
    font-weight: 500;
    font-size: 14px;
    border-radius: 5px;
    transition: 0.3s;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ak-card-btn:hover {
    background: var(--ak-dark-blue);
    transform: translateY(-2px);
    color: rgb(255, 255, 255);
}

.ak-dots-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 10px;
}

.ak-dot {
    width: 10px;
    height: 10px;
    background: rgb(204, 204, 204);
    border-radius: 50%;
    cursor: pointer;
    padding: 0px;
    transition: 0.3s;
    display: inline-block;
}

.ak-dot:hover {
    background: rgb(153, 153, 153);
}

.ak-dot.active {
    background: var(--ak-dark-blue);
    width: 30px;
    border-radius: 10px;
}

@media (max-width: 991px) {
    .ak-slider-card {
        flex: 0 0 50%;
    }

    .ak-sec-heading {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .ak-slider-card {
        flex: 0 0 100%;
    }

    .ak-subject-sec {
        padding: 30px 0px;
    }

    .ak-sec-heading {
        font-size: 20px;
    }

    .ak-card-inner {
        padding: 30px 20px;
    }
}

:root {
    --ak-dark-blue: #0a3252;
    --ak-gold: #bf902d;
}

.ak-swipe-sec {
    padding: 30px 0px;
    background-color: rgb(246, 246, 246);
    overflow: hidden;
}

.ak-swipe-heading {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

.ak-swipe-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgb(85, 85, 85);
}

.ak-carousel-wrapper {
    position: relative;
    padding: 0px 40px;
}

.ak-carousel-container {
    overflow: hidden;
    width: 100%;
}

.ak-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.ak-swipe-card {
    flex: 0 0 100%;
    padding: 10px;
}

.ak-swipe-card-inner {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(238, 238, 238);
    padding: 50px 40px;
    border-radius: 10px;
    text-align: center;
}

.ak-icon-box img {
    width: 100px;
    margin-bottom: 10px;
}

.ak-swipe-card-inner .card-heading {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.ak-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--ak-dark-blue);
    color: rgb(255, 255, 255);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    border-radius: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: 0.3s;
}

.ak-prev {
    left: 10px;
}

.ak-next {
    right: 10px;
}

.ak-arrow:hover {
    background: var(--ak-gold);
}

@media (max-width: 991px) {
    .ak-arrow {
        display: none !important;
    }

    .ak-carousel-wrapper {
        padding: 0px;
    }

    .ak-swipe-heading {
        font-size: 30px;
    }
}

.ak-premium-sec {
    padding: 30px 0px;
    background-color: rgb(246, 246, 246);
}

.ak-premium-sec-heading {
    font-weight: 800;
    font-size: 36px;
    color: var(--ak-dark-text);
    line-height: 1.2;
}

.ak-premium-wrapper {
    position: relative;
    padding: 0px 10px;
}

.ak-premium-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 15px;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ak-dark-blue);
    cursor: pointer;
    transition: 0.3s;
    pointer-events: auto;
}

.ak-premium-prev {
    left: -5px;
    background: var(--ak-dark-blue) !important;
    color: rgb(255, 255, 255) !important;
}

.ak-premium-next {
    right: -5px;
    background: var(--ak-dark-blue) !important;
    color: rgb(255, 255, 255) !important;
}

.ak-premium-nav:hover {
    transform: translateY(-50%) scale(1.1);
    background: var(--ak-gold) !important;
    color: rgb(255, 255, 255) !important;
}

.ak-premium-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    z-index: 10;
}

.ak-premium-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}

.ak-premium-slide {
    flex: 0 0 50%;
    padding: 15px;
}

.ak-premium-card {
    background: rgb(255, 255, 255);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ak-premium-card .ak-premium-card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ak-premium-chat-btn {
    background-color: var(--ak-gold);
    color: white;
    width: fit-content;
    text-align: center;
    margin: 20px auto 0px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    display: block;
    padding: 12px 35px;
    border-radius: 5px;
    font-weight: 600;
}

.ak-premium-chat-btn:hover {
    background: var(--ak-dark-blue);
    transform: translateY(-2px);
    color: rgb(255, 255, 255);
}

@media (max-width: 991px) {
    .ak-premium-slide {
        flex: 0 0 100%;
    }

    .ak-premium-nav {
        display: none !important;
    }
}

.ak-dependable-sec {
    background-image: url("../img/dependable-bg.png");
    background-size: cover;
    background-position: center center;
    color: rgb(255, 255, 255);
}

.ak-main-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.ak-sub-desc {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.ak-benefit-card {
    background: rgb(255, 255, 255);
    color: rgb(51, 51, 51);
    padding: 30px;
    border-radius: 15px;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 20px;
}

.ak-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 15px 30px;
}

.ak-card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    object-fit: contain;
    margin-right: 1rem;
}

.ak-card-title {
    font-size: 22px;
    color: rgb(0, 0, 0);
    margin: 0px;
}

.ak-card-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgb(0, 0, 0);
    margin: 0px;
}

@media (max-width: 768px) {
    .ak-main-title {
        font-size: 1.8rem;
    }

    .ak-benefit-card {
        padding: 20px;
    }
}

.ak-support-sec {
    background-color: rgb(255, 255, 255);
    padding: 30px 0px;
}

.ak-trusted-sec {
    background-color: var(--ak-light-bg);
}

.ak-section-title {
    color: rgb(0, 0, 0);
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.ak-section-text {
    font-size: 1rem;
    color: rgb(51, 51, 51);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.ak-btn-expert {
    background-color: var(--ak-gold);
    color: rgb(255, 255, 255);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    padding: 12px 35px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
    cursor: pointer;
    transform: skew(-20deg);
}

.ak-btn-expert:hover {
    background-color: var(--ak-dark-blue);
    transform: translateY(-2px);
}

.ak-main-img {
    border-radius: 10px;
}

.ak-content-col {
    padding-right: 50px;
}

@media (max-width: 991px) {
    .ak-section-title {
        font-size: 1.8rem;
    }

    .ak-content-col {
        padding-right: 15px;
        text-align: center;
        margin-bottom: 30px;
    }

    .ak-btn-wrapper {
        text-align: center;
    }

    .ak-img-col {
        margin-top: 20px;
    }
}

.exam-top {
    padding: 30px 20px 40px;
    text-align: center;
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
}

.exam-top-wrap {
    max-width: 900px;
    margin: 0px auto;
}

.exam-top-title {
    font-size: 40px;
    font-weight: 900;
    color: rgb(17, 17, 17);
    margin-bottom: 15px;
    line-height: 1.4;
}

.exam-top-desc {
    font-size: 15px;
    color: rgb(0, 0, 0);
    line-height: 1.7;
}

.exam-top-desc a {
    color: rgb(0, 0, 0);
    text-decoration: none;
}

.exam-split-row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.exam-col {
    width: 50%;
    padding: 45px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.exam-col-left {
    background: rgb(10, 50, 82);
}

.exam-col-right {
    background: rgb(191, 144, 45);
}

.exam-col-title {
    font-size: 30px;
    font-weight: 900;
    font-family: Oswald, sans-serif;
    color: rgb(255, 255, 255);
    margin-bottom: 16px;
}

.exam-col-text {
    font-size: 18px;
    color: rgb(255, 255, 255);
    line-height: 1.75;
    margin-bottom: 28px;
}

.exam-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    width: fit-content;
    transition: background 0.3s;
    color: rgb(255, 255, 255);
}

@media (max-width: 992px) {
    .exam-top-title {
        font-size: 28px;
    }

    .exam-col-title {
        font-size: 21px;
    }
}

@media (max-width: 576px) {
    .exam-col {
        width: 100%;
        padding: 35px 25px;
    }

    .exam-top-title {
        font-size: 20px;
    }

    .exam-top-desc {
        font-size: 13px;
    }

    .exam-col-title {
        font-size: 19px;
    }
}

.ak-moodle-section, .ak-algebra-section {
    position: relative;
    overflow: hidden;
}

.ak-rel-content {
    position: relative;
    z-index: 5;
}

.ak-abs-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    top: -30px;
    object-position: center top;
}

.ak-abs-bgs {
    position: absolute;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    top: 0px;
}

.ak-btn-primary-gold {
    background: rgb(132, 25, 33);
    color: rgb(255, 255, 255);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    padding: 12px 35px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
    cursor: pointer;
    transform: skew(-20deg);
}

.ak-btn-primary-gold:hover {
    background: var(--ak-dark-blue);
    transform: translateY(-2px);
    color: rgb(255, 255, 255);
}

.ak-btn-secondary-outline {
    background: rgb(250, 172, 35);
    color: rgb(255, 255, 255);
    border: 1.5px solid rgb(255, 255, 255);
    padding: 12px 35px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
    transform: skew(-20deg);
}

.ak-btn-secondary-outline:hover {
    background: rgb(255, 255, 255);
    color: var(--ak-dark-blue);
}

.ak-moodle-section {
    padding: 80px 0px;
    background: rgb(255, 255, 255);
}

.ak-section-h2 {
    font-size: 2.2rem;
    line-height: 1.3;
}

.ak-moodle-list li {
    list-style: none;
    margin-bottom: 14px;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
}

.ak-moodle-list li i {
    color: var(--ak-gold);
    margin-right: 10px;
    margin-top: 5px;
    font-size: 0.8rem;
}

.ak-right-img {
    max-width: 350px;
    margin-left: auto;
}

.ak-algebra-section {
    margin-top: -10px;
    padding: 120px 0px 80px;
}

.ak-algebra-title {
    font-size: 2.3rem;
}

.ak-algebra-p {
    max-width: 600px;
    margin: 10px auto 0px;
    color: black;
}

.ak-gold-clr {
    color: rgb(250, 172, 35);
}

@media (max-width: 991px) {
    .text-end-lg {
        text-align: center !important;
    }

    .ak-right-img {
        margin: 20px auto;
        display: block;
    }
}

@media (max-width: 576px) {
    .ak-btn-primary-gold, .ak-btn-secondary-outline {
        width: 100%;
        margin-bottom: 15px;
    }
}

.tech-assist-section {
    background-color: rgb(255, 255, 255);
    padding: 30px 0px;
}

.tech-assist-main-heading {
    font-weight: 800;
    font-size: 2.8rem;
    color: rgb(17, 17, 17);
    line-height: 1.1;
    margin-bottom: 25px;
}

.tech-assist-info-text {
    font-size: 1.05rem;
    color: rgb(68, 68, 68);
    line-height: 1.8;
    margin-bottom: 35px;
}

.tech-assist-action-btn {
    background-color: rgb(188, 142, 61);
    padding: 14px 40px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    transition: 0.3s;
    color: rgb(255, 255, 255) !important;
}

.tech-assist-action-btn:hover {
    background: var(--ak-dark-blue);
    transform: translateY(-2px);
    color: rgb(255, 255, 255);
}

.tech-assist-single-visual {
    display: inline-block;
    position: relative;
}

.tech-assist-main-img {
    width: 100%;
    height: auto;
}

@media (max-width: 991px) {
    .tech-assist-main-heading {
        font-size: 2.2rem;
        text-align: center;
    }

    .tech-assist-text-block {
        text-align: center;
        padding-right: 0px !important;
    }

    .tech-assist-main-img {
        max-width: 100%;
    }
}

#experts-display {
    padding: 30px 0px;
}

.display-header {
    text-align: center;
    padding-bottom: 40px;
}

.display-title {
    font-size: 36px;
    font-weight: 700;
}

.display-subtitle {
    font-size: 18px;
    color: rgb(0, 0, 0);
    font-weight: normal;
}

.expert-tabs-list {
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    background: color-mix(in srgb, var(--surface-color), transparent 50%);
    border-radius: 16px;
    backdrop-filter: blur(8px);
}

.tab-wrapper {
    margin-bottom: 15px;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 8px 32px;
}

.tab-wrapper:last-child {
    margin-bottom: 0px;
}

.tab-trigger {
    padding: 20px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    border-radius: 12px;
    background: rgb(255, 255, 255);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.avatar-holder {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: 0.4s;
}

.tab-main-name {
    font-size: 20px;
    font-weight: 700;
    margin: 0px 0px 5px;
    color: rgb(0, 0, 0);
    transition: 0.4s;
}

.tab-sub-info {
    font-size: 14px;
    margin: 0px;
    color: rgb(35, 31, 32);
    transition: 0.4s;
    font-weight: 500;
}

.tab-trigger:hover {
    transform: translateY(-2px);
    background-color: rgb(219, 195, 143);
}

.tab-trigger.active {
    background-color: rgb(255, 255, 255);
    border-left: 5px solid rgb(191, 144, 45) !important;
}

.expert-details-area .expert-card {
    background: var(--surface-color);
    border-radius: 16px;
    padding: 40px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 8px 32px;
    transition: 0.4s;
    border: 1px solid rgba(128, 128, 128, 0.27);
}

.card-inner-header {
    align-items: center;
}

.large-avatar {
    width: 80px;
}

.header-text-block {
    margin-left: 20px;
}

.expert-full-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0px;
}

.expert-tenure {
    margin-bottom: 0px;
    font-size: 16px;
}

.rating-stars img {
    width: 110px;
}

.expert-bio {
    color: rgb(10, 10, 10);
    line-height: 1.6;
    margin: 20px 0px;
    font-size: 16px;
}

.performance-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
}

.metric-item {
    display: flex;
    gap: 11px;
    align-items: start;
}

.metric-value {
    font-size: 16px;
    font-weight: 700;
    color: rgb(26, 26, 26);
}

.metric-text {
    font-size: 14px;
    color: rgb(102, 102, 102);
}

.action-footer {
    padding-bottom: 10px;
}

.connect-btn {
    background-color: rgb(191, 144, 45);
    border: 2px solid rgb(191, 144, 45);
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.3s;
    display: inline-block;
    text-decoration: none;
    color: rgb(255, 255, 255) !important;
}

.connect-btn:hover {
    background: var(--ak-dark-blue);
    transform: translateY(-2px);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    color: rgb(255, 255, 255);
}

.tab-pane {
    transition: 0.4s;
}

.tab-pane.fade {
    transform: translateY(10px);
    opacity: 0;
}

.tab-pane.show {
    transform: translateY(0px);
    opacity: 1;
}

@media (max-width: 991px) {
    .expert-tabs-list {
        margin-bottom: 30px;
    }

    .tab-trigger {
        padding: 15px;
    }

    .expert-card {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .tab-main-name {
        font-size: 15px;
    }

    .expert-full-name {
        font-size: 22px;
    }

    .performance-stats {
        flex-direction: column;
        gap: 15px;
    }
}

.ak-results-section {
    background-color: rgb(255, 255, 255);
    padding: 40px 0px;
    overflow: hidden;
}

.ak-results-title {
    font-size: 2.8rem;
    line-height: 1.2;
    color: rgb(0, 0, 0);
    letter-spacing: -0.5px;
}

.ak-results-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgb(74, 74, 74);
    margin-bottom: 20px;
}

.ak-results-img-box {
    position: relative;
    padding: 20px;
}

.ak-laptop-mockup {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 20px 30px);
    transition: transform 0.4s;
}

.ak-laptop-mockup:hover {
    transform: scale(1.02);
}

@media (max-width: 991px) {
    .ak-results-section {
        padding: 60px 0px;
    }

    .ak-results-title {
        font-size: 2rem;
        text-align: center;
    }

    .ak-results-content {
        text-align: center;
        margin-top: 30px;
    }

    .ak-results-text {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .ak-btn-primary-gold {
        width: 100%;
    }
}

.fs-showcase-area {
    position: relative;
    padding: 60px 0px;
    background-image: url("../img/scroll-bg.png");
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    text-align: left;
}

.fs-backdrop-overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.fs-content-stack {
    position: relative;
    z-index: 2;
}

.fs-hero-title {
    font-size: 32px;
    font-weight: 800;
    color: rgb(233, 162, 40);
    margin-bottom: 25px;
    text-transform: uppercase;
    line-height: 1.2;
}

.fs-section-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: rgb(0, 0, 0);
    font-family: Oswald, sans-serif;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.fs-showcase-area p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgb(255, 255, 255) !important;
}

.fs-bullet-list {
    font-size: 17px;
    color: rgb(255, 255, 255);
    padding-left: 20px;
    margin-bottom: 25px;
}

.fs-bullet-list li {
    margin-bottom: 10px;
}

.fs-scrollable-container {
    max-height: 350px;
    overflow: hidden auto;
    padding-right: 25px;
}

.fs-content-body {
    padding-bottom: 20px;
}

.fs-scrollable-container::-webkit-scrollbar {
    width: 6px;
    background: rgb(255, 255, 255);
}

.fs-scrollable-container::-webkit-scrollbar-thumb {
    background: rgb(232, 195, 59);
    border-radius: 10px;
}

@media (max-width: 991px) {
    .fs-hero-title {
        font-size: 26px;
    }

    .fs-section-subtitle {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .fs-showcase-area {
        padding: 40px 0px;
    }

    .fs-hero-title {
        font-size: 22px;
    }

    .fs-scrollable-container {
        max-height: 55vh;
    }
}

.rv-feedback-section {
    padding: 40px 0px;
    background: rgb(255, 255, 255);
}

.rv-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0px 45px;
}

.rv-viewport {
    overflow: hidden;
    width: 100%;
    cursor: grab;
}

.rv-viewport:active {
    cursor: grabbing;
}

.rv-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.rv-card {
    flex: 0 0 33.333%;
    padding: 15px;
    box-sizing: border-box;
}

.rv-card-inner {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(224, 224, 224);
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.03) 0px 5px 20px;
}

.rv-user-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.rv-text {
    font-size: 14.5px;
    color: rgb(85, 85, 85);
    line-height: 1.6;
    margin-top: 15px;
    font-style: italic;
}

.rv-stars i {
    color: rgb(255, 180, 0) !important;
    font-size: 13px;
}

.rv-platform-tab {
    background: rgb(238, 242, 255);
    padding: 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    border-bottom: 5px solid transparent;
}

.rv-platform-tab:hover, .rv-platform-tab.active {
    background: rgb(15, 23, 42);
    transform: translateY(-3px);
    color: rgb(255, 255, 255) !important;
}

.rv-platform-tab.active .rv-brand-name {
    color: rgb(255, 255, 255) !important;
}

.rv-brand-name {
    font-weight: 800;
    font-size: 20px;
    margin: 0px;
}

.fb-color {
    color: rgb(24, 119, 242);
}

.tp-color {
    color: rgb(0, 182, 122);
}

.go-color {
    color: rgb(66, 133, 244);
}

.sj-color {
    color: rgb(255, 109, 0);
}

.rv-control-btn {
    width: 45px;
    height: 45px;
    background: rgb(132, 25, 33);
    color: white;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    border-radius: 50%;
    position: absolute;
    z-index: 10;
    transition: 0.3s;
}

.rv-prev {
    left: 0px;
}

.rv-next {
    right: 0px;
}

.rv-control-btn:hover {
    background: rgb(255, 174, 0);
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .rv-card {
        flex: 0 0 50%;
    }

    .rv-control-btn {
        display: none;
    }

    .rv-slider-container {
        padding: 0px;
    }
}

@media (max-width: 576px) {
    .rv-card {
        flex: 0 0 100%;
    }
}

.faq-section {
    position: relative;
    background-color: rgb(233, 233, 241);
    padding: 40px 0px;
    color: rgb(0, 0, 0);
    overflow: hidden;
}

.faq-bg-img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.4);
}

.faq-title {
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.faq-subtitle {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0px auto 50px;
    opacity: 0.9;
}

.accordion-item {
    background-color: white;
    margin-bottom: 15px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 25px;
    transition: 0.3s;
    overflow: hidden;
    border-radius: 12px !important;
}

.accordion-button {
    font-weight: 500;
    color: rgb(51, 51, 51);
    background-color: rgb(255, 255, 255);
    padding: 20px;
    transition: 0.3s;
    border-radius: 12px !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background-color: rgb(5, 5, 5);
    color: rgb(255, 255, 255);
}

.accordion-button::after {
    background-size: contain;
    width: 1.4rem;
    height: 1.4rem;
    filter: brightness(0) saturate(100%) invert(77%) sepia(47%) saturate(600%) hue-rotate(10deg);
}

.help-custom-section {
    padding: 60px 0px;
    background-size: cover;
    background-position: center center;
}

.form-separated-card {
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgb(191, 191, 191);
    height: 100%;
}

.main-title-text {
    font-size: 30px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 5px;
    color: rgb(0, 0, 0);
}

.sub-title-text {
    font-size: 16px;
    color: rgb(0, 0, 0);
    text-align: center;
    margin-bottom: 30px;
}

.input-wrapper {
    margin-bottom: 18px;
}

.input-field {
    width: 100%;
    padding: 14px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgb(191, 191, 191);
    border-radius: 10px;
    outline: none;
    color: rgb(255, 255, 255);
}

.input-field::placeholder {
    color: rgb(170, 170, 170);
}

.submit-btn-wrapper {
    text-align: center;
    margin-top: 25px;
}

.gr-submit-btn {
    background: linear-gradient(rgb(132, 25, 33), rgb(132, 25, 33));
    color: rgb(255, 255, 255);
    font-weight: 700;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    padding: 14px 55px;
    font-size: 18px;
    cursor: pointer;
    text-transform: uppercase;
}

.image-separated-box {
    height: 100%;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.sidebar-img-full {
    height: 100%;
    display: block;
}

@media (max-width: 991px) {
    .image-separated-box {
        height: 400px;
        margin-top: 20px;
    }
}

.footer-section {
    background-color: rgb(0, 43, 43);
    color: rgb(255, 255, 255);
    padding-top: 60px;
    padding-bottom: 20px;
}

.footer-section .footer-heading {
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.text-muted-custom {
    color: rgb(189, 195, 199);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-links {
    padding: 0px;
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: rgb(191, 144, 45);
    padding-left: 5px;
}

.subjects-scroll-container {
    max-height: 220px;
    overflow-y: auto;
    padding-right: 10px;
}

.subjects-scroll-container::-webkit-scrollbar {
    width: 4px;
}

.subjects-scroll-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.subjects-scroll-container::-webkit-scrollbar-thumb {
    background: rgb(32, 201, 151);
    border-radius: 10px;
}

.contact-col {
    padding-left: 30px;
}

.contact-info p {
    font-size: 0.9rem;
    margin-bottom: 12px;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.contact-info p:hover {
    color: rgb(191, 144, 45);
    transform: scale(1.02);
}

.contact-info i {
    margin-right: 10px;
    color: rgb(255, 255, 255);
}

.btn-whatsapp {
    background-color: rgb(132, 25, 33);
    color: white;
    width: 50%;
    border-radius: 0px;
    padding: 12px;
    display: block;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
    margin-top: 20px;
}

.btn-whatsapp:hover {
    color: rgb(191, 144, 45);
    border: 2px solid rgb(191, 144, 45);
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    color: white;
    font-size: 1.2rem;
    margin-right: 18px;
    transition: 0.3s;
    display: inline-block;
}

.social-icons a:hover {
    transform: translateY(-5px);
}

.social-icons a.fa-facebook-f:hover {
    color: rgb(24, 119, 242);
}

.social-icons a.fa-instagram:hover {
    color: rgb(228, 64, 95);
}

.social-icons a.fa-x-twitter:hover {
    color: rgb(0, 0, 0);
}

.social-icons a.fa-pinterest-p:hover {
    color: rgb(189, 8, 28);
}

.social-icons a.fa-linkedin-in:hover {
    color: rgb(10, 102, 194);
}

.payment-img {
    max-width: 100%;
    margin-top: 20px;
}

.copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    font-size: 0.85rem;
}

@media (max-width: 991px) {
    .contact-col {
        border-left-width: medium;
        border-left-style: none;
        border-left-color: currentcolor;
        padding-left: 12px;
        margin-top: 30px;
    }
}

.subjects-scroll-container {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 10px;
}

.subjects-scroll-container::-webkit-scrollbar {
    width: 8px;
}

.subjects-scroll-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.subjects-scroll-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
}

.subjects-scroll-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.6);
}

.ak-algebra-title {
    color: black;
}

p.ak-stat-item {
    color: black;
}

.combined-section {
    background-image: url("../img/red-bck.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    color: var(--white);
}

.combined-section::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.combined-section .container {
    position: relative;
    z-index: 2;
}

.ak-subject-area {
    padding: 70px 0px 50px;
    text-align: center;
}

.ak-sec-heading {
    font-family: Oswald, sans-serif;
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: var(--white);
}

.ak-sec-text {
    font-size: 15px;
    line-height: 1.8;
    max-width: 850px;
    margin: 0px auto 40px;
    opacity: 0.9;
    color: var(--white);
}

.ak-slider-container {
    overflow: hidden;
    padding: 10px 0px;
}

.ak-slider-track {
    display: flex;
    transition: transform 0.5s;
}

.ak-slider-card {
    min-width: 33.333%;
    padding: 0px 12px;
    flex-shrink: 0;
}

.ak-card-inner {
    background: var(--white);
    border-radius: 8px;
    padding: 30px 25px;
    text-align: center;
    color: var(--dark-text);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ak-card-headings {
    font-family: Oswald, sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.ak-card-inner p {
    font-size: 14px;
    color: var(--body-text);
    line-height: 1.7;
}

.ak-card-btn {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    font-family: Oswald, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 10px 30px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 15px;
}

.ak-card-btn:hover {
    background: var(--gold-hover);
}

.ak-dots-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.ak-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: 0.3s;
}

.ak-dot.active {
    background: var(--gold);
}

.pay-someone-area {
    padding: 60px 0px;
    text-align: center;
}

.section-title {
    font-family: Oswald, sans-serif;
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: white;
}

.section-desc {
    font-size: 15px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0px auto 40px;
    opacity: 0.9;
    color: white;
}

.level-slider-wrapper {
    position: relative;
    max-width: 99%;
    margin: 0px auto;
}

.level-card {
    padding: 40px 50px;
    text-align: center;
    color: var(--dark-text);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 40px;
    background-color: white;
    width: 100% !important;
}

.level-card .card-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.level-card .card-icon img {
    width: 60px;
    height: 60px;
}

.level-card h3 {
    font-family: Oswald, sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: var(--dark-text);
}

.level-card p {
    font-size: 14px;
    color: var(--body-text);
    line-height: 1.7;
    margin-bottom: 0px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding-top: 10px;
}

.slider-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
    right: -5px;
    background-color: rgb(250, 172, 35);
    color: rgb(255, 255, 255) !important;
}

.slider-btn:hover {
    opacity: 0.85;
}

.slider-btn.next-btn {
    right: -5px;
    background-color: rgb(250, 172, 35) !important;
    color: rgb(255, 255, 255) !important;
}

.cheapest-area {
    padding: 60px 0px 80px;
    text-align: center;
}

.cheapest-area .section-title {
    margin-bottom: 50px;
}

.cards-slider-wrapper {
    position: relative;
    overflow: visible;
}

.cards-overflow {
    overflow: hidden;
    padding-bottom: 30px;
}

.cards-track {
    display: flex;
    transition: transform 0.5s;
    overflow: visible;
}

.cards-track .slide-item {
    min-width: 50%;
    padding: 0px 15px;
    overflow: visible;
}

.service-card {
    padding: 40px 30px 50px;
    text-align: center;
    color: var(--dark-text);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 30px;
    height: 100%;
    position: relative;
    overflow: visible;
    margin-bottom: 25px;
    background-color: white;
}

.service-card h3 {
    font-family: Oswald, sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.service-card p {
    font-size: 14px;
    color: var(--body-text);
    line-height: 1.7;
    margin-bottom: 25px;
}

.btn-experts {
    display: inline-block;
    color: white;
    font-family: Oswald, sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 12px 35px;
    text-decoration: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s;
    white-space: nowrap;
    z-index: 3;
    background: transparent;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
}

.btn-experts::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgb(138, 48, 33);
    border: 3px solid var(--primary-red);
    z-index: -1;
    transition: 0.3s;
}

.btn-experts:hover {
    background-color: rgb(250, 172, 35);
    transform: translateX(-50%) translateY(-2px);
}

.cards-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: 0.3s;
    font-size: 18px;
    right: -5px;
    background: var(--ak-dark-blue) !important;
    color: rgb(255, 255, 255) !important;
}

.cards-nav-btn:hover {
    background: var(--gold-hover);
    color: var(--white);
}

.cards-nav-btn.prev {
    left: -22px;
    background-color: rgb(250, 172, 35) !important;
}

.cards-nav-btn.next {
    right: -22px;
    background-color: rgb(250, 172, 35) !important;
}

@media (max-width: 991px) {
    .ak-sec-heading, .section-title {
        font-size: 32px;
    }

    .ak-slider-card {
        min-width: 50%;
    }

    .level-card {
        padding: 30px 25px;
    }
}

@media (max-width: 767px) {
    .ak-subject-area {
        padding: 50px 0px 40px;
    }

    .ak-sec-heading, .section-title {
        font-size: 26px;
    }

    .ak-sec-text, .section-desc {
        font-size: 14px;
        padding: 0px 10px;
    }

    .ak-slider-card {
        min-width: 100%;
    }

    .pay-someone-area, .cheapest-area {
        padding: 40px 0px;
    }

    .cheapest-area {
        padding-bottom: 60px;
    }

    .cards-track .slide-item {
        min-width: 100%;
    }

    .level-card {
        padding: 25px 20px;
    }

    .level-card h3 {
        font-size: 20px;
    }

    .service-card {
        padding: 30px 20px 50px;
    }

    .cards-nav-btn.prev {
        left: -9px;
    }

    .cards-nav-btn.next {
        right: -8px;
    }
}

@media (max-width: 480px) {
    .ak-sec-heading, .section-title {
        font-size: 16px;
    }
}

.section-title-5 {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-5 h2 {
    font-weight: 800;
    letter-spacing: 1px;
}

.section-title-5 p {
    color: rgb(102, 102, 102);
    max-width: 700px;
    margin: auto;
}

.feature-card {
    background: rgb(255, 255, 255);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: 0.3s;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 15px;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 25px;
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: rgb(0, 123, 255);
}

.feature-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card p {
    color: rgb(85, 85, 85);
    font-size: 14px;
}

.dots {
    text-align: center;
    margin-top: 20px;
}

.dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: rgb(204, 204, 204);
    border-radius: 50%;
    margin: 5px;
}

.dots span.active {
    background: rgb(179, 0, 0);
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 22px;
    }
}

.custom-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgb(255, 255, 255);
}

.call-box {
    background: rgb(139, 0, 0);
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    padding: 15px 25px;
    gap: 10px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-menu li a {
    text-decoration: none;
    color: rgb(51, 51, 51);
    font-weight: 500;
}

.call-box {
    background: rgb(139, 0, 0);
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 5px;
    gap: 10px;
}

.call-icon {
    font-size: 20px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        gap: 10px;
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
    }

    .call-box {
        width: 100%;
        justify-content: center;
    }
}

.custom-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgb(255, 255, 255);
    overflow: hidden;
}

.container-nav {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 19px;
}

.call-box {
    position: relative;
    background: linear-gradient(135deg, rgb(139, 0, 0), rgb(160, 0, 0));
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    padding: 15px 30px 15px 50px;
    gap: 10px;
    clip-path: polygon(15% 0px, 100% 0px, 100% 100%, 0% 100%);
    width: 27%;
    z-index: 2147483647;
}

.call-icon {
    position: absolute;
    left: -6px;
    background: rgb(238, 238, 238);
    color: rgb(139, 0, 0);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2147483647;
}

.top-left img {
    height: 85px;
}

#mainMenu.active {
    display: block;
}

.hero-btns .btn {
    transform: skew(0deg);
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px !important;
}

.hero-btns .btn .btn-fix {
    display: inline-block;
    transform: skew(20deg);
}

.hero-btns .btn:hover {
    transform: skew(-20deg) scale(1.05);
}

.ak-btn-gold {
    display: inline-block;
    background-color: rgb(34, 51, 68);
    color: rgb(255, 255, 255);
    padding: 16px 30px;
    text-decoration: none;
    font-weight: bold;
    margin-right: 15px;
    transition: 0.3s;
    border-radius: 0px !important;
}

.ak-text-fix {
    display: inline-block;
}

.ak-btn-gold:hover {
    background-color: rgb(132, 25, 33);
    color: rgb(255, 255, 255);
}

.AK-BUT-EXPERT {
    background-color: rgb(132, 25, 33);
}

h3.fs-section-subtitle.mt-4 {
    color: rgb(250, 172, 35);
}

.sophia-services h2, .sophia-services h3 {
    font-family: Oswald, sans-serif;
    letter-spacing: 0.5px;
}

.service-card1 {
    background-color: rgb(255, 244, 228);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    transition: transform 0.3s;
}

.service-card1:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 20px;
}

.service-card1 p {
    font-size: 15px;
    line-height: 1.6;
    color: rgb(51, 51, 51);
    text-align: justify;
}

.service-card1 h3 {
    text-align: start;
}

.ak-benefits-section {
    background-color: rgb(253, 253, 254);
}

.ak-main-title {
    font-size: 28px;
    letter-spacing: 0.5px;
    color: rgb(17, 17, 17);
}

@media (max-width: 768px) {
    .ak-main-title {
        font-size: 22px;
    }
}

.ak-subtitle {
    font-size: 15px;
    line-height: 1.6;
}

.ak-benefit-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(238, 238, 238);
    border-radius: 4px;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.03) 0px 4px 15px;
    transition: 0.3s;
}

.ak-benefit-card:hover {
    box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 25px;
    transform: translateY(-5px);
}

.ak-icon-wrap {
    display: inline-block;
    padding: 10px;
    border-radius: 50%;
}

.ak-icon-wrap img {
    max-width: 80px;
    height: auto;
    display: block;
    margin: 0px auto;
}

.ak-card-title {
    font-size: 20px;
    margin-bottom: 12px;
    color: rgb(34, 34, 34);
}

.ak-card-text {
    font-size: 14px;
    line-height: 1.7;
    text-align: justify;
}

.ak-benefits-carousel .owl-dots {
    margin-top: 30px !important;
}

.ak-benefits-carousel .owl-dot span {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    transition: 0.3s;
    background: rgb(225, 225, 225) !important;
}

.ak-benefits-carousel .owl-dot.active span {
    width: 25px;
    background: rgb(128, 27, 27) !important;
}

.ak-benefit-card {
    text-align: left;
}

.ak-icon-wrap {
    display: block;
    margin-left: 0px;
    margin-right: auto;
    text-align: left;
    padding: 0px;
}

.ak-icon-wrap img {
    margin-left: 0px !important;
    margin-right: auto;
}

.ak-card-title {
    text-align: start;
}

.mobile-header {
    position: relative;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: rgb(255, 255, 255);
}

.menu-toggle {
    font-size: 30px;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0px;
    width: 100%;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 10px;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.mobile-nav ul li a {
    display: block;
    padding: 15px 20px;
    border-bottom: 1px solid rgb(238, 238, 238);
    text-decoration: none;
    color: rgb(51, 51, 51);
    font-weight: 500;
}

.lms-section {
    padding: 80px 0px;
    font-family: Poppins, sans-serif;
}

.deadline-card {
    background-image: url("../img/essiotial.png");
    background-size: cover;
    background-position: center center;
    color: white;
    padding: 50px 40px;
    border-radius: 0px 100px 0px 0px;
    height: 100%;
}

.deadline-card h2 {
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.feature-list {
    list-style: none;
    padding: 0px;
}

.feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
}

.feature-list li::before {
    content: ">";
    margin-right: 10px;
    font-weight: bold;
}

.btn-talk {
    background-color: rgb(30, 58, 86);
    color: white;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-talk:hover {
    background-color: rgb(22, 45, 66);
    color: white;
}

.lms-content {
    padding-left: 40px;
}

.lms-content h2 {
    font-weight: 800;
    color: rgb(34, 34, 34);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.lms-content p {
    color: rgb(102, 102, 102);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.lms-logos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
}

.lms-logo-item {
    max-width: 180px;
    height: auto;
}

.btn-get-quote {
    background-color: rgb(138, 48, 33);
    color: white;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    padding: 15px 35px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-get-quote:hover {
    background-color: rgb(109, 54, 43);
    color: white;
}

@media (max-width: 991px) {
    .lms-content {
        padding-left: 0px;
        margin-top: 50px;
    }

    .deadline-card {
        border-radius: 0px 50px 0px 0px;
    }
}

.hero-section {
    background-color: rgb(235, 237, 243);
    overflow: hidden;
    position: relative;
    font-family: Poppins, sans-serif;
}

.hero-content {
    padding: 80px 0px;
}

.hero-title {
    font-weight: 800;
    color: rgb(139, 69, 55);
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title span {
    color: rgb(0, 0, 0);
}

.hero-p {
    color: rgb(68, 68, 68);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.btn-live {
    background-color: rgb(138, 48, 33);
    color: white;
    padding: 12px 35px;
    border-radius: 5px;
    font-weight: 600;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    margin-right: 15px;
}

.btn-call {
    background-color: rgb(34, 51, 68);
    color: white;
    padding: 12px 35px;
    border-radius: 5px;
    font-weight: 600;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
}

.hero-img-container {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.main-girl-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.floating-badge {
    position: absolute;
    background: white;
    border-radius: 50%;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 25px;
    text-align: center;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.floating-badge span {
    font-size: 10px;
    font-weight: bold;
    color: rgb(51, 51, 51);
    margin-bottom: 5px;
}

.badge-1 {
    top: 15%;
    right: 40%;
}

.badge-2 {
    top: 15%;
    right: 10%;
}

.badge-3 {
    bottom: 20%;
    left: 10%;
}

.badge-4 {
    bottom: 20%;
    right: 10%;
}

@media (max-width: 768px) {
    .floating-badge {
        display: none !important;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-content {
        text-align: center;
        padding: 40px 20px;
    }

    .hero-img-container {
        min-height: 350px;
    }
}

.consult-section {
    padding: 80px 0px;
    background: url("../img/consultant.png") center center / cover rgb(8, 26, 51);
    color: white;
}

.consult-title {
    font-weight: 800;
    font-size: 2.5rem;
}

.consult-form .form-control {
    height: 50px;
    border-radius: 5px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    padding-left: 15px;
}

.btn-signup {
    color: white;
    height: 50px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    font-weight: bold;
    transition: 0.3s;
    background-color: rgb(138, 48, 33) !important;
}

.btn-signup:hover {
    background-color: rgb(109, 54, 43);
}

.uni-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    transition: transform 0.3s;
}

.uni-card:hover {
    transform: translateY(-5px);
}

.uni-card img {
    max-width: 100%;
    /* height: 100px; */
    object-fit: contain;
}

@media (max-width: 768px) {
    .consult-title {
        font-size: 1.8rem;
    }
}

.benefits-section {
    padding: 80px 0px;
    background-color: rgb(255, 255, 255);
    font-family: Poppins, sans-serif;
}

.benefits-title {
    font-weight: 800;
    font-size: 2.5rem;
    color: rgb(0, 0, 0);
    margin-bottom: 15px;
}

.benefits-subtitle {
    color: rgb(102, 102, 102);
    max-width: 800px;
    margin: 0px auto 50px;
}

.benefit-card {
    background: rgb(240, 242, 245);
    padding: 40px 30px;
    border-radius: 20px;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 15px 30px;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 25px;
}

.benefit-card h4 {
    font-weight: 700;
    font-size: 1.4rem;
    color: rgb(34, 34, 34);
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 0.95rem;
    color: rgb(85, 85, 85);
    line-height: 1.6;
    margin-bottom: 0px;
}

@media (max-width: 768px) {
    .benefits-title {
        font-size: 1.8rem;
    }
}

.top-header-bar {
    background-color: rgb(26, 43, 60);
    color: rgb(255, 255, 255);
    padding: 8px 0px;
    font-size: 13px;
}

.top-header-bar a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    margin-left: 18px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-header-bar a:hover {
    color: rgb(33, 99, 175);
}

.custom-main-nav {
    background: rgb(255, 255, 255);
    padding: 12px 0px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
}

.navbar-brand img {
    max-height: 60px;
}

.nav-custom-links .nav-link {
    font-weight: 500;
    font-size: 15px;
    margin: 0px 10px;
    padding: 8px 0px;
    position: relative;
    color: rgb(51, 51, 51) !important;
}

.nav-custom-links .nav-link::after {
    content: "";
    position: absolute;
    width: 0px;
    height: 2px;
    background: rgb(33, 99, 175);
    bottom: 0px;
    left: 0px;
    transition: 0.3s;
}

.nav-custom-links .nav-link:hover::after {
    width: 100%;
}

.btn-header-quote {
    background-color: rgb(138, 48, 33);
    padding: 12px 24px;
    border-radius: 0px;
    font-weight: 700;
    text-transform: uppercase;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    font-size: 14px;
    letter-spacing: 0.5px;
    box-shadow: rgba(33, 99, 175, 0.3) 0px 4px 15px;
    color: rgb(255, 255, 255) !important;
}

.btn-header-quote:hover {
    background-color: rgb(26, 79, 140);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .top-header-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .top-header-bar .right-side {
        margin-top: 5px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .navbar-collapse {
        background: rgb(255, 255, 255);
        padding: 20px;
        margin-top: 15px;
        border-top: 3px solid rgb(33, 99, 175);
    }

    .btn-header-quote {
        width: 100%;
        margin-top: 15px;
    }
}

.custom-hero-section {
    background-size: cover;
    background-position: center center;
    background-image: url("../img/hero-banner.png");
    min-height: 392px;
    display: flex;
    align-items: center;
}

.hero-title {
    font-weight: 800;
    font-size: 2.0rem;
    color: rgb(138, 48, 33);
    line-height: 1.2;
    margin-bottom: 20px;
    margin-top: 24px;
}

.hero-text {
    font-size: 1.0rem;
    color: rgb(68, 68, 68);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-btns .btn {
    padding: 12px 35px;
    font-weight: 700;
    border-radius: 5px;
    text-transform: uppercase;
    margin-right: 10px;
}

.btn-live {
    background-color: rgb(139, 45, 33);
    color: white;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
}

.btn-call {
    background-color: rgb(44, 62, 80);
    color: white;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-circle {
    text-align: center;
}

.circle-img-wrap {
    width: 74px;
    height: 74px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 20px;
    padding: 15px;
}

.circle-img-wrap img {
    max-width: 100%;
    height: auto;
}

.feature-circle span {
    font-weight: 700;
    font-size: 14px;
    color: rgb(51, 51, 51);
    display: block;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .custom-hero-section {
        text-align: center;
        padding: 48px 0px;
        background-position: 100% 0%;
    }

    .hero-text {
        margin: 0px auto 30px;
    }

    .feature-grid {
        margin-top: 50px;
    }
}

@media (max-width: 576px) {
    .hero-btns .btn {
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0px;
    }

    .circle-img-wrap {
        width: 80px;
        height: 80px;
    }
}

.cta-section {
    padding: 60px 0px;
    background-color: rgb(255, 255, 255);
}

.cta-box-container {
    background: center center / cover no-repeat, url("../img/best-online.png");
    border-radius: 80px;
    padding: 35px  0px 53px 0px;
    color: white;
    /* border-bottom: 8px solid rgb(139, 45, 33); */
    position: relative;
    background-repeat: no-repeat;
}

.cta-box-container h2 {
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.cta-box-container p {
    font-size: 0.9rem;
    margin-bottom: 16px;
    opacity: 0.9;
}

.cta-list {
    list-style: none;
    padding: 1px !important;
    display: flex;
    flex-wrap: wrap;
    padding-left: 13% !important;
}

.cta-list li {
    width: 50%;
    margin-bottom: 12px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.cta-list li::before {
    content: "â–¶";
    color: rgb(255, 255, 255);
    font-size: 12px;
    margin-right: 10px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-talk {
    background-color: rgb(139, 45, 33);
    padding: 12px 35px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    margin-top: 0px;
    color: white !important;
}

.btn-quote-white {
    background-color: white;
    padding: 12px 35px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    color: rgb(51, 51, 51) !important;
}

@media (max-width: 991px) {
    .cta-box-container {
        border-radius: 40px;
        padding: 40px 30px;
        text-align: center;
    }

    .cta-list li {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .cta-box-container h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-talk, .btn-quote-white {
        width: 100%;
    }
}

.accounting-section {
    padding: 60px 0px;
}

.accounting-section h2 {
    font-weight: 800;
    font-size: 38px;
    color: rgb(17, 17, 17);
    margin-bottom: 20px;
}

.accounting-section .lead-text {
    color: rgb(68, 68, 68);
    font-size: 15px;
    max-width: 850px;
    margin: 0px auto 40px;
    line-height: 1.6;
}

.help-card {
    background: rgb(236, 236, 236);
    border-radius: 8px;
    padding: 25px;
    min-height: 230px;
    margin: 0px 12px;
}

.help-card h4 {
    font-weight: 700;
    font-size: 20px;
    color: rgb(17, 17, 17);
    margin-bottom: 15px;
}

.help-card p {
    color: rgb(51, 51, 51);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.live-chat-btn {
    background: rgb(122, 31, 31);
    color: rgb(255, 255, 255);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 3px;
    transition: 0.3s;
}

.live-chat-btn:hover {
    background: rgb(94, 21, 21);
    color: rgb(255, 255, 255);
}

.slider-wrapper {
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    transition: transform 0.6s;
}

.slider-item {
    flex: 0 0 33.3333%;
    box-sizing: border-box;
}

@media (max-width: 991.98px) {
    .slider-item {
        flex: 0 0 50%;
    }
}

@media (max-width: 767.98px) {
    .slider-item {
        flex: 0 0 100%;
    }
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 8px;
}

.slider-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgb(153, 153, 153);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    padding: 0px;
    cursor: pointer;
    transition: 0.3s;
}

.slider-dots button.active {
    background-color: rgb(51, 51, 51);
    width: 25px;
    border-radius: 10px;
}

@media (max-width: 767px) {
    .accounting-section h2 {
        font-size: 26px;
    }
}
