:root {
    --Primary: #002c3f;
    --Secondary: #0fc264;
    --grey: #0f516d;
    --greenGradient: linear-gradient(180deg,
            rgba(0, 154, 73, 1) 0%,
            rgba(18, 219, 113, 1) 100%);
    --white: #fff;
    --darkGreen: #009A49;
    --yellowbg: #F2F6DD;
}

.Primarybg {
    background: var(--Primary);
}

.darkGreenbg {
    background: var(--darkGreen);
}

.topSec {
    background: var(--Primary);
}

.bgsecondary {
    background: var(--Secondary);
}

.greentxt {
    color: var(--Secondary);
}

.greentext {
    color: var(--darkGreen);
}

.bluetxt {
    color: var(--Primary);
}

html {
    overflow-x: hidden;
}

body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-shadow: border-box;
    overflow-x: hidden;

}

h1,
h2,
h3,
h4,
h5,
h6 {
    /* font-family: "Archivo Black", sans-serif; */
    font-family: "Poppins", sans-serif;
    font-weight: 700;

}

.Archivo {
    /* font-family: "Archivo Black", sans-serif; */
    font-family: "Poppins", sans-serif;
}

.fs17 {
    font-size: 17px;
}

.headerSec {
    background: var(--greenGradient);
}

.headerSec .nav-link {
    color: var(--white);
    font-size: 16px;
    font-weight: 300;
}

.headerSec .nav-link.active {
    color: var(--white);
    font-weight: 700;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
    color: var(--white);
}
.headerSec .dropdown-item.active, .headerSec .dropdown-item:active{
     background: var(--darkGreen);
}
.sliderSec ul li {
    flex: 45%;
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sliderSec ul li img {
    margin-right: 6px;
}

.sliderSec {
    background: url("../../assets/images/headerLayer.webp"), var(--grey);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.fs47 {
    font-size: 47px;
}

.fs25 {
    font-size: 25px;
}

.headerForm {
    background: linear-gradient(180deg, rgba(18, 219, 113, 1) 0%, rgba(9, 115, 59, 1) 100%);
    border-radius: 20px;
}

.fs30 {
    font-size: 30px;
}

.lh33 {
    line-height: 33px;
}

.headerForm .form-control {
    background: var(--Primary);
    border-color: var(--Primary);
    color: var(--white);
    appearance: auto;
    padding: 8px 10px;
}

.headerForm .form-group {
    margin: 10px 0;
}

.headerForm button {
    background: var(--Primary);
    width: 100%;
    border: 1px solid var(--Primary);
    padding: 0.4rem 0;
    border-radius: 6px;
    box-shadow: 0px 0px 5px #3333;
    color: var(--white);
}

.unislider {
    background: var(--yellowbg);
}

.banner-anim {
    width: 100%;
    height: 110px;
    /* apni image ki height ke mutabiq */
    background: url("../../assets/images/unibanner.webp") repeat-x;
    background-size: cover;

    animation: animatedBackground 50s linear infinite;
}

@keyframes animatedBackground {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -4750px 0;
    }
}


.accountingtabs .nav-tabs .nav-link {
    width: 100%;
    background: var(--Secondary);
    border-radius: 40px;
    color: var(--white);
    padding: 5px 5px;
    font-size: 20px;
}

.accountingtabs .nav-tabs {
    gap: 17px;
}

.accountingtabs .nav-tabs .nav-link .iconaccount {
    width: 50px;
    height: 50px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}

.accountingtabs .nav-tabs .nav-link.active {
    background: var(--white);
    color: #000;
    border-color: var(--Secondary);
    font-weight: 600;
}

.accountingtabs .nav-tabs .nav-link.active .iconaccount {
    background: var(--Secondary);
}

.accountingtabs .nav-tabs .nav-link.active .iconaccount img {
    filter: brightness(0) invert(1);
}

.fs45 {
    font-size: 45px;
}

.contentSec {
    background: var(--yellowbg);
}

.actionInfo li a {
    background: var(--Primary);
    padding: 7px 2rem;
    text-decoration: none;
    color: var(--white);
    border-radius: 5px;
}

.ctaSec {
    background: url("../../assets/images/ctaBg.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.fs50 {
    font-size: 50px;
}

.servItems {
    box-shadow: 0px 0px 10px #3333;
    padding: 1.6rem 14px;
    border-radius: 20px;
}

.fs14 {
    font-size: 14px;
}

.serviceSec {
    background: var(--yellowbg);
}

.servItems:hover {
    background: var(--Primary);
}

.servItems:hover p {
    color: var(--white);
}

.servItems:hover img {
    filter: brightness(0) invert(1);
}

.counterItems {
    margin: 10px 0;
    text-align: center;
}

.counterItems p {
    margin: 0;
}

.fs60 {
    font-size: 60px;
}

.lh64 {
    line-height: 64px;
}

.green {
    background: var(--darkGreen) !important;
}

.contentSc {
    background: var(--Primary);
}

.contentWrapper {
    background: var(--yellowbg);
    padding: 2rem 2rem;
    border-radius: 20px;

}

.content-area-overflow {
    overflow-y: scroll;
    overflow-x: hidden;
    height: 1630px;
}

.contentWrapper .listitems li {
    flex: 40%;
    display: flex;
    align-items: center;
    gap: 7px;
}

.our-assignment {
    background: url("../../assets/images/our-assignment-Bg.webp")bottom/cover no-repeat;
}

.our-assignment span.name {
    font-size: 30px;
    font-weight: 600;
}

.our-assignment .stars i {
    color: #fdcf0a;
}

.our-assignment .country {
    font-size: 24px;
}

.our-assignment .content-area {
    padding: 30px 20px 10px;
}

img.qoutes-1 {
    position: absolute;
    left: 0px;
    top: 0px;
}

img.qoutes-2 {
    position: absolute;
    right: 0px;
    bottom: 0px;
    transform: scaleX(-1);
}

.assignment-box .profile {
    width: 100px;
}

.linebar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 0;
    width: fit-content;
    margin: auto;
}

.process-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.border-box {
    border: 10px solid white;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    width: 100px;
    border-radius: 50%;
}

.border-box div {
    background: #002C3F;
    padding: 10px;
    border-radius: 50%;
}

.border-box div img {
    width: 60px;
    height: auto;
}

.border-box div:hover {
    background: #00B040;
}

.process-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-box .no {
    font-size: 40px;
    font-weight: bold;
}

span.title {
    font-size: 20px;
    font-weight: 600;
}

.expert-assignment {
    background: url("../../assets/images/expert-assignment.webp")center/cover no-repeat;
}

.expert-assignment .left-content {
    padding: 32px 3rem;
    background: #fff;
    border-radius: 20px;
}

.expert-assignment .student-girl {
    position: relative;
    left: -40px;
    width: 350px;

}

.expert-assignment .right-content ul {
    /* background: #002C3F; */
    padding: 40px 20px;
}

.expert-assignment .right-content ul li {
    /* padding: 20px; */
    text-align: center;
    text-decoration: none;
    list-style: none;
    /* margin: 10px 0; */

}

.expert-assignment .right-content ul li a {
    text-decoration: none;
    font-size: 20px;
    color: white;
    background: var(--Primary);
    display: block;
    padding: 0.6rem 0;
    border-radius: 5px;
}

.expert-assignment .right-content ul li a span {
    display: block;
}

.fs40 {
    font-size: 40px;
}

.faq-box span {
    font-size: 30px;
    color: var(--Secondary);
    font-weight: 700;
    line-height: 40px;
    display: block;
    margin-bottom: 10px;
}

.faq-box p {
    font-weight: 500;
    font-size: 20px;
}

.copy-right {
    background: var(--Secondary);
    padding: 10px;
}

footer {
    background: #002C3F;
    padding: 50px 0px;
}

footer span {
    font-size: 20px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    color: #fff;
}

footer ul li a {
    text-decoration: none;
    color: black;
    padding-bottom: 10px;
    display: block;
    color: #fff;
}

footer ::marker {
    color: #fff;
}

.overlay-box img {
    width: 100%;
}

.overlay-box {
    position: relative;
}

.overlay {
    background: var(--yellowbg);
}

.yellow {
    color: #fdcf0a;
}

.hoveroverlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: var(--white);
    border-radius: 20px;
    padding: 2rem 26px;
    transform: translate(0px, 98px) rotate3d(1, 1, 1, -10deg);
    height: fit-content;
}

.overlay-box:hover .hoveroverlay {
    display: block;
}

.fs12 {
    font-size: 12px;
}

.fs11 {
    font-size: 11px;
}

.fs10 {
    font-size: 10px;
}

/* .overlay-box {
      position: relative;
      width: 50%;
    }

.overlay-box    .image {
      display: block;
      width: 100%;
      height: auto;
    }

    .overlay {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      height: 100%;
      width: 100%;
      opacity: 0;
      transition: .5s ease;
      background-color: #008CBA;
    }

    .overlay-box:hover .overlay {
      opacity: 1;
    }

.overlay-box    .text {
      color: white;
      font-size: 20px;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      text-align: center;
    } */

.assignmentSwiper .swiper-pagination-bullet {
    width: 50px !important;
    height: 50px !important;
    background: none !important;
    /* remove default dot */
    opacity: 1 !important;
    margin: 0 5px;
    border-radius: 50% !important;

    overflow: hidden;
}

.assignmentSwiper .swiper-pagination-bullet img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    /* display: block; */
}

.assignmentSwiper .swiper-wrapper {
    padding-bottom: 3rem;
}

.graphIcon {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 121px;
}

.visionWrap {
    background: var(--Primary);
    position: relative;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    height: 100%;
}

.visionWrap::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    background: var(--Primary);
    transform: translate(-315px, 0px);
    z-index: -1;
    height: 100%;
}

.missionWrap {
    background: var(--darkGreen);
    position: relative;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    height: 100%;
}

.missionWrap::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    background: var(--darkGreen);
    transform: translate(-315px, 0px);
    z-index: -1;
    height: 100%;
}


.reviews-sec .nav-pills .nav-link.active,
.reviews-sec .nav-pills .show>.nav-link {
    background: var(--greenGradient);
}

.reviews-sec .nav-pills .nav-link {
    background: var(--grey);
    width: 100%;
    height: 100%;
}

img.Reviews-oi {
    width: 180px;
}

.reviews-sec .nav-pills .nav-link .fa-star {
    color: #ffd000;
    font-size: 13px;
}

.review-box {

    border: 1px solid;
    border-radius: 25px 25px 0px 0px;
    position: relative;
    margin-bottom: 20px;
}

.review-box .content {
    padding: 20px;
    position: relative;
    border-radius: 23px;
}

.review-box .content p {
    font-size: 14px;
}

.review-box .name {
    font-weight: 700;
    display: block;
    font-size: 22px;
}

.review-box .date {
    font-weight: 500;
}

.review-box .fa-star {
    color: #ffd000;
    font-size: 14px;
}

.review-box object {
    position: absolute;
    right: 10px;
    width: 40px;
    bottom: 6%;
}

.review-box .end-sec {
    padding: 20px;
    background: var(--Secondary);
}

.review-box .end-sec span {
    font-size: 14px;
    color: white;
}

.review-box .end-sec img {
    width: 130px;
}

.price-plan ul li:nth-child(1) {
    background: var(--Secondary) !important;
    color: white;
    font-size: 28px;
    font-weight: 700;
    padding: 6px;
    text-align: center;
}

.price-plan ul li:nth-child(odd) {
    background: #BEFFDD;
}

.price-plan ul li {
    text-align: center;
    padding: 20px;
}

.price-plan ul {
    list-style: none;
}

.price-plan ul li .days {
    font-weight: 500;
    font-size: 18px;
}

.price-plan ul li .prices {
    font-weight: 700;
}

.price-plan .swiper-slide:nth-child(2) ul li:first-child,
.price-plan .swiper-slide:nth-child(4) ul li:first-child {
    background: var(--grey) !important;
    color: white;
}

.price-plan h2 {
    background: var(--greenGradient);
    padding: 20px 40px;
    font-size: 30px;
    color: white;
    display: inline-block;
    border-radius: 20px 20px 0px 0px;
}

.form-group label {
    display: block;
    padding: 5px 10px;
}

.form-group select {
    width: 100%;
    padding: 8px;
    font-size: 15px;
    border-radius: 6px;
    border: 1px solid;

}

.form-group div {
    width: 100%;
}

.form-group textarea {
    width: 100%;
    padding: 15px 20px 30px;
    border-radius: 6px;
    border: 1px solid;

}

.file-upload {
    border: 2px dashed #003e47;
    border-radius: 8px;
    padding: 10px 20px;
    text-align: center;
    cursor: pointer;
    transition: background-color .2s;
    margin-top: 7px;
}

.form-group input {
    width: 100%;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid;
}

input[type="radio"] {
    width: auto;
}

.order-form button {
    width: 360px;
    padding: 6px;
    background: var(--Primary);
    color: var(--white);
    font-size: 20px;
    border-radius: 7px;
    border: 0px;
}

.form-group textarea::placeholder {
    font-size: 15px;
    color: black;
}

.form-group input::placeholder {
    font-size: 15px;
    color: white;
}

.order-summary {
    background: url("../../assets/images/SummaryBanner.webp")center/cover no-repeat;
    padding: 20px;

}

.order-summary span {
    display: block;
    margin-bottom: 6px;
    border-bottom: 1px solid;
    padding: 10px 0px;
}

.order-summary .total-price {
    font-size: 18px;
}

.order-summary div {
    border-bottom: 1px solid;
}

.order-summary div span {
    border: none;
}

.order-form .headings {
    font-size: 30px;
    background: var(--Secondary);
    padding: 10px;
    color: var(--white);
    display: inline;
}

.payment {
    background: var(--Primary);
    color: white;
    padding: 10px 20px;
    margin: 10px 0px;
    display: flex;
    gap: 20px;
    align-items: center;
    border-radius: 20px;
}

.payment .currency-symbol .currency {
    font-size: 30px;
    display: inline-block;
    border: 4px solid var(--Secondary);
    padding: 6px 16px;
    border-radius: 50%;
}

.currency-symbol span:nth-child(2) {
    font-size: 26px;
    font-weight: 600;
    display: block;
    border-top: 3px solid;
    margin-top: 10px;
    text-align: end;
}

.order-over span:nth-child(1) {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    display: block;
}

.order-over span:nth-child(2) {
    font-size: 20px;
}

.payment-method-icons {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 9px;
    margin-bottom: 10px;
    align-items: center;
}

.border-green input,
.border-green select {
    background: var(--Secondary);
    color: white;
}

.heading1 {
    background: var(--darkGreen);
    padding: 1rem 1rem;
    border-radius: 12px;
    color: #fff;
    font-size: 28px;
    margin-bottom: 0.6rem;
}

.heading2 {
    background: var(--Primary);
    padding: 1rem 1rem;
    border-radius: 12px;
    color: #fff;
    font-size: 28px;
    margin-bottom: 0.6rem;
}

.sitemapdata ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    text-align: center;
    margin: 15px 0;
}

.sitemapdata ul li {
    width: 32%;
    padding: 0.4rem 0;
    background: #e2e0e033;
    border-radius: 4px;
    display: flex;
    align-items: center;
}

.sitemapdata ul li a {
    color: #000;
    font-size: 16px;
    font-weight: normal;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 7px;
}

/* Default header */
.headerSec {
    position: relative;
    width: 100%;
    z-index: 9999;
    transition: all 0.3s ease;
}

/* Scroll hone ke baad sticky */
.headerSec.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--greenGradient);
    /* ya koi bhi bg */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.swiper-pagination-bullet {
    padding: 6px;
}

.process .swiper-pagination-bullet-active,
.overlay .swiper-pagination-bullet-active,
.reviews-sec .swiper-pagination-bullet-active,
.price-plan .swiper-pagination-bullet-active {
    background: var(--Secondary);
}

.reviews-sec .nav .nav-item {
    flex: 1;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.content-area-overflow::-webkit-scrollbar {
    width: 8px;
    /* scroll bar ki width */
}

.content-area-overflow::-webkit-scrollbar-track {
    background: #D9D9D9;
    /* track ka color */
    border-radius: 10px;
}

.content-area-overflow::-webkit-scrollbar-thumb {
    background: var(--greenGradient);
    /* handle ka color */
    border-radius: 10px;
}

.content-area-overflow::-webkit-scrollbar-thumb:hover {
    background: var(--greenGradient);
    /* hover pe dark */
}

.end-sec-last {
    background: var(--Primary);
    padding: 20px;
    color: var(--white);
}

.end-sec-last img {
    width: 90px;
}

.fixedbtnwhatsapp {
    position: fixed;
    bottom: 1em;
    left: 2em;
    z-index: 999999;
}

.listexperts li {
    flex: 1 1 40%;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.writerCount ul li {
    flex: 40%;
    box-shadow: 0px 0px 10px #3333;
    padding: 1rem 0;
    border-radius: 20px;
    background: #f8f8f8;
    border: 2px solid #3333;
}

.writerCount ul li:hover {
    background: var(--Secondary);
}

.writerCount ul {
    row-gap: 20px;
    column-gap: 20px;
}

#cover-spin {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 9999;
    display: none;
}

#cover-spin::after {
    content: "";
    display: block;
    position: absolute;
    left: 48%;
    top: 45%;
    width: 60px;
    height: 60px;
    border-style: solid;
    border-color: var(--darkGreen) transparent;
    border-width: 4px;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}