@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    font-family: "IBM Plex Sans", sans-serif !important;
    /*font-family: "Open Sans", sans-serif ;*/
}

:root {
    /*--primary-color: #2883DC;*/
    --primary-color: #1270d3;
    --secondary-color: #0f1624;
    --text-color: #101418;
    --accent-color: #2883dc14;
    /*--button-color: #B1F520;*/
    --button-color: #b6f623;
    --border-color: #F2F4F7;
}

a {
    text-decoration: none;
}

ul {
    /*list-style-type: none;*/
    padding: 0;
    margin: 0;
}

h2 {
    color: var(--primary-color);
    font-size: 36px;
    font-weight: 700;
}

p {
    margin-bottom: 0;
}

.notice-bar {
    color: black;
    width: 100%;
    padding: 8px 18px;
    margin-bottom: 12px;
    text-align: center;

    /* Smooth animated gradient */
    background: linear-gradient(90deg,
            var(--primary-color),
            var(--button-color),
            var(--primary-color));
    background-size: 150% 250% 150%;
    /*animation: slideGradient 2s ease-in-out infinite;*/

    position: relative;

    /* Premium soft glow effect */
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
}

.notice-bar p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;

    /* Soft fade animation when it loads */
    animation: fadeIn 0.6s ease;
}

.notice-link {
    color: #fff;
    text-decoration: underline;
    font-weight: 700;
    transition: 0.3s ease-in-out;
}

.notice-link:hover {
    color: #ffe7ff;
}

/* 🔥 Gradient Animation - smoother, softer */
@keyframes slideGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 120% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ✨ Text fade-in for better UX */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 📱 Mobile Optimization */
@media(max-width: 480px) {
    .notice-bar {
        padding: 8px 10px;
        background-size: 220% 220%;
        /* reduce movement */
    }

    .notice-bar p {
        font-size: 13px;
    }
}


.main-header.sticky .notice-bar {
    display: none;
}

.main-header {
    padding: 10px 0;
    padding-top: 0;
    background: #ffffff;
    width: 100%;
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
}

.main-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    background: #101828;
    color: #fff;
    padding-top: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.main-header.sticky .nav-menu ul.nav li a {
    color: #fff;
}

/* Layout */
.head_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    width: 200px;
    height: auto;
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu ul.nav {
    display: flex;
    gap: 15px;
}

.nav-menu ul.nav li a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    padding: 0 10px;
}

.contact_info {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Buttons */
.order-btn {
    background: var(--button-color);
    color: #000;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}

.whatsapp {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #298735;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
}

/* Hamburger Icon */
.menu-toggle {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    display: none;
}

/* Close Button in Mobile Menu */
.close-menu {
    background: none;
    border: none;
    font-size: 26px;
    color: #071d37;
    position: absolute;
    top: 18px;
    right: 18px;
    cursor: pointer;
    display: none;
}

/* Dark Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    display: none;
    z-index: 998;
}

/* When menu is open */
.nav-open .overlay {
    display: block;
}

.nav-open .nav-menu {
    left: 0;
}

/* Prevent background scrolling */
.nav-open {
    overflow: hidden;
}

.mega-menu {
    position: relative;
}

.service-drop {
    width: 600px;
}

.subject-drop {
    width: 240px;
}

.mega-dropdown {
    position: absolute;
    padding: 28px 32px;
    top: calc(100% + 18px);
    left: 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .25s ease;
    z-index: 9999;
}

.mega-menu:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-inner.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;

}

.mega-title {
    font-weight: 700;
    color: #0056d2;
    margin-bottom: 18px;
}

/* Left items */
.mega-col .mega-item {
    display: flex;
    gap: 14px;
    padding: 10px !important;
    text-decoration: none;
    color: #222 !important;
    border-radius: 8px;
    transition: all .3s;
}

.mega-col .mega-item:hover {
    background: var(--accent-color);
}

.mega-item strong {
    font-size: 15px;
    font-weight: 500;
}

.mega-item p {
    font-size: 13px;
    color: #666;
    margin: 4px 0 0;
}

.mega-item:hover strong {
    color: #0056d2;
}

/* Icons */
.mega-item .icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.mega-item .icon.blue {
    background: #e3f2fd;
    color: #1e88e5;
    border: none !important;
}

.mega-item .icon.green {
    background: #e8f5e9;
    color: #43a047;
    border: none !important;
}

.mega-item .icon.purple {
    background: #f3e5f5;
    color: #8e24aa;
    border: none !important;
}

.mega-item .icon.orange {
    background: #fff3e0;
    color: #fb8c00;
    border: none !important;
}

.mega-item .icon.red {
    background: #fdecea;
    color: #e53935;
    border: none !important;
}

.mega-item .icon.teal {
    background: #e0f2f1;
    color: #00897b;
    border: none !important;
}

/* Right list */
.industry-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.industry-list li {
    padding: 8px 0;
    font-size: 14px;
    color: #333;
}

.industry-list i {
    width: 20px;
    color: #0056d2;
}

/* =================hero section-================== */
.hero {
    padding: 100px 0;
    padding-top: 200px;
}

.hero-title {
    font-size: 40px;
    font-weight: 700;
}

.hero-title span {
    color: var(--primary-color);
}

.hero-usp {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 40px;
}

.hero-usp .info-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #ffffff;
    padding: 10px 15px;
    border: 1px solid rgba(99, 99, 99, 0.3);
}

.hero-usp .info-box i {
    font-size: 26px;
    color: var(--primary-color);
}

.hero-usp .info-box h5 {
    font-size: 14px;
    margin-bottom: 0;
}

.hero-usp .info-box p {
    font-size: 12px;
    margin-bottom: 0;
}

.hero_review_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
    background-color: #ffffff;
    padding: 10px 35px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.hero_review_wrap .r_card {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero_review_wrap .r_card .content,
.info-text {
    line-height: 12px;
}

.hero_review_wrap .r_card span {
    font-size: 18px;
    line-height: 22px;
    color: #2A2A2A;
    text-align: left;
    display: block;
}

/* ============expert tutors============ */
.expert_wrap .expert_card {
    width: 100%;
    border-radius: 12px;
    background-color: var(--accent-color);
    border: none;
    padding: 25px 12px;
}

.expert_card .top_head {
    display: flex;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    align-items: center;
}

.expert_card .top_head img {
    width: 63px;
    height: 63px;
    border-radius: 100%;
    background-color: #f6f6fa;
}

.expert_card .top_head .name {
    font-size: 1rem;
    color: #2c2c2c;
    font-weight: 700;
    line-height: 1;
}

.expert_card .top_head .detail {
    font-size: 14px;
    color: #8a8a8a;
    font-weight: 400;
    width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.expert_card .top_head .rating--wrap {
    display: flex;
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
    width: 120px;
}

.expert_card .top_head .rating--wrap i {
    background: linear-gradient(90deg, #007a55 0%, #00b67a 50%, #6ee7b7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.expert_card .detail-container {
    color: #2c2c2c;
    font-size: 14px;
    height: 150px;
    margin-bottom: 30px;
    padding: 0 0 20px;
    margin-top: 20px;
}

.expert_card .bottom-wrap {
    display: flex;
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
    align-items: center;
    justify-content: space-between;
    -webkit-column-gap: 8px;
    -moz-column-gap: 8px;
    column-gap: 8px;
}

.expert_card .bottom-wrap .left-main {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}

.expert_card .bottom-wrap .left-main .expert-stat {
    display: flex;
    align-items: center;
    font-size: 11px;
    color: #8a8a8a;
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
}

.left-main .expert-stat img {
    width: 12px;
}

.left-main .expert-stat span {
    color: #2c2c2c;
    font-weight: 700;
}

.expert_card .bottom-wrap .hire-btn {
    background: var(--primary-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border-radius: 4px;
}

/* ============gurantee============ */
.gurantee_card {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    -webkit-box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2509803922);
    box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2509803922);
    padding: 30px 20px;
    position: relative;
    display: block;
    overflow: hidden;
}

.gurantee_wrap .slick-slide {
    margin: 0 12px;
}

.gurantee_wrap .slick-list {
    margin: 0 -12px;
    overflow: hidden !important;
}

.gurantee_card .circle {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 200px;
    background: var(--accent-color);
    border-radius: 0 0 0 100%;
    z-index: -1;
}

.gurantee_card .card-image img {
    height: auto;
    width: 90px;
    margin: 0 auto 20px;
}

.gurantee_card .title {
    font-size: 22px;
    line-height: 26px;
    text-align: center;
    color: #000000;
}

.gurantee_card .content {
    margin: 10px 0 0;
    padding: 0 15px;
    color: #000000;
    height: 80px;
    overflow: auto;
    text-align: left;
    font-size: 14px;
}

.gurantee_wrap .slick-prev,
.gurantee_wrap .slick-next {
    height: 40px;
    width: 40px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    transition: 0.25s ease-in-out;
}

.gurantee_wrap .slick-next::before,
.gurantee_wrap .slick-prev::before {
    content: "";
    background: url(../images/left.svg) no-repeat left;
    background-size: contain;
    width: 40px;
    height: 40px;
    display: block;
    opacity: 1;
    filter: opacity(0.5);
}

.slick-next::before {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.gurantee_wrap .slick-prev {
    left: -50px;
}

/* Right Arrow */
.gurantee_wrap .slick-next {
    right: -50px;
}

/* ===========cta=========== */
.plagarism-free {
    display: flex;
    align-items: center;
}

.plagarism-free span {
    padding: 10px;
    margin-right: 20px;
    display: block;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(47, 47, 47, .1);
}

.plagarism-free span img {
    width: 100%;
}

.cta-btn {
    background: rgb(255, 119, 0);
    font-size: 16px;
    border-radius: .35rem;
    padding: .35rem 1rem;
    color: #fff;
    font-weight: 600;
}

/* ===steps======== */
.process-box .circle {
    height: 150px;
    width: 150px;
    border-radius: 20px;
    border: 6px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    background: #fff;
    rotate: 20deg;
}

.process-box .circle i {
    font-size: 42px;
    color: #0066cc;
    rotate: 341deg;
}


.step-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--button-color);
    color: #000;
    font-weight: bold;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 18px;
}

.process-box p {
    font-size: 15px;
    max-width: 300px;
    margin: 0 auto;
}


.process-section .line::before {
    content: '';
    height: 3px;
    background: linear-gradient(135deg, #0066cc, #f97415);
    margin-top: 8px;
    margin-bottom: 10px;
    width: 70%;
    top: 23%;
    position: absolute;
    z-index: -1;
}

/* ============counter============= */
.counter_wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}

.counter-icon {
    font-size: 45px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.counter {
    font-weight: 700;
    font-size: 40px;
    color: #222121;
}

.counter_wrap .counter-box {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: #bebebe33 0px 2px 10px 0px;
}

.counter-text {
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: -5px;
    color: #555;
}

/* =============subject=========== */
.subject-section {
    background: var(--accent-color);
    position: relative;
    overflow: hidden;
}

/* Purple badge */
.bg-light-purple {
    background: #e6dbff;
}

.text-purple {
    color: #6a4ff6;
}

/* Left side border text box */
.left-border-text {
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
    color: #555;
    font-size: 15px;
}

/* Button */
.btn-pink {
    background: var(--button-color);
    color: #000;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-pink:hover {
    background: #e01c61;
    color: #fff;
}

/* Subject Cards */
.subject-card-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.subject_card {
    background: #ffffff;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    padding: 25px;
    box-shadow: 0px 6px 25px rgba(122, 90, 244, 0.1);
    position: relative;
    z-index: 1;
    transition: 0.3s ease;
}

.subject_card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 12px 35px rgba(122, 90, 244, 0.15);
}

/* icons */
.icon-img {
    width: 50px;
    height: 50px;
}

/* Title */
.section-title {
    line-height: 1.3;
    font-size: 40px;
}



.section-heading {
    font-size: 32px;
    color: #333;
}



.seo-section {
    background: #ffffff;
    padding: 80px 0;

}

.seo-wrapper {
    /*max-width: 1100px;*/
    margin: auto;
    position: relative;
}

/* RIGHT SIDE SCROLL PANEL */
.seo-scroll {
    max-height: 374px;
    overflow-y: auto;
    padding-right: 22px;
}

/* Chrome / Edge / Safari */
.seo-scroll::-webkit-scrollbar {
    width: 6px;
}

.seo-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.seo-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg,
            #2883dc,
            #b1f520);
    border-radius: 10px;
}

/* Firefox */
.seo-scroll {
    scrollbar-width: thin;
    scrollbar-color: #2883dc transparent;
}

.seo-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 28px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.seo-card h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 14px;
}

.seo-card p {
    font-size: 15.5px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 10px;
}

.seo-scroll {
    background: var(--accent-color);
    padding: 30px;
    border-radius: 16px;
    border-right: 2px solid rgba(0, 0, 0, 0.06);
}

.seo-card ul {
    list-style: none;
    padding-left: 0;
    margin: 16px 0 20px 0;
}

.seo-card ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 4px;
    font-size: 16px;
    line-height: 1.6;
    color: #1f2937;
    /* dark readable text */
}

.seo-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #2563eb;
    /* primary / brand blue */
    font-size: 16px;
    line-height: 1.6;
}


/* ================referencing=========== */

.referencing-scroll .ref-card {
    background: #fff;
    padding: 16px;
}

/* Make cards grid when screen is medium+ */

.referencing-scroll {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}


/* Hide scrollbar */


/* =============help strip========= */
.help-strip {
    background: #EDF4F9;
    position: relative;
    -webkit-box-shadow: 0px 5px 11px -6px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 5px 11px -6px rgba(0, 0, 0, 0.2);
    color: #1D1D1D;
}

.help-strip .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.help-strip:before {
    width: 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    background: #EFF3ED;
    content: "";
    right: 0;
}

.left-hlf {
    padding: 20px 0;
    width: 50%;
}

.left-hlf li {
    display: inline-block;
}

.left-hlf li:before {
    content: "";
    width: 42px;
    height: 42px;
    display: inline-block;
    vertical-align: middle;
    background: url(../images/file.svg) no-repeat;
    margin-right: 10px;
}

.left-hlf li p {
    display: inline-block;
    vertical-align: middle;
}

.left-hlf .exprt {
    margin-left: 30px;
    padding-left: 30px;
    position: relative;
}

.left-hlf .exprt:before {
    background: url(../images/Group.svg) no-repeat;
}

.left-hlf li span {
    font-size: 1.5625rem;
    display: block;
}

.left-hlf .exprt:after {
    position: absolute;
    left: 0;
    top: 50%;
    bottom: 50%;
    margin: auto;
    content: "";
    background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), color-stop(50%, #b9b9b9), to(#fff));
    background-image: linear-gradient(to top, #fff, #b9b9b9 50%, #fff);
    width: 1px;
    height: 55px;
}

.right-hlf {
    position: relative;
    width: 50%;
}

.dir-help {
    vertical-align: middle;
    background: var(--primary-color);
    margin-right: 60px;
    padding: 30px 0px 30px 20px;
    position: relative;
    font-size: 1.125rem;
    color: #fff;
    width: 70px;
    display: inline-block;
    border-radius: 5px 0 0 5px;
}

.dir-help:before {
    content: "";
    display: inline-block;
    width: 0;
    height: 100%;
    border: 0 solid transparent;
    border-bottom-width: 55px;
    border-top-width: 54px;
    border-left: 30px solid var(--primary-color);
    position: absolute;
    left: 100%;
    top: 0;
    bottom: 0;
}

.callto {
    display: inline-block;
    vertical-align: middle;
}

.right-hlf p {
    font-size: 1.4375rem;
}

.right-hlf p a {
    color: #1D1D1D;
}

/* ============tab content========== */
.service-section .nav-link {
    color: #000000;
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    background: #fff;
    padding: 10px 14px;
    margin-bottom: 8px;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: 0.3s;
    font-weight: 500;
    cursor: default;
}

.service-list li:hover {
    background: #f8f9fa;
}

.columns-3 {
    columns: 2;
}

@media (min-width: 768px) {
    .columns-3 {
        columns: 3;
    }
}

#toggleList i {
    transition: transform 0.3s;
}

/* =============degree section============ */

.degree-section {
    background: #f5f9ff;
    /* soft blue-white like screenshot */
}

.degree-table th {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color)1 !important;
}

.degree-table tr td {
    padding: 16px;
    font-size: 16px;
}

.degree-table tbody tr:hover {
    background: #f1f5ff;
    transition: 0.2s ease-in-out;
}

.degree-table tbody tr:nth-child(even) {
    background: #f7f9fc !important;
}

.btn-primary {
    background-color: #005ac1;
    border-color: #005ac1;
}

.btn-primary:hover {
    background-color: #004a9e;
    border-color: #004a9e;
}

/* ===============cta============= */
.banner-customer__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-customer__img-left {
    width: 240px;
}

.banner-customer__info {
    width: 645px;
}

.banner-customer__title {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    line-height: 130%;
    text-align: center;
}

.banner-customer__subtitle {
    margin: 0 auto 44px;
    color: #fff;
    width: 510px;
    text-align: center;
}

.banner-customer__buttons {
    display: flex;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: center;
    margin: 0 auto 56px;
    width: 540px;
}


.banner-customer span {
    -webkit-font-feature-settings: "clig" off, "liga" off;
    font-feature-settings: "clig" off, "liga" off;
    color: #6d7380;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    margin: 8px 0;
}

.banner-customer__chat {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.banner-customer__chat-icon {
    height: 50px;
    width: 50px;
}

.banner-customer__chat-message {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    background-color: #f7f5f2;
    border-radius: 16px 16px 16px 4px;
    color: #6d7380;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 42px;
    justify-content: center;
    padding: 0 15px;
}

.banner-customer__chat-message strong {
    color: #393a40;
    font-weight: 600;
}

.banner-customer__img-right {
    width: 240px;
}

.banner-customer__img-mobile {
    position: relative;
    display: none;
}

/* ===reviews========== */

.review_card {
    border-radius: 10px;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    padding: 25px;
    margin: 45px 15px 5px 5px;
    color: #1d1d1d;
    text-align: center;
    background-color: var(--accent-color);
}

.review_card .quote {
    width: 50px;
    height: 50px;
    /*background: var(--primary-color);*/
    margin: -55px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review_card .rating-icon {
    width: 14px;
    height: 14px;
    background: url(../images/rating-star.svg) no-repeat;
    background-size: 14px;
    margin: 0 1px;
}

.review_card .content {
    cursor: pointer;
    font-size: 16px;
    line-height: 25px;
    color: #333333;
    height: 102px;
    overflow: auto;
    padding: 0 1px 0 0;
}

.review_card .rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 1px;
    margin: 24px 0 0;
}

.review_card .username {
    font-size: 16px;
    line-height: 19px;
    margin: 8px 0 0;
}

.review_card .user-city {
    font-size: 14px;
    line-height: 18px;
    color: #2a2a2a;
}

.slider-controls button {
    background: none;
    border: none;
    margin: 0 10px;
}

.slider-controls i {
    font-size: 45px;
    color: var(--primary-color);
    cursor: pointer;
    transition: 0.3s ease;
}



/* =================faq============= */
.faq-section {
    background: var(--accent-color);
}

.faq-item {
    border: 1px solid #cdcdcd;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
}

.faq-question {
    padding: 17px 15px;
    margin: 0;
    font-size: 16px;
    color: #343434;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    font-size: 12px;
    transition: transform 0.4s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 12px 16px;
    font-size: 15px;
    color: #000;
}

.hire-tutor-section .tutor-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
    border: 1px solid var(--border-color);
}

.hire-tutor-section .tutor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hire-tutor-section {
    background-color: #eef5fc;
}

.hire-tutor-section .btn-success {
    background-color: #b1f520;
    border-color: #b1f520;
    font-weight: 600;
    border-radius: 8px;
}

.hire-tutor-section .btn-success:hover {
    background-color: #1ea85c;
}



/* ==============footer============== */
footer {
    background: #101828;
}

/* Visibility */
.hide-mobile {
    display: block;
    margin: 50px 0;
}

.hide-desktop {
    display: none;
}



/* WhatsApp Bar */
.whatsapp-section {
    background: #ffffff;
    border-top: 1px dashed #ccc;
    border-bottom: 1px dashed #ccc;
    padding: 18px 0;
    margin-bottom: 20px;
}

.whatsapp-content {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
}

.whatsapp-content a {
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #222;
}

.whatsapp-content i {
    font-size: 24px;
    color: green;
}



/* Desktop Columns */
.desktop-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.footer-column {
    width: calc(16.5% - 20px);
}

.footer-column h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--button-color);
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #ccc;
    font-size: 14px;
}

/* Mobile Footer Accordion */
.footer-mobile .footer-accordion {
    border-bottom: 1px solid #ddd;
    padding: 0;
}

.footer-mobile .accordion-btn i {
    transition: all .2s;
}

.footer-mobile .accordion-btn.open i {
    transform: rotate(230deg);
    /* + to × */
}

.footer-mobile .accordion-btn {
    width: 100%;
    background: none;
    border: 0;
    font-size: 17px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.footer-mobile .accordion-btn.open {
    border-bottom: 1px solid #d9d9d9;
}

.footer-mobile .accordion-content {
    list-style: none;
    margin: 0;
    display: none;
    padding: 0 0;
}



.footer-mobile .accordion-content li {
    margin: 8px 0;
}

.footer-mobile .accordion-content li:last-child {
    padding-bottom: 14px;
}

.footer-mobile .accordion-content a {
    color: #d9d9d9;
    text-decoration: none;
    font-size: 14px;
}

/* Bottom Footer */
.bottom-footer {
    padding: 20px 0;
}

.bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    width: 240px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    /* spacing between icons */
}

/* icon wrapper link */
.social-links a i {
    width: 30px;
    height: 30px;
    font-size: 16px;
    border: 1px solid var(--button-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    gap: 5px;
    color: var(--button-color);
    /* icon color */
    transition: all 0.25s ease;
}

/* hover effect */
.social-links a i:hover {
    background: var(--button-color);
    /* bootstrap primary color */
    color: #000;
    /* icon turns white */
    border-color: var(--button-color);
    transform: translateY(-2px);
}


.footer-brand-mark {
    text-align: center;
    font-size: 140px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;

    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: 1px solid #aeff004d;

    pointer-events: none;
    user-select: none;
}

/*----------my css css-----*/
.order-btn {
    position: relative;
    color: #000;
    transition: background-color 0.35s ease, color 0.35s ease;
}

/* text + icon movement */


.review-note {
    display: flex;
    align-items: center;
    gap: 6px;
}

.center {
    justify-content: center;
    text-align: center;
}

.review-note p {
    margin: 0;
}

.rating-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url("star-empty.svg") no-repeat center;
}

.rating-icon.active {
    background: url("star-full.svg") no-repeat center;
}

.rating-icon.half {
    background: url("star-half.svg") no-repeat center;
}

.rating--wrap {
    display: flex;
    justify-content: center;
    /* centers stars horizontally */
    align-items: center;
    /* centers vertically */
    gap: 4px;
    margin: 8px 0;
    /* optional spacing */
}

.rating--wrap i {
    font-size: 16px;
    background: linear-gradient(90deg, #ff7a00, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating--wrap {
    display: flex;
    justify-content: center;
    /* centers stars horizontally */
    align-items: center;
    /* centers vertically */
    gap: 4px;
    margin: 8px 0;
    /* optional spacing */
}

.rating--wrap i {
    font-size: 16px;
    background: linear-gradient(90deg, #ff7a00, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.review-meta {
    opacity: 0.8;
}

.review_card .review-meta {
    font-size: 12px !important;
    color: #737a81 !important;
    text-align: center;
    margin-top: 6px;
    line-height: 1.4;
}

.review_card .review-meta span {
    font-weight: 400 !important;
    color: #737a81 !important;
}

.review-note {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 6px;
    width: 100%;
    padding: 8px 12px;

    text-align: center;
}

.review-note img {
    width: 16px;
    height: 16px;
    display: block;
    /* iOS fix */
    margin-top: 0;
    /* prevents icon drift */
    flex-shrink: 0;
}

.review-note span {
    font-size: 12px;
    line-height: 1.3;
    color: #737a81;

    display: inline-block;
    /* iOS text centering fix */
    max-width: 100%;
}

/* Mobile optimisation */
@media (max-width: 480px) {

    .review-note span {
        line-height: 1.4;
    }
}

.footer__privacy-term {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    font-size: 14px;
}

.footer__privacy-term a {
    color: #737a81;
    padding: 0 10px;
    position: relative;
    white-space: nowrap;
}

/* white pipe separator */
.footer__privacy-term a:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: -4px;
    color: #ffffff;
    opacity: 0.7;
}

.footer__privacy-term a:hover {
    color: #d9d9d9;
}

.footer-disclaimer {
    font-size: 12px;
    color: #ccc;
    text-align: center;
    line-height: 1.6;
    margin-top: 20px;
}

.footer-disclaimer p {
    margin: 0;
}

.footer-disclaimer strong {
    font-weight: 600;
}

@media (max-width: 576px) {
    .footer-disclaimer {
        font-size: 11px;
        padding: 0 15px;
    }
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #b1f520;
    color: #101828;
    border: none;
    font-size: 18px;
    cursor: pointer;
    z-index: 99999;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:active {
    transform: scale(0.95);
}

/* Mobile */
@media (max-width: 768px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 70px;
        right: 16px;
        font-size: 16px;
    }
}


/* ================= ACADEMIC LEVELS SECTION ================= */
.academic-levels {
    background: #f7faff;
    padding: 60px 14px;
    width: 100%;
}

.al-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* ---------- Headings ---------- */

.al-title {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    margin-bottom: 10px;
}

.al-subtitle {
    font-size: 15px;
    color: #555;
    max-width: 760px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* ---------- Grid ---------- */

.al-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

/* ---------- Cards ---------- */

.al-card {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 10px;
    border-radius: 18px;
    padding: 28px 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.al-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.al-icon {
    height: 56px;
    width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #b6f623;
    background: #b6f62333;
}

.al-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.al-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* ---------- Services ---------- */

.al-services {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}


/* ---------- CTA ---------- */

.al-cta {
    margin-top: 36px;
}

.al-cta p {
    font-size: 15px;
    margin-bottom: 12px;
    color: #333;
}

.al-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    background: #2883dc;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s ease;
}

.al-btn:hover {
    background: #1f6fc0;
}

/* ================= MOBILE UX RULES ================= */

@media (max-width: 768px) {

    .al-title {
        font-size: 22px;
    }

    .al-subtitle {
        display: none;
        /* ❌ hide paragraph on mobile */
    }

    .al-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .al-card {
        padding: 18px 14px;
    }

    .al-card p {
        display: none;
        /* ❌ hide card text on mobile */
    }

    .al-services {
        display: none;
        /* optional: cleaner mobile UX */
    }
}

.al-services-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.al-services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.al-services .service-item {
    background: #2883dc14;
    color: #000;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    white-space: nowrap;
    border: 1px solid #2883dc;
}

.hidden {
    display: none !important;
}

.al-show-more {
    margin-top: 16px;
    text-align: center;
}

#alShowMoreBtn {
    padding: 10px 22px;
    border-radius: 26px;
    border: 2px solid #2883dc;
    background: #fff;
    color: #2883dc;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all .3s;
}

#alShowMoreBtn:hover {
    background: var(--primary-color);
    color: #fff;
}


/* Mobile optimization */
@media (max-width: 768px) {
    .al-services .service-item {
        font-size: 12px;
        padding: 7px 12px;
    }
}






/* ======================================au page================= */
.au_hero {
    padding-top: 180px;
    padding-bottom: 60px;
    color: #fff;
    background: #1270d3;
}

.au_services {
    padding: 30px 0 50px;
}

.common-readable {
    position: relative;
    height: 40px;
    overflow: hidden;
    -webkit-transition: height 0.3s ease;
    transition: height 0.3s ease;
    text-align: center;
    margin: 20px 0;
    color: #333333;
    font-size: 15px;
    line-height: 20px;
}

.common-readable .common-know-more {
    display: inline-block;
    font-size: 15px;
    line-height: 20px;
    color: var(--primary-color);
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 0 2px;
    cursor: pointer;
    background: #fff;
}


.targeted_seo {
    background: #F4FAFD;
    padding: 20px 30px;
    border-radius: 1.6rem;
    position: relative;
    overflow: hidden;
}

.targeted_seo:after {
    position: absolute;
    content: '';
    background-image: url(../images/ellipse.svg);
    right: -2px;
    top: 0;
    margin: auto;
    left: auto;
    transform: rotate(0deg);
    bottom: auto;
    width: 20rem;
    background-size: 100%;
    background-position: center;
    height: 100%;
}

.service_cont_side ul {
    padding-left: 1.5rem;
    text-align: left;
}

.service_cont_side ul li {
    margin: 10px 0;
    position: relative;
    align-items: flex-start;
}

.service_cont_side ul li:after {
    position: absolute;
    content: '';
    background: url(../images/li-check.svg) no-repeat center center / cover;
    width: 1rem;
    height: 1rem;
    left: -1.4rem;
    top: 0.3rem;
}

section.pricing-area .pricing {
    border-radius: 17px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .103);
    margin-top: 50px;
    overflow: hidden;
}

section.pricing-area .pricing .h5 {
    background: linear-gradient(285deg, hsl(220 40% 10%) 0%, hsl(220 35% 18%) 50%, hsl(211 60% 25%) 100%);
    border-radius: 17px 17px 0 0;
    color: #fff !important;
    display: block;
    padding: 20px;
    text-align: center;
}

s {
    text-decoration: line-through;
}

section.pricing-area .pricing .box {
    background: #fff;
    padding: 30px 20px 40px;
}

section.pricing-area .pricing .box p {
    font-size: 14px;
    line-height: 26px;
    margin-bottom: .5rem;
}

section.pricing-area .pricing .box p i {
    font-size: 18px;
    margin-right: 5px;
}

.pricing-area .price-single svg {
    flex-shrink: 0;
}

section.cta-banner img {
    bottom: 0;
    left: 40px;
    position: absolute;
    top: auto;
}

.highlight-yellow {
    color: #fff !important;
}

section.cta-banner .container {
    background: #101828;
    border-radius: 23px;
    color: #fff;
    margin: 20px auto 0;
    padding: 54px 0;
    position: relative;
}

.cards-slider-section {
    padding: 60px 0;
    padding-top: 100px;
}

.left-box .service-slider-cards .slider-card {
    /*background: linear-gradient(180.02deg, rgba(54, 106, 164, 0.8) 26.68%, rgba(179, 210, 245, 0.8) 107.54%);*/
    background: #101828;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(23, 18, 43, 0.2509803922);
    box-shadow: 0px 0px 15px 0px rgba(23, 18, 43, 0.2509803922);
    padding: 15px 25px 35px;
}

.service-slider-cards .slider-card .card-heading {
    font-size: 22px;
    line-height: 140%;
    color: #FFFFFF;
    text-align: center;
    display: block;
    margin: 0 0 16px 0;
}

.service-slider-cards .slider-card .linking-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 17px;
}

.service-slider-cards .slider-card .linking-col .card-link {
    border-radius: 6px;
    background: var(--button-color);
    color: var(--secondary-color);
    font-size: 16px;
    line-height: 100%;
    padding: 17px 20px;
    text-align: left;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.right-box .story_box {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(0, 1fr) 25px minmax(0, 1fr);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
}

.right-box .story_box .story_box_inner .story_box_title {
    font-size: 18px;
    line-height: 24px;
    padding: 12px 0;
    text-align: center;
    display: block;
    color: #2A2A2A;
    position: relative;
}

.right-box .story_box .story_box_inner {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2509803922);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2509803922);
    border-radius: 12px;
    overflow: hidden;
    color: #1d1d1d;
    background: #fff;
}

.right-box .story_box .story_box_inner .inner-div {
    position: relative;
    width: 100%;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    min-height: 145px;
}

.right-box .story_box .story_box_inner .inner-div .card-front,
.right-box .story_box .story_box_inner .inner-div .card-back {
    backface-visibility: hidden;
    width: 100%;
    height: auto;
    cursor: pointer;
    margin: 0;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

img:not([src]) {
    visibility: hidden !important;
}

.right-box .story_box .story_box_inner .inner-div .card-back .border-div {
    border: 1px solid #FE4C49;
    border-radius: 16px;
    padding: 10px;
}

.right-box .story_box .story_box_inner .inner-div .card-back .border-div .city-details {
    max-height: 95px;
    overflow: auto;
}

.right-box .story_box .story_box_inner .inner-div .card-back {
    padding: 20px 20px 0;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.right-box .story_box .story_box_inner .inner-div:hover .card-front {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

.right-box .story_box .story_box_inner .inner-div:hover .card-back {
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

/* Dots */
.slick-dotted.slick-slider {
    margin-bottom: 30px;
}

.service-slider-cards .slick-dots {
    position: absolute;
    bottom: -25px;
    list-style: none;
    display: block;
    text-align: left;
    left: 150px;
    padding: 0;
    margin: 0;
    width: auto;
}

.service-slider-cards .slick-dots li {
    position: relative;
    display: inline-block;
    height: 5px;
    text-align: center;
    width: 15px;
    /*background: #0CA0AC;*/
    background: var(--secondary-color);
    margin: 0 3px;
    padding: 0;
    cursor: pointer;
}

.service-slider-cards .slick-dots li.slick-active {
    background: var(--primary-color);
}

.service-slider-cards .slick-dots li button {
    display: none;
    border: 0;
    background: transparent;
    height: 20px;
    width: 20px;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    color: transparent;
    padding: 5px;
    cursor: pointer;
}

.service-slider-cards .slick-dots li button:hover,
.service-slider-cards .slick-dots li button:focus {
    outline: none;
}

.service-slider-cards .slick-dots li button:hover:before,
.service-slider-cards .slick-dots li button:focus:before {
    opacity: 1;
}

.service-slider-cards .slick-dots li button:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    height: 5px;
    border-radius: 100%;
    text-align: center;
    opacity: 0.25;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 15px;
    border-radius: 0;
    background: #0CA0AC;
    opacity: 1;
}

.service-slider-cards .slick-dots li.slick-active button:before {
    background: #f25f5c;
    opacity: 1;
}

/*Start Responsive*/
@media (max-width: 480px) {
    .service-slider-cards .slick-dots {
        width: 100%;
        text-align: center;
    }
}

.stats_card {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 50px 25px;
    color: #1d1d1d;
    text-align: center;
}

.stats_card .card_title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stats_card p {
    font-size: 16px;
    line-height: 24px;
    color: #555555;
}

.monthly_trafic_sec {
    background: url(../images/traffic.gif) no-repeat center center;
    margin: 0 2%;
    border-radius: 1.5rem;
    background-size: cover;
}

.trafic_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    margin-bottom: 30px;
}

.value_box {
    max-width: 50%;
    padding: 0 5rem 0 0;
    text-align: left;
}

.value_box figure {
    display: flex;
    margin-bottom: 0;
    align-items: center;
}
.value_box figure img{
    height: 44px;
}
.value_box figcaption {
    font-size: 32px;
    font-weight: 800;
    color: #161616;
    margin-left: 1rem;
}

.products_box {
    border: .1rem solid #CBE5FF;
    background: #FFFFFF;
    padding: 30px;
    border-radius: 1.5rem;
    height: 100%;
}

.prod-heading .bg-icon {
    background: #F3F3F3;
    display: flex;
    padding: .5rem;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}
.prod-heading .bg-icon img{
    height: 40px;
    width: 40px;
}
.products_text h3 {
    font-size: 20px;
    margin-top: 1.5rem;
    color: #161616;
}

.products_text p {
    font-size: initial;
}

.nav_arrow .swiper-button-prev,
.nav_arrow .swiper-button-next {
    margin: 0 .5rem;
    position: static;
    width: 40px;
    filter: drop-shadow(0 0 5px rgba(168, 168, 168, 0.2));
    background: #fff;
    height: 40px;
    border-radius: 100%;
    color: #333;
    font-size: 1.3rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
}

.trafic_slider .nav_arrow .swiper-button-next {
    right: -5rem;
}

.trafic_slider .nav_arrow .swiper-button-prev {
    left: -5rem;
}

.trafic_right {
    overflow: hidden;
    padding: 0 5rem;
}

.products_slider.swiper-backface-hidden .swiper-slide {
    height: auto;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 16px;
    font-weight: 600;
}

.order-steps .sample-process {
    -webkit-box-shadow: 0px 3px 5px 0px rgba(51, 204, 111, 0.2);
    box-shadow: 0px 3px 5px 0px rgba(51, 204, 111, 0.2);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    background: #fff;
    padding: 10px;
    margin: 0 0 20px;
}

.order-steps .sample-process .right-head {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    cursor: pointer;
}

.order-steps .sample-process .right-head .stepno {
    font-size: 20px;
    line-height: 24px;
    color: #fff;
    position: relative;
    background: var(--primary-color);
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 9px;
}

.order-steps .sample-process .right-head h3 {
    font-size: 20px;
    line-height: 26px;
    color: #2a2a2a;
    margin-bottom: 0;
}

.order-steps .sample-process .right-head:after {
    content: "";
    background: url(../images/down-arrow.svg) no-repeat;
    position: absolute;
    height: 7px;
    width: 13px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 10px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.order-steps .sample-process .order-detail {
    display: none;
    padding: 0 0 0 12%;
    font-size: 15px;
    line-height: 20px;
    margin: 0;
    color: #3E4657;
}

.essay-writing .content_navigatation_area {
    position: relative;
    margin: 45px 0 0;
    padding: 20px;
    border-radius: 20px;
    /* background: #F1F5EA; */
    background: var(--accent-color);
}

.essay-writing .content_navigatation_area .content_area {
    height: 456px;
    overflow: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 0 34px 0 0;
}

.essay-writing .content_navigatation_area .content_area .left,
.essay-writing .content_navigatation_area .content_area .right {
    width: 48%;
    color: #2A2A2A;
}

.essay-writing .content_navigatation_area .content_area .left .seo-heading,
.essay-writing .content_navigatation_area .content_area .right .seo-heading {
    font-size: 20px;
    line-height: 24px;
    padding: 0 0 14px;
    margin: 0 0 15px;
    border-bottom: 1px solid #D8D8D8;

}

.essay-writing .content_navigatation_area .content_area .left p,
.essay-writing .content_navigatation_area .content_area .right p {
    font-size: 15px;
    line-height: 20px;
    margin: 0 0 20px;
}

.left {
    float: left;
}

.right {
    float: right;
}

.essay-writing .content_navigatation_area .content_area .left table,
.essay-writing .content_navigatation_area .content_area .right table {
    display: block;
    overflow: auto;
    border-collapse: collapse;
    width: 100%;
    margin: 0 0 20px;
    padding: 0 3px 3px 0;
}

.essay-writing .content_navigatation_area .content_area .left table::-webkit-scrollbar-track,
.essay-writing .content_navigatation_area .content_area .right table::-webkit-scrollbar-track {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0px
}

.essay-writing .content_navigatation_area .content_area .left table::-webkit-scrollbar,
.essay-writing .content_navigatation_area .content_area .right table::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 10px
}

.essay-writing .content_navigatation_area .content_area .left table::-webkit-scrollbar-thumb,
.essay-writing .content_navigatation_area .content_area .right table::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #979797
}

.essay-writing .content_navigatation_area .content_area .right table tr td {
    color: #2A2A2A;
    border: 1px solid #2A2A2A;
    padding: 10px;
    font-size: 14px;
    font-weight: normal;
    white-space: nowrap;
}

.essay-writing .content_navigatation_area .content_area .right table p {
    margin-bottom: 0;
}

.essay-writing .content_navigatation_area .content_area::-webkit-scrollbar {
    width: 6px;
    height: 8px;
    background: #fff;
    border-radius: 10px
}

.essay-writing .content_navigatation_area .content_area::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #979797
}

.essay-writing .content_navigatation_area .content_area::-webkit-scrollbar-track {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0px
}

.essay-writing .content_navigatation_area .content_area .right ul {
    padding: 0 0 0 30px;
    margin: 0 0 20px;
    list-style: disc;
}





/*=============blog-page==========*/

.all-blogs{
    margin-top: 100px;
}


.pagination-modern .page-link {
border-radius: 12px;
margin: 0 4px;
border: none;
background: #f3f4f6;
color: #111;
transition: all 0.25s ease;
}

.pagination-modern .page-link:hover {
background: #ffb800;
color: #000;
transform: translateY(-2px);
}

.pagination-modern .page-item.active .page-link {
background: #ffb800;
color: #000;
font-weight: 600;
box-shadow: 0 6px 14px rgba(255,184,0,.35);
}


.blog-card{
    padding: 20px;
    height: 100%;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
.blog-card-image{
    height: 140px;
    border-radius: 8px;
    overflow: hidden;
}

.blog-card-image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.blog-card-title{
    font-size: 18px;
    margin: 10px 0;
}
.categories-box a, .recent-blogs-box a{
    color: #333;
}
.blog-wrapper{
    padding: 160px 0 100px;
}

#nativeShareBtn{
    font-size: 16px;
    cursor: pointer;
}

/* ===== TOC ACCORDION ===== */

/*.toc-container {*/
/*    border: 1px solid #ddd;*/
/*    border-radius: 10px;*/
/*    overflow: hidden;*/
/*    background: #fafafa;*/
/*}*/

/*.toc-header {*/
/*    padding: 12px 16px;*/
/*    font-weight: 600;*/
/*    cursor: pointer;*/
/*    background: #f5f5f5;*/
/*}*/

/*.toc-list {*/
/*    list-style: none;*/
/*    margin: 0;*/
/*    max-height: 0;*/
/*    overflow: hidden;*/
/*    transition: max-height 0.3s ease;*/
/*}*/

/*.toc-list.open {*/
/*    max-height: 500px;*/
/*    padding: 12px 16px;*/
/*    overflow-y: auto;*/
/*}*/

/*.toc-list li {*/
/*    margin-bottom: 6px;*/
/*}*/

/*.toc-list li.sub {*/
/*    padding-left: 18px;*/
/*    font-size: 0.95em;*/
/*}*/

/*.toc-list a {*/
/*    text-decoration: none;*/
/*    color: #333;*/
/*}*/

/*.toc-list a.active {*/
/*    color: #0d6efd;*/
/*    font-weight: 600;*/
/*}*/

/* ===== BLOG FAQ PREMIUM ===== */

.blog-wrapper .blog-faq-section {
    background: #f7f8fc;
    padding: 30px;
    border-radius: 14px;
}

.blog-wrapper .blog-faq-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.blog-wrapper .blog-faq-header i {
    font-size: 22px;
    color: #6366f1;
}

.blog-wrapper .blog-faq-header h3 {
    margin: 0;
    font-weight: 700;
}

/* Item */

.blog-wrapper .blog-faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

/* Button */

.blog-wrapper .blog-faq-trigger {
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    text-align: left;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
}

/* Icon rotate */

.blog-wrapper .blog-faq-item.active .blog-faq-icon {
    transform: rotate(180deg);
}

.blog-wrapper .blog-faq-icon {
    transition: transform 0.3s ease;
}

/* Content */

.blog-wrapper .blog-faq-content {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

.blog-wrapper .blog-faq-inner {
    padding: 0 20px 20px;
    color: #555;
    line-height: 1.6;
}





/* services pages  */

.assignment-inner-services .container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}

.assignment-inner-services .left-sidebar {
    width: 25%;
    position: sticky;
    top: 130px;
}

.assignment-inner-services .right-content-box {
    width: 72%;
}

.academic-solution-box {
    text-align: center;
    color: #071d37;
    border-radius: 5px;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, .2);
    padding: 7px;
    margin-bottom: 15px;
}

.academic-solution-box .common-scrollbar {
    overflow-y: auto;
    max-height: 240px;

    /* Firefox support */
    scrollbar-width: thin;
    scrollbar-color: var(--button-color) transparent;
}

/* Chrome / Edge / Safari */

.academic-solution-box .common-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.academic-solution-box .common-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.academic-solution-box .common-scrollbar::-webkit-scrollbar-thumb {
    background: #b0b0b0;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.academic-solution-box .common-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #888;
}



.academic-solution-box ul li {
    position: relative;
    padding: 10px 5px 10px 33px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    margin: 0 0 12px;
    border: 1px solid #ddd;
    font-size: 14px;
    text-align: left;
}

.academic-solution-box ul li:before {
    content: "";
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxZW0iIGhlaWdodD0iMWVtIiB2aWV3Qm94PSIwIDAgMTYgMTYiPjx0aXRsZSB4bWxucz0iIj5jaGV2cm9uLWNpcmNsZS1yaWdodC0xNi1yZWd1bGFyPC90aXRsZT48cGF0aCBmaWxsPSJjdXJyZW50Q29sb3IiIGQ9Ik04IDEzQTUgNSAwIDEgMCA4IDNhNSA1IDAgMCAwIDAgMTBtNi01QTYgNiAwIDEgMSAyIDhhNiA2IDAgMCAxIDEyIDBNNy4zNTQgNS4xNDZsMi41IDIuNWEuNS41IDAgMCAxIDAgLjcwOGwtMi41IDIuNWEuNS41IDAgMCAxLS43MDgtLjcwOEw4Ljc5MyA4TDYuNjQ2IDUuODU0YS41LjUgMCAxIDEgLjcwOC0uNzA4Ii8+PC9zdmc+');
    background-repeat: no-repeat;
    background-position: center;
    object-fit: cover;
    background-size: cover;
    height: 22px;
    width: 22px;
    display: inline-block;
    position: absolute;
    top: 10px;
    left: 5px;
}


.academic-solution-box ul li a {
    color: #333;
    font-size: 15px;
}

.tool-bar {
    background: #fff;
    -webkit-box-shadow: 2px 4px 10px 0px rgba(0, 0, 0, 0.1803921569);
    box-shadow: 2px 4px 10px 0px rgba(0, 0, 0, 0.1803921569);
    border-radius: 4px;
    margin: 30px 0;
}

.card-heading {
    padding: 10px 13px;
    font-size: 20px;
    line-height: 24px;
    background-color: #434343;
    color: #fff;
    border-radius: 4px 4px 0px 0px;
    text-transform: uppercase;
}

.tool-bar .tools-inner-div {
    padding: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
    max-height: 373px;
    overflow: auto;
}

.tool-bar .tools-inner-div .tool-card {
    border: 1px solid #DEDEDE;
    border-radius: 5px;
    padding: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 13px
}

.tool-bar .tools-inner-div .tool-card .img-box {
    /* background: #C3CEB7; */
    background: var(--accent-color);
    padding: 10px;
    border-radius: 5px
}

.tool-bar .tools-inner-div .tool-card .img-box img {
    display: block
}

.tool-bar .tools-inner-div .tool-card .content-side {
    width: 73%
}

.tool-bar .tools-inner-div .tool-card .card-title {
    font-size: 17px;
    line-height: 24px;
    color: #1D1D1D
}

.tool-bar .tools-inner-div .tool-card .card-subtitle {
    font-size: 14px;
    line-height: 20px;
    color: #616161
}

.tool-bar .tools-inner-div .tool-card:hover {
    -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2509803922);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2509803922);
    background: var(--primary-color);
    color: #fff;
    -webkit-transition: all 0.5ms ease-in-out;
    transition: all 0.5ms ease-in-out
}

.tool-bar .tools-inner-div .tool-card:hover .img-box {
    background: #fff
}

.tool-bar .tools-inner-div .tool-card:hover .card-subtitle,
.tool-bar .tools-inner-div .tool-card:hover .card-title {
    color: #fff
}



.right-content-box .toc {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.right-content-box .toc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background: #f5f5f5;
    cursor: pointer;
}

.right-content-box .toc-header h3 {
    font-size: 24px;
    margin: 0;
}

.right-content-box .toc-header i {
    font-size: 24px;
    border: 1px solid #333;
    padding: 4px 7px;
    border-radius: 4px;
}

.right-content-box .toc-list ul {
    list-style: none;
    padding: 1rem;
    background-color: #fbfbfb;
    margin: 0;
    display: none;

}

.right-content-box .toc-list ul li {
    position: relative;
    margin: 0 0 10px;
    padding-left: 25px;
}

.right-content-box .toc-list ul li::before {
    content: "\f0da";
    font-family: 'FontAwesome';
    margin-right: 8px;
    color: #333;
    position: absolute;
    top: 0;
    left: 0;
}

.right-content-box .toc-list a {
    text-decoration: none;
    color: #333;
    transition: all .4s ease;
}

.right-content-box .toc-list a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.assignment-inner-services .right-content-box p {
    margin-bottom: 20px;
    color: #333;
    font-size: 16px;
    text-align: justify;
    overflow: auto;
}

.cta-action-banner {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    margin: 25px 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-right: 20px;
}

.cta-action-banner .cta-icon img {
    width: 250px;
}

.buttons-group .btn-outline {
    padding: 8px 15px;
    border: 1px solid #2883dc;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    color: var(--primary-color);
}
.right-content-box table th {
    background-color: #535353;
    color: #fff;
    font-weight: 700;
    text-align: center;
    line-height: 20px;
    letter-spacing: .5px;
    padding: 5px;
}

.services table td {
    width: 3%;
}
.right-content-box table td {
    border: 1px solid #b9b9b9;
    padding: 5px;
}

.right-content-box h2 {
    font-size: 26px;
    margin: 12px 0;
    font-weight: 500;
}
.right-content-box ul{
    list-style: none;
}
.right-content-box ul li {
    margin-bottom: 10px;
    line-height: 26px;
    font-size: 16px;
    word-wrap: break-word;
    position: relative;
    color: #333;
    text-align: justify;
    padding-left: 25px;
}

.right-content-box ul li::before {
    content: "\f0da";
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    top: 0;
    color: #333;
}

.offer-card {
    padding: 20px 10px;
}

.gift-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: #f1f3ff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.offer-title {
    text-align: center;
    font-weight: 600;
    margin-bottom: 25px;
}

.offer-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.offer-item:last-child {
    border-bottom: none;
}

.offer-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.offer-left i {
    color: #16a34a;
}

.price-old {
    text-decoration: line-through;
    color: #6b7280;
    margin-right: 6px;
}

.price-free {
    color: #16a34a;
    font-weight: 600;
}

.total-section {
    text-align: center;
    margin-top: 25px;
}

.total-price {
    font-size: 20px;
    font-weight: 600;
}
.au_hero_title
{
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.seo-content p {
    line-height: 1.8;
    color: #444;
    padding-top: 15px;}