/*------------------------------------------------------------
**************************************************************
**************** IMPORT OTHER CSS
**************************************************************
-------------------------------------------------------------*/

@import url("./base.css");

/*------------------------------------------------------------
**************************************************************
**************** BUTTON STYLES 
**************************************************************
-------------------------------------------------------------*/

/* Solid Button */
.assignment-experts-hub-btn.primary-btn {
    background-color: var(--dark-blue);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 5px;
    border: 2px solid var(--dark-blue);
}

.assignment-experts-hub-btn.primary-btn:hover {
    background-color: var(--light-blue);
}

/* Outline Button */
.assignment-experts-hub-btn.outline-btn {
    background-color: transparent;
    color: var(--dark-blue);
    border: 2px solid var(--dark-blue);
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease;
    margin: 5px;
}

.assignment-experts-hub-btn.outline-btn:hover {
    color: var(--light-blue);
    border-color: var(--light-blue);
}

/* Rounded Button */
.assignment-experts-hub-btn.rounded-btn {
    background-color: var(--lighter-blue);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 5px;
}

.assignment-experts-hub-btn.rounded-btn:hover {
    background-color: var(--light-blue);
}

/* Gradient Button */
.assignment-experts-hub-btn.gradient-btn {
    background-image: linear-gradient(45deg, var(--lighter-blue) 0%, var(--light-blue) 99%, var(--light-blue) 100%);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-image 0.3s ease;
    margin: 5px;
}

.assignment-experts-hub-btn.gradient-btn:hover {
    background-image: linear-gradient(45deg, var(--dark-blue) 0%, var(--lighter-blue) 99%, var(--lighter-blue) 100%);
}

/* Icon Button */
.icon-btn {
    background-color: var(--lighter-blue);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 5px;
}

.icon-btn i {
    margin-right: 5px;
}

.icon-btn:hover {
    background-color: var(--light-blue);
}

/*------------------------------------------------------------
**************************************************************
**************** LINES STYLES 
**************************************************************
-------------------------------------------------------------*/

/* Solid Line */
.assignment-experts-hub-line.solid-line {
    border-top: 1px solid var(--dark-blue);
    margin: 10px;
}

/* Dashed Line */
.assignment-experts-hub-line.dashed-line {
    border-top: 1px dashed var(--light-blue);
    margin: 10px;
}

/* Double Line */
.assignment-experts-hub-line.double-line {
    border-top: 3px double var(--lighter-blue);
    margin: 10px;
}

/*------------------------------------------------------------
**************************************************************
**************** NAVBAR WORK STYLES 
**************************************************************
-------------------------------------------------------------*/

/* Main Navbar Container */
.assignment-experts-hub-navbar {
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

/* Logo Div */
.assignment-experts-hub-navbar-logo-div {
    width: 250px;
}

.assignment-experts-hub-navbar-logo-div img {
    height: auto;
    width: 120px;
    padding: 5px 5px 5px 25px;
}

/* Main Row Div */
.assignment-experts-hub-navbar-main-row {
    flex: 1;
}

/* Upper Row Div */
.assignment-experts-hub-navbar-main-row-upper {
    display: flex;
    background-color: var(--dark-blue);
    border-radius: 0px 5px 0px 5px;
    padding: 15px 8px 0px 8px;
}

.assignment-experts-hub-navbar-main-row-upper-p {
    color: #ffffff;
    padding-left: 6px;
}

.assignment-experts-hub-navbar-main-row-upper-p-2 {
    color: #ffffff;
    padding: 2px 6px 2px 6px;
    background-color: #ff0000;
    border-radius: 2px;
}

.assignment-experts-hub-navbar-main-row-upper-ul {
    list-style: none;
}

.assignment-experts-hub-navbar-main-row-upper-ul-a {
    text-decoration: none;
}

.assignment-experts-hub-navbar-main-row-upper-ul-a i {
    color: #ffffff;
}

/* Float social icons to the right */
.assignment-experts-hub-navbar-main-row-upper-ul {
    margin-left: auto;
}

.assignment-experts-hub-navbar-main-row-upper-ul-a {
    margin-right: 10px;
    color: #000000;
    text-decoration: none;
}

/* Lower Row Div */
.assignment-experts-hub-navbar-main-row-lower {
    display: flex;
    align-items: center;
}

.assignment-experts-hub-navbar-main-row-lower-ul {
    list-style: none;
    padding: 10px;
    display: flex;
    margin-right: 20px;
    margin-bottom: 0px;
}

.assignment-experts-hub-navbar-main-row-lower-ul-a {
    margin-right: 15px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
}

/* CTA Button */
.assignment-experts-hub-navbar-main-row-lower-cta {
    padding: 10px;
    background-color: var(--lighter-blue);
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    border-radius: 0px 0px 5px 0px;
    float: right;
    display: flex;
    margin-left: auto;
    white-space: nowrap;
}

.assignment-experts-hub-navbar-main-row-lower-cta i {
    padding-left: 5px;
}

.assignment-experts-hub-navbar-main-row-lower-cta:hover {
    background-color: #0056b3;
}

.assignment-experts-hub-navbar-main-row-lower .sm-logo-brand {
    text-decoration: none;
}

.assignment-experts-hub-navbar-main-row-lower .menu-btn-navbar {
    border: none;
    margin: 0px 10px;
    background: #ffffff;
}

/* Media Query for Smaller Screens */
@media screen and (max-width: 1000px) {

    .assignment-experts-hub-navbar-logo-div,
    .assignment-experts-hub-navbar-main-row-lower-ul {
        display: none;
    }

    .assignment-experts-hub-navbar-main-row-upper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 10px;
        border-radius: 5px 5px 0px 0px;
    }

    .assignment-experts-hub-navbar-main-row-upper p {
        margin-bottom: 10px;
    }

    .assignment-experts-hub-navbar-main-row-upper-ul {
        margin: auto;
    }
}

/* Media Query for Smaller Screens */
@media screen and (min-width: 1000px) {

    .assignment-experts-hub-navbar-main-row-lower .menu-btn-navbar,
    .assignment-experts-hub-navbar-main-row-lower .sm-logo-brand {
        display: none;
    }
}

/* Side panel styles */
.side-panel {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background-color: #f0f0f0;
    z-index: 1000;
    transition: left 0.3s ease;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-right: 1px solid #ccc;
}

.side-panel-top-logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.assignment-experts-hub-navbar-small-devices-nav-ul {
    list-style: none;
    padding: 0;
}

.assignment-experts-hub-navbar-small-devices-nav-ul-a {
    display: block;
    text-decoration: none;
    color: #333;
    margin-bottom: 10px;
}

.side-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.close-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #333;
}

/*------------------------------------------------------------
**************************************************************
**************** NAVBAR B SECTION
**************************************************************
-------------------------------------------------------------*/
.assignment-experts-hub-banner-section-b {
    background-image: url(../images/achbg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0;
    padding: 20px 0px;
    height: 300px;
}

#assignment-experts-hub-navbar-b {
    background-color: #ffffff;
}

/*------------------------------------------------------------
**************************************************************
**************** Dropdown btn menu
**************************************************************
-------------------------------------------------------------*/

.assignment-experts-hub-navbar-main-row-lower-ul-a-btn-dropdown .dropbtn {
    margin-right: 15px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    border: none;
    background-color: transparent;
    padding-top: 0%;
    padding-bottom: 0%;
}

/* Dropdown content*/
.assignment-experts-hub-navbar-main-row-lower-ul-a-btn-dropdown .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.assignment-experts-hub-navbar-main-row-lower-ul-a-btn-dropdown .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.assignment-experts-hub-navbar-main-row-lower-ul-a-btn-dropdown .dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* Show the dropdown content when hovering over the dropdown button */
.assignment-experts-hub-navbar-main-row-lower-ul-a-btn-dropdown:hover .dropdown-content {
    display: block;
}

/*------------------------------------------------------------
**************************************************************
**************** BANNER SECTION
**************************************************************
-------------------------------------------------------------*/

.assignment-experts-hub-banner-section {
    background-image: url(../images/banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0;
    padding: 20px 0px;
}

.assignment-experts-hub-banner-section-cta-and-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 50px 0px 5px 0px;
}

.assignment-experts-hub-banner-section-cta {
    text-decoration: none;
}

.assignment-experts-hub-banner-section-form {
    width: 300px;
    height: 360px;
    margin: 0 auto;
    border-radius: 5px;
    box-shadow: 3cqb 3cqb 1px var(--very-light-blue);
    border: 1px solid var(--very-light-blue);
    padding: 10px;
}

.assignment-experts-hub-banner-section-form-all-fields-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.assignment-experts-hub-banner-section-form-all-fields-form-group {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.assignment-experts-hub-banner-section-form-assignment-type,
.assignment-experts-hub-banner-section-form-page-word-count,
.assignment-experts-hub-banner-section-form-education-level,
.assignment-experts-hub-banner-section-form-task-duration {
    flex: 1;
    padding: 8px;
    border-radius: 1px;
    border: 1px solid #f5f5f5;
}

.assignment-experts-hub-banner-section-form-all-fields-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: var(--lighter-blue);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.assignment-experts-hub-banner-section-form-all-fields-btn:hover {
    background-color: var(--dark-blue);
}

.assignment-experts-hub-banner-section-form-all-fields-form-group-radios {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.assignment-experts-hub-banner-section-form-all-fields-form-estimated-cost {
    text-align: center;
}

.assignment-experts-hub-banner-section-form-all-fields-form-estimated-cost .indexpageorderformestimatedcost {
    color: #ffffff;
    background-color: #ff0000;
    padding: 2px;
    border-radius: 5px;
    display: inline-block;
}

@media screen and (max-width: 900px) {
    .assignment-experts-hub-banner-section-cta-and-form {
        display: block;
        padding: 20px 0px;
    }

    .assignment-experts-hub-banner-section-cta {
        width: auto;
        margin: 0 auto;
        padding: 20px;
    }

    .assignment-experts-hub-banner-section-form {
        box-shadow: none;
        margin: 0px 20px;
        width: auto;
        height: auto;
        padding: 20px;
    }

    .assignment-experts-hub-banner-section-form-all-fields-tabs {
        display: flex;
        gap: 2px;
        margin-bottom: 15px;
    }

    .assignment-experts-hub-banner-section-form-all-fields-form-group-radios {
        margin-bottom: 20px;
        display: flex;
        flex-wrap: nowrap;
        gap: 2px;
    }

    .assignment-experts-hub-banner-section {
        background-image: none;
    }
}

/* CTA Banner Section */
.assignment-experts-hub-banner-section-cta {
    text-transform: capitalize;
}

.assignment-experts-hub-banner-section-cta-h1 {
    font-size: 60px;
    color: var(--dark-blue);
    margin-bottom: 20px;
    max-width: 600px;
    font-weight: 700;
}

.assignment-experts-hub-banner-section-cta-enh {
    font-size: 18px;
    color: var(--lighter-blue);
    margin-bottom: 10px;
}

.assignment-experts-hub-banner-section-cta-p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.assignment-experts-hub-banner-section-form-all-fields-tabs-btn {
    padding: 8px 15px;
    color: var(--dark-blue);
    border: 0.5px solid var(--very-light-blue);
    border-radius: 5px;
    cursor: pointer;
    flex-grow: 1;
    min-width: 0;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
}

.assignment-experts-hub-banner-section-form-all-fields-tabs-btn:hover {
    color: var(--lighter-blue);

}

.assignment-experts-hub-banner-section-form-all-fields-tabs input {
    display: none;
}

.assignment-experts-hub-banner-section-form-all-fields-tabs-radio-container {
    margin: auto;
}

.assignment-experts-hub-banner-section-form-all-fields-tabs-radio-container input:checked+span {
    background-color: var(--dark-blue);
    color: white;
}

.assignment-experts-hub-banner-section-form-all-fields-tabs-radio-container input:checked+span:hover {
    background-color: var(--dark-blue);
    color: white;
}

.assignment-experts-hub-banner-section-trusted {
    margin: 50px 0px;
}

.assignment-experts-hub-banner-section-trusted-text {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    max-width: 500px;
    background-color: var(--very-light-blue);
    padding: 20px 10px;
    border-radius: 5px;
}

.assignment-experts-hub-banner-section-trusted-text p {
    margin: 0;
    text-align: center;
    flex: 1;
}

.assignment-experts-hub-banner-section-university-logos-section {
    overflow: hidden;
    width: 100%;
}

.logos-container {
    display: flex;
    animation: scroll 30s linear infinite;
}

.logos-container img {
    width: 160px;
    height: auto;
    margin-right: 20px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% - 200px));
    }
}

.logos-container {
    transition: transform 0.5s ease-in-out;
}

.logos-container img:hover {
    opacity: 0.7;
}

.assignment-experts-hub-banner-section-university-logos-section:hover .logos-container {
    animation-play-state: paused;
}

@media screen and (max-width: 1000px) {
    .logos-container img {
        width: 160px;
        margin-right: 10px;
    }
}

/*------------------------------------------------------------
**************************************************************
**************** OUR SERVICES SECTION
**************************************************************
-------------------------------------------------------------*/
.assignment-experts-hub-our-services-home-page-section {
    padding: 70px 0px;
    background-color: #ffffff;
    margin: 10px auto 50px auto;
}

.our-services-home-page-section-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.our-services-home-page-section-row-single-service {
    text-align: center;
    margin: 10px;
    width: 23%;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.our-services-home-page-section-row-single-service:hover {
    transform: translateY(-5px);
}

.our-services-home-page-section-row-single-service img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 15px;
}

.our-services-home-page-section-row-single-service h1 {
    font-size: 1.2rem;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.assignment-experts-hub-our-services-home-page-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.assignment-experts-hub-our-services-home-page-section-header legend {
    margin-bottom: 5px;
    color: var(--lighter-blue);
}

.assignment-experts-hub-our-services-home-page-section-header h1 {
    font-size: 50px;
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.assignment-experts-hub-our-services-home-page-section-header p {
    font-size: 16px;
    color: #666;
    margin-bottom: 5px;
}

/* Mobile devices (up to 1000px) */
@media only screen and (max-width: 1000px) {
    .our-services-home-page-section-row-single-service {
        width: 100%;
        margin-right: 0;
    }

    .our-services-home-page-section-row-single-service img {
        width: 100%;
        height: auto;
    }
}

/*------------------------------------------------------------
**************************************************************
**************** OUR BLOGS SECTION
**************************************************************
-------------------------------------------------------------*/

.assignment-experts-hub-our-blog-home-page-section {
    padding: 50px 0px;
    background-color: #ffffff;
    margin: 50px auto 50px auto;
}

.our-blog-home-page-section-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.our-blog-home-page-section-row-single-blog {
    display: flex;
    align-items: flex-start;
    margin: 20px auto;
    width: 45%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    padding: 10px;
    margin-right: 5px;
}

.our-blog-home-page-section-row-single-blog .left {
    margin-right: 10px;
}

.our-blog-home-page-section-row-single-blog img {
    width: 200px;
    height: 200px;
    object-fit: cover;
}

.our-blog-home-page-section-row-single-blog .right {
    flex-grow: 1;
    padding: 10px;
}

.our-blog-home-page-section-row-single-blog h1 {
    margin-bottom: 5px;
    text-transform: uppercase;
    text-align: start;
    font-size: 20px;
}

.our-blog-home-page-section-row-single-blog .right p {
    font-size: 16px;
    margin-bottom: 10px;
    overflow: hidden;
}

.our-blog-home-page-section-row-single-blog span {
    color: #777;
    font-size: 14px;
    font-style: italic;
}


.assignment-experts-hub-our-blog-home-page-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.assignment-experts-hub-our-blog-home-page-section-header legend {
    margin-bottom: 5px;
    color: var(--lighter-blue);
}

.assignment-experts-hub-our-blog-home-page-section-header h1 {
    font-size: 50px;
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.assignment-experts-hub-our-blog-home-page-section-header p {
    font-size: 16px;
    color: #666;
    margin-bottom: 5px;
}

/* Mobile devices (up to 1000px) */
@media only screen and (max-width: 1000px) {

    .our-blog-home-page-section-row {
        flex-direction: column;
        align-items: center;
    }

    .our-blog-home-page-section-row-single-blog img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .our-blog-home-page-section-row-single-blog {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .our-blog-home-page-section-row-single-blog .left,
    .our-blog-home-page-section-row-single-blog .right {
        width: 100%;
    }

    .our-blog-home-page-section-row-single-blog img {
        order: -1;
        margin-bottom: 10px;
    }
}

/*------------------------------------------------------------
**************************************************************
**************** OUR WRITERS SECTION
**************************************************************
-------------------------------------------------------------*/

.assignment-experts-hub-writers-home-page-section {
    padding: 70px 0;
    background-color: #ffffff;
    margin: 50px auto 0;
}

.why-choose-us-section-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.assignment-experts-hub-writers-home-page-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.assignment-experts-hub-writers-home-page-section-header legend {
    margin-bottom: 5px;
    color: var(--lighter-blue);
}

.assignment-experts-hub-writers-home-page-section-header h1 {
    font-size: 50px;
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.assignment-experts-hub-writers-home-page-section-header p {
    font-size: 16px;
    color: #666;
    margin-bottom: 5px;
}

.writers-home-page-section-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.writers-home-page-section-row .writers-home-page-section-single-writer {
    width: calc(25% - 10px);
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #ebebeb;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;

    &:hover {
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }
}

.writers-home-page-section-row .writers-home-page-section-single-writer .action {
    margin: 20px auto;
    text-align: center;
}

/* Top section */
.writers-home-page-section-row .writers-home-page-section-single-writer .top-div {
    display: flex;
    align-items: center;
}

.writers-home-page-section-row .writers-home-page-section-single-writer .img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

.writers-home-page-section-row .writers-home-page-section-single-writer .username {
    font-size: 18px;
    margin: 0;
    font-weight: bold;
    color: var(--dark-blue);
}

/* Middle section */
.writers-home-page-section-row .writers-home-page-section-single-writer .middle-div {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.writers-home-page-section-row .writers-home-page-section-single-writer .education-level,
.writers-home-page-section-row .writers-home-page-section-single-writer .orders-done {
    font-size: 14px;
    margin: 0;
}

.writers-home-page-section-row .writers-home-page-section-single-writer .education-level-info {
    font-size: 12px;
    color: #666;
}

.writers-home-page-section-row .writers-home-page-section-single-writer .orders-done-info {
    font-size: 12px;
    color: #666;
}

/* Industries section */
.writers-home-page-section-row .writers-home-page-section-single-writer .industries-div {
    margin-top: 10px;
}

.writers-home-page-section-row .writers-home-page-section-single-writer .industries-div-item {
    display: inline-block;
    margin-right: 5px;
    font-size: 14px;
    background-color: #f0f0f0;
    padding: 3px 8px;
    border-radius: 5px;
}

.slick-slider .writers-home-page-section-single-writer {
    margin-right: 15px;
}

.slick-slider .writers-home-page-section-single-writer:last-child {
    margin-right: 0;
}

@media screen and (max-width: 1000px) {
    .writers-home-page-section-row .writers-home-page-section-single-writer {
        width: calc(100% - 10px);
    }
}

/*------------------------------------------------------------
**************************************************************
**************** WRITERS PAGE
**************************************************************
-------------------------------------------------------------*/

.assignment-experts-hub-writers-page-row-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.assignment-experts-hub-writers-page-row-header .left-div {
    flex: 1;
}

.assignment-experts-hub-writers-page-row-header .right-div {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.assignment-experts-hub-writers-page-row-header .left-div h1 {
    font-size: 50px;
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.assignment-experts-hub-writers-page-row-header .left-div p {
    font-size: 16px;
    color: #666;
    margin-bottom: 5px;
}

.assignment-experts-hub-writers-page-row-header .right-div img {
    max-width: 80%;
    height: auto;
    border-radius: 8px;
}

@media screen and (max-width: 1000px) {
    .assignment-experts-hub-writers-page-row-header .left-div {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .assignment-experts-hub-writers-page-row-header .right-div img {
        display: none;
    }
}

/*------------------------------------------------------------
**************************************************************
**************** ABOUT US SECTION
**************************************************************
-------------------------------------------------------------*/
/* Style for assignment-experts-hub-about-us-section */
.assignment-experts-hub-about-us-section {
    padding: 70px 0px;
    background-color: #F3F6FC;
    margin: 50px auto 0px auto;
}

.about-us-section-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Style for assignment-experts-hub-about-us-section-left-div */
.assignment-experts-hub-about-us-section-left-div {
    flex: 0 0 45%;
    max-width: 45%;
    position: relative;
}

/* style for left-content */
.assignment-experts-hub-about-us-section-left-div .left-content {
    position: absolute;
    top: 140px;
    left: -50px;
    font-size: 20px;
    margin-bottom: 20px;
    background-color: var(--dark-blue);
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
}

.assignment-experts-hub-about-us-section-left-div .left-content:hover {
    background-color: var(--lighter-blue);
}

.assignment-experts-hub-about-us-section-left-div .left-content a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.assignment-experts-hub-about-us-section-left-div .left-content a i {
    margin-right: 10px;
    font-size: 40px;
    background-color: #ffffff;
    color: var(--dark-blue);
    border-radius: 50%;
    padding: 2px 12px;
}

.assignment-experts-hub-about-us-section-left-div .left-content a p {
    text-align: left;
    padding-top: 15px;
    font-family: 'Times New Roman', Times, serif;
}

/* Style for assignment-experts-hub-about-us-section-right-div */
.assignment-experts-hub-about-us-section-right-div {
    flex: 0 0 50%;
    max-width: 50%;
}

.assignment-experts-hub-about-us-section-left-div img {
    width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 5px;
    box-shadow: 2cqb 2cqb 1px var(--very-light-blue);
    border: 1px solid var(--very-light-blue);
    padding: 10px;
}

.assignment-experts-hub-about-us-section-right-div-p-before-h1 {
    margin-bottom: 5px;
    color: var(--lighter-blue);
}

.assignment-experts-hub-about-us-section-right-div h1 {
    font-size: 50px;
    color: var(--dark-blue);
    margin-bottom: 20px;
    max-width: 600px;
    font-weight: 700;
}

.assignment-experts-hub-about-us-section-right-div-p-after-h1 {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.assignment-experts-hub-about-us-section-right-div-what-we-offer {
    padding: 15px 10px;
    background-color: #ffffff;
    border-radius: 10px;
    margin: 15px 0px;
}

.assignment-experts-hub-about-us-section-right-div-what-we-offer-upper-div,
.assignment-experts-hub-about-us-section-right-div-what-we-offer-lower-div {
    display: flex;
    flex-wrap: wrap;
}

.assignment-experts-hub-about-us-section-right-div-what-we-offer-upper-div p,
.assignment-experts-hub-about-us-section-right-div-what-we-offer-lower-div p {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 10px 0;
    flex-basis: 50%;
    box-sizing: border-box;
}

.assignment-experts-hub-about-us-section-right-div-what-we-offer-upper-div i,
.assignment-experts-hub-about-us-section-right-div-what-we-offer-lower-div i {
    border-radius: 50%;
    background-color: var(--lighter-blue);
    color: #ffffff;
    padding: 3px 12px;
    margin-right: 10px;
    font-size: 35px;
    white-space: nowrap;
}

.assignment-experts-hub-about-us-section-right-div-what-we-offer-upper-div p,
.assignment-experts-hub-about-us-section-right-div-what-we-offer-lower-div p {
    flex-grow: 1;
}

.assignment-experts-hub-about-us-section-right-div-ul {
    list-style-type: none;
    padding: 0;
}

.assignment-experts-hub-about-us-section-right-div-ul-li {
    display: flex;
    align-items: center;
    margin-bottom: 7px;
}

.assignment-experts-hub-about-us-section-right-div-ul-li i {
    border-radius: 50%;
    background-color: white;
    padding: 1px 4px 0px 4px;
    margin-right: 10px;
    color: var(--lighter-blue);
    white-space: nowrap;
}

.assignment-experts-hub-about-us-section-right-div-ul-li i.bi-arrow-right-circle {
    font-size: 1.2em;
}

/* Media Query for screens smaller than 1000px */
@media (max-width: 1000px) {

    .assignment-experts-hub-about-us-section-left-div img {
        margin: 20px auto;
    }

    .assignment-experts-hub-about-us-section {
        padding: 30px 0px;
    }

    .assignment-experts-hub-about-us-section-left-div {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .assignment-experts-hub-about-us-section-left-div .left-content {
        position: static;
        top: auto;
        left: auto;
        width: 100%;
        margin-bottom: 2px;
        font-size: 18px;
    }

    .assignment-experts-hub-about-us-section-left-div .left-content a p {
        padding-top: 10px;
    }

    .assignment-experts-hub-about-us-section-right-div {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .assignment-experts-hub-about-us-section-right-div h1 {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .assignment-experts-hub-about-us-section-right-div-what-we-offer-upper-div p,
    .assignment-experts-hub-about-us-section-right-div-what-we-offer-lower-div p {
        padding: 5px 0;
    }

    .assignment-experts-hub-about-us-section-right-div-what-we-offer-upper-div i,
    .assignment-experts-hub-about-us-section-right-div-what-we-offer-lower-div i {
        font-size: 35px;
    }

    .assignment-experts-hub-about-us-section-right-div-ul-li i.bi-arrow-right-circle {
        font-size: 1em;
    }
}

/*------------------------------------------------------------
**************************************************************
**************** Achievements SECTION
**************************************************************
-------------------------------------------------------------*/
.assignment-experts-hub-achievement-section {
    position: relative;
    text-align: center;
    padding: 50px 0;
    background-image: linear-gradient(rgba(39, 49, 66, 0.4), rgba(39, 49, 66, 0.4)), url(../images/achbg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.achievement-section-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.achievement-section-container>div {
    flex: 1;
    padding: 20px;
}

.achievement-section-container>div span {
    display: block;
    font-size: 50px;
    font-weight: lighter;
    margin-bottom: 10px;
    color: #ffffff;
}

.achievement-section-container>div p {
    font-size: 18px;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
}

/* Media Query for screens smaller than 1000px */
@media (max-width: 1000px) {
    .assignment-experts-hub-achievement-section {
        padding: 30px 0;
    }

    .achievement-section-container {
        flex-direction: column;
    }

    .achievement-section-container>div {
        flex: 1;
        padding: 20px;
        text-align: center;
    }

    .achievement-section-container>div span {
        font-size: 40px;
    }

    .achievement-section-container>div p {
        font-size: 16px;
    }
}

/*------------------------------------------------------------
**************************************************************
**************** WHY CHOOSE US SECTION
**************************************************************
-------------------------------------------------------------*/
.assignment-experts-hub-why-choose-us-section {
    padding: 70px 0;
    background-color: #ffffff;
    margin: 50px auto 0;
}

.why-choose-us-section-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.assignment-experts-hub-why-choose-us-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.assignment-experts-hub-why-choose-us-section-header legend {
    margin-bottom: 5px;
    color: var(--lighter-blue);
}

.assignment-experts-hub-why-choose-us-section-header h1 {
    font-size: 50px;
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.assignment-experts-hub-why-choose-us-section-header p {
    font-size: 16px;
    color: #666;
    margin-bottom: 5px;
}

.assignment-experts-hub-why-choose-us-section-main-div {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.why-choose-us-section-row .reason {
    text-align: center;
    background-color: var(--very-light-blue);
    flex: 1 1 calc(25% - 20px);
    padding: 20px;
    border-radius: 8px;
    box-sizing: border-box;
}

.why-choose-us-section-row .reason i {
    font-size: 32px;
    margin-bottom: 15px;
    background-color: var(--lighter-blue);
    padding: 10px 12px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 4cqb;
}

.why-choose-us-section-row .reason h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
    position: relative;
    margin-top: 15px;
    padding-bottom: 5px;
    text-transform: uppercase;
}

.why-choose-us-section-row .reason h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 5px;
    background-color: var(--lighter-blue);
    border-radius: 25px;
}

.why-choose-us-section-row .reason p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

/* Media Query for screens smaller than 1000px */
@media (max-width: 1000px) {
    .why-choose-us-section-row .reason {
        flex: 1 1 calc(50% - 20px);
    }

    .why-choose-us-section-row {
        padding: 0px;
    }

    .assignment-experts-hub-why-choose-us-section {
        margin: 30px auto;
    }

    .assignment-experts-hub-why-choose-us-section-header h1 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .assignment-experts-hub-why-choose-us-section-header p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .why-choose-us-section-row .reason i {
        font-size: 28px;
        padding: 10px 12px;
    }

    .why-choose-us-section-row .reason h3 {
        font-size: 18px;
        margin-top: 10px;
    }

    .why-choose-us-section-row .reason h3::after {
        width: 40px;
        height: 4px;
    }

    .why-choose-us-section-row .reason p {
        font-size: 14px;
    }
}

/*------------------------------------------------------------
**************************************************************
**************** SUBJECTS SECTION
**************************************************************
-------------------------------------------------------------*/
.assignment-experts-hub-subjects-section {
    padding: 70px 0;
    background-color: #ffffff;
    margin: 50px auto 0;
}

.assignment-experts-hub-subjects-row {
    display: flex;
    align-items: flex-start;
}

.assignment-experts-hub-subjects-header {
    text-align: center;
}

.assignment-experts-hub-subjects-header legend {
    margin-bottom: 5px;
    color: var(--lighter-blue);
}

.assignment-experts-hub-subjects-header h1 {
    font-size: 50px;
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.assignment-experts-hub-subjects-header p {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.assignment-experts-hub-subjects-row-left-col {
    display: flex;
    flex-direction: column;
}

.assignment-experts-hub-subjects-row-left-col button {
    display: block;
    margin: 0px 10px 10px 0px;
    background-color: var(--dark-blue);
    color: #ffffff;
    padding: 10px 20px;
    white-space: nowrap;
    border-radius: 25px;
}

.assignment-experts-hub-subjects-row-right-col {
    width: 100%;
    overflow: hidden;
    background-color: #F3F6FC;
    padding: 20px;
    border-radius: 10px;
}

.assignment-experts-hub-subjects-row-right-col .hidden-div ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.assignment-experts-hub-subjects-row-right-col .hidden-div ul li {
    margin-right: 20px;
    margin-bottom: 10px;
    padding: 5px 10px;
    border: 1px solid var(--very-light-blue);
    border-radius: 25px;
}

.assignment-experts-hub-subjects-row-right-col .hidden-div {
    display: none;
}

@media screen and (max-width: 1000px) {
    .assignment-experts-hub-subjects-row {
        flex-direction: column;
    }

    .assignment-experts-hub-subjects-row-left-col,
    .assignment-experts-hub-subjects-row-right-col {
        width: 100%;
    }

    .assignment-experts-hub-subjects-row-left-col button {
        margin: 0px 0px 8px 0px;
    }

    .assignment-experts-hub-subjects-header h1 {
        font-size: 40px;
    }

    .assignment-experts-hub-subjects-header p {
        font-size: 14px;
    }

    .assignment-experts-hub-subjects-row-left-col button {
        padding: 8px 16px;
        margin: 0px 8px 8px 0px;
    }

    .assignment-experts-hub-subjects-row-right-col {
        padding: 15px;
    }

    .assignment-experts-hub-subjects-row-right-col .hidden-div ul li {
        margin-right: 15px;
        margin-bottom: 8px;
        padding: 4px 8px;
        font-size: 12px;
    }
}


/*------------------------------------------------------------
**************************************************************
**************** FAQ SECTION
**************************************************************
-------------------------------------------------------------*/
.assignment-experts-hub-faq {
    padding: 70px 0;
    background-color: #F3F6FC;
}

.assignment-experts-hub-faq-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.assignment-experts-hub-faq-left-div,
.assignment-experts-hub-faq-right-div {
    flex: 0 0 48%;
    max-width: 48%;
}

.assignment-experts-hub-faq-right-div-img {
    width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 5px;
    box-shadow: 2cqb 2cqb 1px var(--very-light-blue);
    border: 1px solid var(--very-light-blue);
    padding: 10px;
}

.assignment-experts-hub-faq-left-div-header legend {
    margin-bottom: 5px;
    color: var(--lighter-blue);
}

.assignment-experts-hub-faq-left-div-header h1 {
    font-size: 50px;
    color: var(--dark-blue);
    margin-bottom: 20px;
    max-width: 600px;
    font-weight: 700;
}

.assignment-experts-hub-faq-left-div-header p {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

/* Media Query for screens smaller than 1000px */
@media (max-width: 1000px) {
    .assignment-experts-hub-faq {
        padding: 30px auto;
    }

    .assignment-experts-hub-faq-left-div,
    .assignment-experts-hub-faq-right-div {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .assignment-experts-hub-faq-right-div-img {
        padding: 0;
    }

    .assignment-experts-hub-faq-left-div-header h1 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .assignment-experts-hub-faq-left-div-header p {
        font-size: 14px;
        margin-bottom: 15px;
    }
}

/*------------------------------------------------------------
**************************************************************
**************** CALL TO ACTION SECTION
**************************************************************
-------------------------------------------------------------*/
.assignment-experts-hub-call-to-action-main-section-for-all {
    background-color: #ffffff;
}

.assignment-experts-hub-call-to-action-main-section-for-all-container {
    background-color: black;
    padding: 20px;
    border-radius: 0px;
    color: #ffffff;
    text-align: center;
    border-radius: 50px 0px 50px 0px;
}

.assignment-experts-hub-call-to-action-main-section-for-all-row-cta-content h2 {
    font-size: 26px;
    margin-bottom: 15px;
}

.assignment-experts-hub-call-to-action-main-section-for-all-row-cta-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.assignment-experts-hub-call-to-action-main-section-for-all-row-cta-content-btn,
.assignment-experts-hub-call-to-action-main-section-for-all-row-cta-content-outline-btn {
    display: inline-block;
    padding: 12px 20px;
    margin-right: 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

.assignment-experts-hub-call-to-action-main-section-for-all-row-cta-content-outline-btn,
.assignment-experts-hub-call-to-action-main-section-for-all-row-cta-content-btn {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.assignment-experts-hub-call-to-action-main-section-for-all-row-cta-content-btn:hover,
.assignment-experts-hub-call-to-action-main-section-for-all-row-cta-content-outline-btn:hover {
    background-color: #fff;
    color: #286BB8;
}

/* Media Query for screens smaller than 1000px */
@media (max-width: 1000px) {

    .assignment-experts-hub-call-to-action-main-section-for-all-row-cta-content {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .assignment-experts-hub-call-to-action-main-section-for-all-row-cta-content h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }
}

/*------------------------------------------------------------
**************************************************************
**************** TESTIMONIALS SECTION
**************************************************************
-------------------------------------------------------------*/
.assignment-experts-hub-testimonial-section {
    padding: 50px auto;
    margin: 50px auto;
}

.assignment-experts-hub-testimonial-header {
    text-align: center;
}

.assignment-experts-hub-testimonial-header legend {
    margin-bottom: 5px;
    color: var(--lighter-blue);
}

.assignment-experts-hub-testimonial-header h1 {
    font-size: 50px;
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.assignment-experts-hub-testimonial-header p {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.assignment-experts-hub-testimonial-row {
    padding: 50px 1px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.assignment-experts-hub-testimonial-section-testimonial {
    background-color: #F3F6FC;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.assignment-experts-hub-testimonial-section-testimonial p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}

.assignment-experts-hub-testimonial-section-testimonial .testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.assignment-experts-hub-testimonial-section-testimonial .testimonial-author h4 {
    margin-bottom: 5px;
    font-size: 20px;
    color: var(--dark-blue);
    text-transform: capitalize;
}

.assignment-experts-hub-testimonial-section-testimonial .testimonial-author span {
    font-size: 14px;
    color: var(--light-pale-dark);
    font-style: italic;
}

.assignment-experts-hub-testimonial-section-testimonial .testimonial-author span .bi {
    font-size: 14px;
    color: #ff0000;
}

/* Media query for smaller screens */
@media screen and (max-width: 768px) {
    .assignment-experts-hub-testimonial-header h1 {
        font-size: 40px;
    }

    .assignment-experts-hub-testimonial-section-testimonial {
        padding: 20px;
    }

    .assignment-experts-hub-testimonial-section-testimonial p {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .assignment-experts-hub-testimonial-section-testimonial .testimonial-author h4 {
        font-size: 18px;
        margin-bottom: 3px;
    }

    .assignment-experts-hub-testimonial-section-testimonial .testimonial-author span {
        font-size: 12px;
    }
}

/*------------------------------------------------------------
**************************************************************
**************** MAIN FOOTER SECTION
**************************************************************
-------------------------------------------------------------*/
.assignment-experts-hub-main-footer-section {
    background-color: #F3F6FC;
    padding: 40px 0;
    color: #333;
    position: relative;
    margin-top: 100px;
}

#main-footer {
    z-index: 100;
}

/* Upper row styles */
.assignment-experts-hub-main-footer-upper-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--dark-blue);
    position: absolute;
    width: 70%;
    height: 140px;
    z-index: 110;
    top: 1%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    border-radius: 10px;
    color: #ffffff;
}

.assignment-experts-hub-main-footer-upper-row-div-left {
    flex: 1;
}

.assignment-experts-hub-main-footer-upper-row-div-left hr {
    width: 100px;
    border: 1px solid #ccc;
    margin: 8px 0;
}

.assignment-experts-hub-main-footer-upper-row-div-left span {
    display: block;
    margin-top: 10px;
}

.assignment-experts-hub-main-footer-upper-row-div-middle {
    flex: 1;
    display: flex;
    justify-content: center;
}

.assignment-experts-hub-main-footer-upper-row-div-middle a i {
    background: #ffffff;
    border-radius: 50%;
    color: var(--dark-blue);
    padding: 6px 7px;
}

.assignment-experts-hub-main-footer-upper-row-div-middle a i:hover {
    background: var(--dark-blue);
    color: #ffffff;
}

.assignment-experts-hub-main-footer-upper-row-div-right {
    flex: 1;
    text-align: right;
}

.assignment-experts-hub-main-footer-upper-row-div-right a {
    background-color: var(--dark-blue);
    padding: 10px 20px;
    border-radius: 25px;
    color: #ffffff;
    border: 2px solid #ffffff;
    text-transform: uppercase;
}

.assignment-experts-hub-main-footer-upper-row-div-right a:hover {
    background-color: var(--dark-blue);
    color: #ffffff;
    border: 2px solid var(--lighter-blue);
}

/* Middle main row styles */
.assignment-experts-hub-main-footer-middle-main-row {
    display: flex;
    justify-content: space-between;
    margin: 90px auto;
    text-transform: capitalize;
}

.assignment-experts-hub-main-footer-middle-main-row div {
    flex: 1;
    padding: 0 10px;
}

.assignment-experts-hub-main-footer-middle-main-row img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    margin-top: -10px;
}

.assignment-experts-hub-main-footer-middle-main-row span {
    display: block;
    font-weight: bold;
    margin-bottom: 2px;
    font-size: 14px;
}

.assignment-experts-hub-main-footer-middle-main-row span::before {
    content: "";
    display: inline-block;
    width: 20px;
    border-bottom: 2px solid var(--dark-blue);
    margin-right: 10px;
    vertical-align: middle;
    margin-top: -1px;
}

.assignment-experts-hub-main-footer-middle-main-row h2 {
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--dark-blue);
}

.assignment-experts-hub-main-footer-middle-main-row a {
    display: block;
    color: #666;
    text-decoration: none;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.assignment-experts-hub-main-footer-middle-main-row a:hover {
    color: #000;
}

/* Bottom row styles */
.assignment-experts-hub-main-footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ddd;
    padding-top: 15px;
    font-size: 14px;
}

.assignment-experts-hub-main-footer-bottom-row-left,
.assignment-experts-hub-main-footer-bottom-row-right {
    flex: 1;
}

.assignment-experts-hub-main-footer-bottom-row-right {
    text-align: right;
}

.assignment-experts-hub-main-footer-bottom-row-right a,
.assignment-experts-hub-main-footer-bottom-row-right p {
    display: inline-block;
    margin-right: 10px;
    color: #333;
    text-decoration: none;
}

.assignment-experts-hub-main-footer-bottom-row-right p {
    border: 1px solid black;
    border-radius: 25px;
    padding: 2px 9px;
    text-transform: uppercase;
    font-size: 12px;
    margin-right: 0px;
}

@media screen and (max-width: 1000px) {
    .assignment-experts-hub-main-footer-upper-row {
        width: 90%;
        height: auto;
        padding: 15px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        top: 1%;
    }

    .assignment-experts-hub-main-footer-upper-row-div-middle {
        margin: 20px auto;
    }

    .assignment-experts-hub-main-footer-middle-main-row {
        flex-direction: column;
        margin: 150px auto 50px auto;
        text-align: center;
    }

    .assignment-experts-hub-main-footer-middle-main-row div {
        flex: none;
        width: 100%;
        margin-bottom: 20px;
    }

    .assignment-experts-hub-main-footer-middle-main-row img {
        margin-top: 0;
    }

    .assignment-experts-hub-main-footer-middle-main-row span::before {
        margin-top: 0;
    }

    .assignment-experts-hub-main-footer-bottom-row {
        flex-direction: column;
        text-align: center;
        padding-top: 20px;
    }

    .assignment-experts-hub-main-footer-bottom-row-left,
    .assignment-experts-hub-main-footer-bottom-row-right {
        width: 100%;
        margin-bottom: 10px;
    }

    .assignment-experts-hub-main-footer-bottom-row-right {
        text-align: center;
    }

    .assignment-experts-hub-main-footer-upper-row-div-right {
        flex: none;
        text-align: center;
    }

    .assignment-experts-hub-main-footer-upper-row-div-right a {
        display: block;
        margin: 10px auto;
    }
}

/*------------------------------------------------------------
**************************************************************
**************** ERRORS PAGE
**************************************************************
-------------------------------------------------------------*/
.assignment-experts-hub-errors-page-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

.assignment-experts-hub-errors-page-section-header {
    margin-bottom: 30px;
}

.assignment-experts-hub-errors-page-section-header img {
    max-width: 200px;
    margin-bottom: 20px;
}

.assignment-experts-hub-errors-page-section-header h1 {
    font-size: 36px;
    color: #333;
}

.assignment-experts-hub-errors-page-section-body {
    color: #666;
    font-size: 18px;
}

.assignment-experts-hub-errors-page-section-body a {
    color: #4285f4;
    text-decoration: none;
    font-weight: bold;
}

/*------------------------------------------------------------
**************************************************************
**************** STUDENTS AUTH PAGES - SIGN UP
**************************************************************
-------------------------------------------------------------*/
.assignment-experts-hub-students-signup-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
}

.assignment-experts-hub-students-signup-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, var(--dark-blue)50%, #ffffff 50%);
    z-index: -1;
}

.assignment-experts-hub-students-signup-page-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 80%;
    margin: 10px auto;
}

.assignment-experts-hub-students-signup-page-left-col {
    width: 50%;
    padding: 20px;
    color: #fff;
    text-align: center;
    text-transform: capitalize;
}

.assignment-experts-hub-students-signup-page-right-col {
    width: 50%;
    padding: 20px;
    background-color: #fff;
    box-shadow: 1cqb 1cqb 1px var(--very-light-blue);
    border: 1px solid var(--very-light-blue);
    border-radius: 8px;
}

.assignment-experts-hub-students-signup-page-right-col-legend {
    font-size: 1.2em;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.assignment-experts-hub-students-signup-page-right-col form fieldset {
    border: none;
}

.assignment-experts-hub-students-signup-page-right-col-div-bottom {
    margin-top: 20px;
}

.assignment-experts-hub-students-signup-page-right-col-div-bottom small,
.assignment-experts-hub-students-signup-page-right-col-div-bottom p {
    margin-bottom: 10px;
}

.assignment-experts-hub-students-signup-page-right-col-div-bottom a {
    color: #007bff;
    text-decoration: none;
}

.assignment-experts-hub-students-signup-page-right-col-div-bottom a:hover {
    text-decoration: underline;
}

.assignment-experts-hub-students-signup-page-left-col img {
    height: 100px;
    width: auto;
    margin-bottom: 20px;
}

.assignment-experts-hub-students-signup-page-left-col legend {
    margin-bottom: 1px;
    color: var(--lighter-blue);
    color: #ffffff;
}

.assignment-experts-hub-students-signup-page-left-col h1 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 400;
    position: relative;
}

.assignment-experts-hub-students-signup-page-left-col h1::after {
    content: '';
    display: block;
    width: 20%;
    border-bottom: 5px solid #ffffff;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 25px;
}

.assignment-experts-hub-students-signup-page-left-col p {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 10px;
}

.assignment-experts-hub-students-signup-page-left-col-info {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.assignment-experts-hub-students-signup-page-left-col-info p {
    display: flex;
    align-items: center;
    margin: 10px;
}

.assignment-experts-hub-students-signup-page-left-col-info i {
    margin-right: 8px;
    background-color: #ffffff;
    color: #f7931e;
    border-radius: 50%;
    padding: 5px 9px;
}

/* Media query for smaller devices */
@media (max-width: 1000px) {
    .assignment-experts-hub-students-signup-page {
        height: auto;
        position: absolute;
    }

    .assignment-experts-hub-students-signup-page-row {
        flex-direction: column;
    }

    .assignment-experts-hub-students-signup-page-left-col {
        display: none;
    }

    .assignment-experts-hub-students-signup-page-right-col {
        width: 100%;
    }
}

/*------------------------------------------------------------
**************************************************************
**************** STUDENTS AUTH PAGES - SIGN IN
**************************************************************
-------------------------------------------------------------*/
.assignment-experts-hub-students-signin-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
}

.assignment-experts-hub-students-signin-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, var(--dark-blue)50%, #ffffff 50%);
    z-index: -1;
}

.assignment-experts-hub-students-signin-page-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 80%;
    margin: 10px auto;
}

.assignment-experts-hub-students-signin-page-left-col {
    width: 50%;
    padding: 20px;
    color: #fff;
    text-align: center;
    text-transform: capitalize;
}

.assignment-experts-hub-students-signin-page-right-col {
    width: 50%;
    padding: 20px;
    background-color: #fff;
    box-shadow: 1cqb 1cqb 1px var(--very-light-blue);
    border: 1px solid var(--very-light-blue);
    border-radius: 8px;
}

.assignment-experts-hub-students-signin-page-right-col-legend {
    font-size: 1.2em;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.assignment-experts-hub-students-signin-page-right-col form fieldset {
    border: none;
}

.assignment-experts-hub-students-signin-page-right-col-div-bottom {
    margin-top: 20px;
}

.assignment-experts-hub-students-signin-page-right-col-div-bottom small,
.assignment-experts-hub-students-signin-page-right-col-div-bottom p {
    margin-bottom: 10px;
}

.assignment-experts-hub-students-signin-page-right-col-div-bottom a {
    color: #007bff;
    text-decoration: none;
}

.assignment-experts-hub-students-signin-page-right-col-div-bottom a:hover {
    text-decoration: underline;
}

.assignment-experts-hub-students-signin-page-left-col img {
    height: 100px;
    width: auto;
    margin-bottom: 20px;
}

.assignment-experts-hub-students-signin-page-left-col h1 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 400;
    position: relative;
}

.assignment-experts-hub-students-signin-page-left-col h1::after {
    content: '';
    display: block;
    width: 20%;
    border-bottom: 5px solid #ffffff;
    position: absolute;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
    border-radius: 25px;
}

.assignment-experts-hub-students-signin-page-left-col p {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 10px;
}

.assignment-experts-hub-students-signin-page-left-col-info {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.assignment-experts-hub-students-signin-page-left-col-info p {
    display: flex;
    align-items: center;
    margin: 10px;
}

.assignment-experts-hub-students-signin-page-left-col-info i {
    margin-right: 8px;
    background-color: #ffffff;
    color: #f7931e;
    border-radius: 50%;
    padding: 5px 9px;
}

/* Media query for smaller devices */
@media (max-width: 1000px) {
    .assignment-experts-hub-students-signin-page {
        height: auto;
        position: absolute;
    }

    .assignment-experts-hub-students-signin-page-row {
        flex-direction: column;
    }

    .assignment-experts-hub-students-signin-page-left-col {
        display: none;
    }

    .assignment-experts-hub-students-signin-page-right-col {
        width: 100%;
    }
}

/*------------------------------------------------------------
**************************************************************
*****STUDENTS AUTH PAGES - COMMON PAGES (PASSWORD RESETS)*****
**************************************************************
-------------------------------------------------------------*/
.assignment-experts-hub-students-common-auth-pages {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px auto;
}

.assignment-experts-hub-students-common-auth-pages-row {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin: 10px auto;
}

.assignment-experts-hub-students-common-auth-pages form {
    width: 50%;
    padding: 20px;
    background-color: #fff;
    border: 1px solid var(--very-light-blue);
    border-radius: 8px;
}

.assignment-experts-hub-students-common-auth-pages form legend {
    font-size: 1.2em;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.assignment-experts-hub-students-common-auth-pages form fieldset {
    border: none;
}

.assignment-experts-hub-students-common-auth-pages form .form-group {
    margin-top: 20px;
}

.assignment-experts-hub-students-common-auth-pages form .form-group button {
    width: 100%;
}

.assignment-experts-hub-students-common-auth-pages-row a {
    margin-top: 20px;
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    background-color: #007bff;
    padding: 10px 20px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.assignment-experts-hub-students-common-auth-pages-row a:hover {
    background-color: #0056b3;
}

/* Media query for smaller devices */
@media (max-width: 1000px) {
    .assignment-experts-hub-students-common-auth-pages {
        height: auto;
    }

    .assignment-experts-hub-students-common-auth-pages-row {
        flex-direction: column;
    }

    .assignment-experts-hub-students-common-auth-pages form {
        width: 100%;
    }
}

/*------------------------------------------------------------
**************************************************************
********************* ABOUT US PAGE 
**************************************************************
-------------------------------------------------------------*/

.assignment-experts-hub-about-us-main-page {
    text-decoration: none;
}

.assignment-experts-hub-about-us-main-page-row {
    display: flex;
    margin: 80px auto;
    text-align: justify;
}

.assignment-experts-hub-about-us-main-page-left-div {
    flex: 1;
    padding: 10px;
}

.assignment-experts-hub-about-us-main-page-right-div {
    flex: 1;
    padding: 10px;
}

.assignment-experts-hub-about-us-main-page-row h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--dark-blue);
    text-transform: capitalize;
}

.assignment-experts-hub-about-us-main-page-row p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--light-pale-dark);
}

.assignment-experts-hub-about-us-main-page-row ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.assignment-experts-hub-about-us-main-page-row li {
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .assignment-experts-hub-about-us-main-page-row {
        flex-direction: column;
    }

    .assignment-experts-hub-about-us-main-page-left-div,
    .assignment-experts-hub-about-us-main-page-right-div {
        flex: none;
        width: 100%;
    }
}

/*------------------------------------------------------------
**************************************************************
*********************Privacy Policy Page
**************************************************************
-------------------------------------------------------------*/
.assignment-experts-hub-privacy-policy-page {
    margin: 50px auto;
}

.assignment-experts-hub-privacy-policy-page h1 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.assignment-experts-hub-privacy-policy-page h2 {
    font-size: 28px;
    font-weight: bold;
    color: #444;
    margin-top: 30px;
    margin-bottom: 15px;
}

.assignment-experts-hub-privacy-policy-page h3 {
    font-size: 24px;
    font-weight: bold;
    color: #555;
    margin-top: 25px;
    margin-bottom: 10px;
}

.assignment-experts-hub-privacy-policy-page p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.assignment-experts-hub-privacy-policy-page ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.assignment-experts-hub-privacy-policy-page li p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}

.assignment-experts-hub-privacy-policy-page a {
    color: #007bff;
    text-decoration: none;
}

.assignment-experts-hub-privacy-policy-page a:hover {
    text-decoration: underline;
}

/*------------------------------------------------------------
**************************************************************
*********************terms and conditions page
**************************************************************
-------------------------------------------------------------*/

.assignment-experts-hub-terms-and-conditions-page {
    margin: 50px auto;
}

.assignment-experts-hub-terms-and-conditions-page h1 {
    color: #333;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.assignment-experts-hub-terms-and-conditions-page p {
    color: #555;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.assignment-experts-hub-terms-and-conditions-page h2 {
    color: #444;
    font-size: 28px;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 15px;
}

.assignment-experts-hub-terms-and-conditions-page h3 {
    color: #555;
    font-size: 24px;
    font-weight: bold;
    margin-top: 25px;
    margin-bottom: 10px;
}

.assignment-experts-hub-terms-and-conditions-page ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.assignment-experts-hub-terms-and-conditions-page ul li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.assignment-experts-hub-terms-and-conditions-page ul li p {
    margin-bottom: 5px;
}

/*------------------------------------------------------------
**************************************************************
********************* Refund Policy Page
**************************************************************
-------------------------------------------------------------*/

.assignment-experts-hub-refund-policy-page {
    margin: 50px auto;
}

.assignment-experts-hub-refund-policy-page h1 {
    color: #333;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.assignment-experts-hub-refund-policy-page p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.assignment-experts-hub-refund-policy-page h2 {
    color: #444;
    font-size: 28px;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 15px;
}

.assignment-experts-hub-refund-policy-page h3 {
    color: #555;
    font-size: 24px;
    font-weight: bold;
    margin-top: 25px;
    margin-bottom: 10px;
}

.assignment-experts-hub-refund-policy-page ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.assignment-experts-hub-refund-policy-page ul li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.assignment-experts-hub-refund-policy-page ul li p {
    margin-bottom: 5px;
}

.assignment-experts-hub-refund-policy-page a {
    color: #007bff;
    text-decoration: none;
}

.assignment-experts-hub-refund-policy-page a:hover {
    text-decoration: underline;
}


/*------------------------------------------------------------
**************************************************************
*********************CONTACT US PAGE
**************************************************************
-------------------------------------------------------------*/

.assignment-experts-hub-contact-us-page {
    padding-top: 40px;
    padding-bottom: 40px;
}

.assignment-experts-hub-contact-us-page .assignment-experts-hub-contact-us-page-row-upper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.assignment-experts-hub-contact-us-page .assignment-experts-hub-contact-us-page-row-upper>div {
    text-align: center;
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid #ccc;
}

.assignment-experts-hub-contact-us-page .assignment-experts-hub-contact-us-page-row-upper>div:last-child {
    border-right: none;
}

.assignment-experts-hub-contact-us-page .assignment-experts-hub-contact-us-page-row-upper div img {
    width: auto;
    height: 200px;
    display: none;
}

.assignment-experts-hub-contact-us-page .assignment-experts-hub-contact-us-page-row-upper div span {
    color: #ffffff;
    border-radius: 50%;
    font-size: 30px;
    background-color: var(--dark-blue);
    padding: 3px 10px;
}

.assignment-experts-hub-contact-us-page .assignment-experts-hub-contact-us-page-row-upper div p {
    font-weight: bold;
    margin-top: 10px;
}

.assignment-experts-hub-contact-us-page .assignment-experts-hub-contact-us-page-row-upper div a {
    margin-top: 5px;
    text-decoration: none;
    color: #333;
}

.assignment-experts-hub-contact-us-page .assignment-experts-hub-contact-us-page-row-middle {
    margin-top: 40px;
}

.assignment-experts-hub-contact-us-page .assignment-experts-hub-contact-us-page-row-middle h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.assignment-experts-hub-contact-us-page .assignment-experts-hub-contact-us-page-row-middle p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.assignment-experts-hub-contact-us-page .assignment-experts-hub-contact-us-page-row-lower iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 10px;
}

@media screen and (max-width: 1000px) {
    .assignment-experts-hub-contact-us-page .assignment-experts-hub-contact-us-page-row-upper {
        flex-direction: column;
        align-items: stretch;
        padding: 0;
    }

    .assignment-experts-hub-contact-us-page .assignment-experts-hub-contact-us-page-row-upper>div {
        border-right: none;
        border-bottom: 1px solid #ccc;
    }

    .assignment-experts-hub-contact-us-page .assignment-experts-hub-contact-us-page-row-upper>div:last-child {
        border-bottom: none;
    }

    .assignment-experts-hub-contact-us-page .assignment-experts-hub-contact-us-page-row-upper div {
        padding: 20px;
        flex: 1;
    }

    .assignment-experts-hub-contact-us-page .assignment-experts-hub-contact-us-page-row-lower iframe {
        border-radius: 0;
    }
}

/*------------------------------------------------------------
**************************************************************
********************* MAIN BLOG PAGE
**************************************************************
-------------------------------------------------------------*/

.assignment-experts-hub-main-blog-page {
    padding: 50px 0;
}

.assignment-experts-hub-main-blog-page-row {
    display: flex;
    justify-content: space-between;
}

.assignment-experts-hub-main-blog-page-row-div-main-left {
    flex-basis: 70%;
}

.assignment-experts-hub-main-blog-page-row-div-main-left-blog-details {
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    max-width: 90%;
}

.assignment-experts-hub-main-blog-page-row-div-main-left-blog-details h1 {
    font-size: 22px;
    margin-bottom: 10px;
}

.assignment-experts-hub-main-blog-page-row-div-main-left-blog-details p {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
}

.assignment-experts-hub-main-blog-page-row-div-main-left-blog-details img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 15px;
}

@media (max-width: 1000px) {
    .assignment-experts-hub-main-blog-page-row {
        flex-direction: column;
        align-items: center;
    }

    .assignment-experts-hub-main-blog-page-row-div-main-left-blog-details {
        max-width: 100%;
    }

    .assignment-experts-hub-main-blog-page-row-div-main-left {
        width: 100%;
    }

    .assignment-experts-hub-main-blog-page-row-div-main-left-blog-details {
        width: 100%;
    }
}

/*------------------------------------------------------------
**************************************************************
********************* MAIN BLOG DETAILS PAGE
**************************************************************
-------------------------------------------------------------*/

.assignment-experts-hub-main-blog-details-page {
    padding: 50px 0;
}

.assignment-experts-hub-main-blog-details-page .assignment-experts-hub-main-blog-details-page-row {
    display: flex;
    justify-content: space-between;
}

.assignment-experts-hub-main-blog-details-page-row-div-main-left {
    flex-basis: 70%;
}

.assignment-experts-hub-main-blog-details-page-row-div-main-left-blog-details {
    margin-bottom: 20px;
    padding: 20px;
    max-width: 90%;
}

.assignment-experts-hub-main-blog-details-page-row-div-main-left-blog-details h1 {
    font-size: 22px;
    margin-bottom: 10px;
}

.assignment-experts-hub-main-blog-details-page-row-div-main-left-blog-details p {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    text-align: justify;
}

.assignment-experts-hub-main-blog-details-page-row-div-main-left-blog-details img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 15px;
}

.assignment-experts-hub-widgets {
    flex-basis: 30%;
}

.assignment-experts-hub-widgets .widget form {
    display: flex;
}

.assignment-experts-hub-widgets .widget input[type="text"] {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    flex: 1;
}

.assignment-experts-hub-widgets .widget button {
    padding: 8px 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 2px;
}

.assignment-experts-hub-widgets .widget {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f5f5f5;
    border-radius: 5px;
}

.assignment-experts-hub-widgets .widget h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.assignment-experts-hub-widgets .widget ul {
    list-style: none;
    padding: 0;
}

.assignment-experts-hub-widgets .widget ul li {
    margin-bottom: 8px;
}

.assignment-experts-hub-widgets .widget ul li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.assignment-experts-hub-widgets .widget ul li a:hover {
    color: #007bff;
}

@media (max-width: 1000px) {
    .assignment-experts-hub-main-blog-details-page .assignment-experts-hub-main-blog-details-page-row {
        flex-direction: column;
        align-items: center;
    }

    .assignment-experts-hub-main-blog-details-page-row-div-main-left-blog-details {
        max-width: 100%;
    }

    .assignment-experts-hub-main-blog-details-page-row-div-main-left,
    .assignment-experts-hub-widgets {
        width: 100%;
    }
}

/*------------------------------------------------------------
**************************************************************
********************* MAIN SEARCH PAGE
**************************************************************
-------------------------------------------------------------*/
.assignment-experts-hub-main-search-page {
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

.assignment-experts-hub-main-search-page h2 {
    font-size: 25px;
    margin-bottom: 10px;
    color: #333;

}

.assignment-experts-hub-main-search-page .search-results {
    padding: 15px;
    background-color: #f5f5f5;
    border-radius: 5px;
    margin-bottom: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.assignment-experts-hub-main-search-page .search-results a {
    text-decoration: none;
    font-weight: bold;
    line-height: 1.4;
    display: block;
    margin-bottom: 5px;
    color: var(--lighter-blue);
}

.assignment-experts-hub-main-search-page .search-results a:hover {
    color: #555;
}

.assignment-experts-hub-main-search-page p {
    font-size: 18px;
    color: #555;
    font-style: italic;
}

/*------------------------------------------------------------
**************************************************************
********************* FAQS PAGE
**************************************************************
-------------------------------------------------------------*/
.assignment-experts-hub-faq-page {
    padding: 50px 0;
}

.assignment-experts-hub-faq-page .assignment-experts-hub-faq-page-row {
    display: flex;
    justify-content: space-between;
}

.assignment-experts-hub-main-faq-page-row-div-main-left {
    flex-basis: 70%;
}

.assignment-experts-hub-main-faq-page-row-div-main-left-details {
    margin-bottom: 20px;
    padding: 20px;
    max-width: 90%;
}

@media (max-width: 1000px) {
    .assignment-experts-hub-faq-page .assignment-experts-hub-faq-page-row {
        flex-direction: column;
        align-items: center;
    }

    .assignment-experts-hub-main-faq-page-row-div-main-left-details {
        max-width: 100%;
    }

    .assignment-experts-hub-main-faq-page-row-div-main-left,
    .assignment-experts-hub-widgets {
        width: 100%;
    }
}

/*------------------------------------------------------------
**************************************************************
********************* SERVICES PAGE
**************************************************************
-------------------------------------------------------------*/

.assignment-experts-hub-services-page {
    padding: 50px 0;
}

.assignment-experts-hub-services-page .assignment-experts-hub-services-page-row {
    display: flex;
    justify-content: space-between;
}

.assignment-experts-hub-main-services-page-row-div-main-left {
    flex-basis: 70%;
}

.assignment-experts-hub-main-services-page-row-div-main-left-details {
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    max-width: 90%;
}

.assignment-experts-hub-main-services-page-row-div-main-left-details h1 {
    font-size: 22px;
    margin-bottom: 10px;
}

.assignment-experts-hub-main-services-page-row-div-main-left-details p {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
}

.assignment-experts-hub-main-services-page-row-div-main-left-details img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 15px;
}

@media (max-width: 1000px) {
    .assignment-experts-hub-services-page .assignment-experts-hub-services-page-row {
        flex-direction: column;
        align-items: center;
    }

    .assignment-experts-hub-main-services-page-row-div-main-left-details {
        max-width: 100%;
    }

    .assignment-experts-hub-main-services-page-row-div-main-left,
    .assignment-experts-hub-widgets {
        width: 100%;
    }
}

/*------------------------------------------------------------
**************************************************************
********************* SERVICES DETAILS PAGE
**************************************************************
-------------------------------------------------------------*/

.assignment-experts-hub-services-details-page {
    padding: 50px 0;
}

.assignment-experts-hub-services-details-page .assignment-experts-hub-services-details-page-row {
    display: flex;
    justify-content: space-between;
}

.assignment-experts-hub-main-services-details-page-row-div-main-left {
    flex-basis: 70%;
}

.assignment-experts-hub-main-services-details-page-row-div-main-left-details {
    margin-bottom: 20px;
    padding: 20px;
    max-width: 90%;
}

.assignment-experts-hub-main-services-details-page-row-div-main-left-details h1 {
    font-size: 22px;
    margin-bottom: 10px;
}

.assignment-experts-hub-main-services-details-page-row-div-main-left-details p {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    text-align: justify;
}

.assignment-experts-hub-main-services-details-page-row-div-main-left-details img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 15px;
}

@media (max-width: 1000px) {
    .assignment-experts-hub-services-details-page .assignment-experts-hub-services-details-page-row {
        flex-direction: column;
        align-items: center;
    }

    .assignment-experts-hub-main-services-details-page-row-div-main-left-details {
        max-width: 100%;
    }

    .assignment-experts-hub-main-services-details-page-row-div-main-left,
    .assignment-experts-hub-widgets {
        width: 100%;
    }
}

/*------------------------------------------------------------
**************************************************************
********************* SERVICES ERRORS PAGE
**************************************************************
-------------------------------------------------------------*/

.assignment-experts-hub-errors-page-section {
    text-align: center;
    padding: 50px;
}

.assignment-experts-hub-errors-page-section img.error-image {
    max-width: 100px;
    margin-bottom: 20px;
}

.assignment-experts-hub-errors-page-section h1 {
    color: #ff0000;
}

.assignment-experts-hub-errors-page-section-body {
    margin-top: 20px;
}

.assignment-experts-hub-errors-page-section-body p {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.assignment-experts-hub-errors-page-section-body a {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
}

.assignment-experts-hub-errors-page-section-body a:hover {
    text-decoration: underline;
}