@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --header-gradient: linear-gradient(90deg,
            rgba(46, 204, 113, 0.05) 0%,
            rgba(46, 204, 113, 0.2) 100%);
    --primary-color: #020817;
    --secondry-color: #2ecc71;
    --para-color: #4b5563;
    --white-color: #ffffff;
    --grey-card: #f9fafb;

}

body {
    font-family: "Poppins", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    font-size: 16px;
}

a {
    color: var(--secondry-color);
    transition: all .3s ease;
    text-decoration: none;
}

a:hover,
a:focus,
a:active {
    color: var(--secondry-color);
    opacity: 0.8;
}

audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
    display: inline-block;
}

img {
    max-width: 100%;
    height: auto;
}

p {
    margin-bottom: 0px;
    line-height: 1.4;
    color: var(--para-color);
}

header {
    position: sticky;
    top: 0;
    left: 0;
    background: var(--white-color);
    z-index: 2;
    border-bottom: 1px solid #0000000f;
}

.custom-table::-webkit-scrollbar {
    width: 12px;
    height: 8px;
}

.custom-table::-webkit-scrollbar-track {
    background: #c7c7c7;
}

.custom-table::-webkit-scrollbar-thumb {
    background-color: var(--secondry-color);
    border-radius: 20px;
    border: 3px solid var(--secondry-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

ul {
    padding-left: 0px;
    list-style-type: none;
    margin-bottom: 0px;
}

.header-content ul {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-content ul li a {
    font-weight: 500;
    position: relative;
    text-decoration: none;
    color: var(--primary-color);
}

.header-content ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: var(--secondry-color);
    transition: width 0.3s ease, background-color 0.3s ease;
}

.header-content ul li a:hover::before {
    width: 100%;
    background-color: var(--secondry-color);
}

.header-content ul li a:hover {
    color: var(--secondry-color);
}

.hero-section {
    background: var(--header-gradient);
    padding-block: 8rem;
}

.video-container video,
.video-container iframe {
    width: 100%;
    border-radius: .5rem;
    border: 1px solid var(--secondry-color);
    background: var(--header-gradient);
    padding: 1rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    min-height: 450px;
    object-fit: cover;
}


.site-logo a {
    color: var(--secondry-color);
    font-weight: 700;
    font-size: 24px;
}

.hero-left-content {
    display: grid;
    gap: 1.2rem;
}

section {
    margin-block: 4rem;
}

.hero-left-content .badges {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: var(--white-color);
    background: #ff9f43;
    padding: 8px 24px;
    border-radius: 50px;
    width: fit-content;
}

.hero-left-content .badges+span,
.subheading,
.key-heading {
    font-size: 3rem;
    line-height: 48px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;

}

.subheading,
.key-heading {
    font-size: 36px;
    line-height: 40px;
    text-align: center;
    margin-bottom: 3.12rem;
}

.key-heading {
    font-size: 1.5rem;
    line-height: 28px;
    font-weight: 700;
}

.hero-left-content p {
    color: #374151;
    font-size: 18px;
    font-weight: 400;
}

.btn-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btns {
    border-radius: 6px;
    box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1),
        0px 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 700;
}

.btns:hover,
.btns:focus,
.btns:active {
    color: var(--primary-color);
}

.hero-seperator,
.hero-seperator div {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding-top: .5rem;
    flex-wrap: wrap;
}

.hero-seperator div {
    gap: .3rem;
    color: #4b5563;
}

.hero-seperator div+span,
.footer-bottom .seperator {
    height: 16px;
    background: #c0c3c7;
    width: 1px;
    margin-top: .5rem;
}

.hero-seperator div>span {
    font-size: 14px;
}

.primary-btn {
    background: var(--secondry-color);
    color: var(--white-color);
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: .5rem;
    background: var(--secondry-color);
    color: var(--white-color);
    border: 2px solid transparent;
    box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1), 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.text-bg {
    position: relative;
}

.text-bg::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 8px;
    background: rgba(255, 159, 67, 0.2);
    height: 12px;
    width: 100%;
    z-index: -1;
}

.secondry-btn {
    border: 2px solid var(--secondry-color);
}

.shadow-box {
    background: var(--white-color);
    border-radius: .5rem;
    box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1),
        0px 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    padding: 1.3rem;
    display: flex;
    flex-direction: column;
    gap: .8rem;
    height: 100%;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.shadow-box:hover {
    transform: translateY(-5px);
}

.shadow-box .head {
    font-size: 20px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
}

.shadow-box p,
.key-cards p {
    font-size: 15px;
}

.shadow-box p {
    font-family: "Poppins", sans-serif;
    color: var(--para-color);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.15rem rgba(46, 204, 113, 0.15);
    ;
}

.date {
    color: #9ca3af;
    font-size: 14px;
}

.icon-box {
    background: rgba(46, 204, 113, 0.1);
    width: 4rem;
    height: 4rem;
    border-radius: 50px;
    display: grid;
    place-content: center;
}

.icon-box i {
    font-size: 1.8rem;
    color: var(--secondry-color);
}

.key-cards {
    background: var(--grey-card);
    padding: 1rem;
    display: grid;
    place-content: center;
    gap: .5rem;
    text-align: center;
    border-radius: .5rem;
}

main section:first-child {
    margin-top: 0rem;
}

.key-cards span {
    font-weight: 600;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    color: var(--secondry-color);
}

.key-cards p {
    color: var(--para-color);
}

.user-img {
    background: #4A5568;
    height: 3rem;
    min-width: 3rem;
    border-radius: 50px;
}

.user-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50px;
}

.people-box-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: .25rem;
}

.user-starts-container {
    padding-top: 10px;
}

.verifed-badges {
    margin-left: auto;
    background: #f0fdf4;
    border-radius: .5rem;
    padding: .25rem .5rem;
    color: var(--secondry-color);
    font-size: 0.75rem;
}

.yellow-badges {
    border-radius: 50px;
    padding: 4px 12px;
    background: rgba(255, 159, 67, 0.1);
    color: #ff9f43;
    width: fit-content;
    font-size: 14px;
    font-weight: 500;
}

.user-starts-container span {
    display: flex;
    font-weight: 600;
    line-height: 16px;
    font-family: "Montserrat", sans-serif;
}

.result-section {
    background: var(--grey-card);
    padding-block: 4rem;
    margin-bottom: 0px
}

.result-section .btns {
    margin: 3rem auto 0rem;
}

.package-box {
    border: 1px solid #e5e7eb;
    gap: .5rem;
    height: 100%;
    position: relative;
}

.package-img {
    min-height: 165px;
    width: 165px;
    background: #F8F9FA;
    margin: 0 auto;
    margin-bottom: 1rem;
    border-radius: .5rem;
}

.package-img img {
    border-radius: .5rem;
}

.package-box .user-starts-container {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding-top: 0px;
}

.package-box .price span:first-child,
.feature-right-cont .blog-inner-price span:first-child {
    color: #9ca3af;
    text-decoration:line-through;
}

.package-box .price {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.package-box .head {
    font-weight: 700;
}

.package-box .price span:last-child:not(aside .price span) {
    font-size: 1.5rem;
    color: var(--secondry-color);
    font-weight: 700;
}

.package-box .btns {
    padding: 12px 24px;
    display: flex;
    width: 100%;
    justify-content: center;
    font-size: 16px;
}

.package-list li::before {
    content: '';
    position: absolute;
    left: -22px;
    top: 2px;
    width: 20px;
    height: 20px;
    background-image: url(../images/check-icons.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.package-list li {
    line-height: 1.4;
    padding-bottom: 10px;
    position: relative;
}

.package-list {
    padding-left: 1.5rem;
    margin-bottom: 2rem;
    height: 100%;

}

.key-head {
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    color: #020817;
}

.active-box {
    border: 2px solid var(--secondry-color);
    position: relative;
}

.active-box .btns,
.yellow-btn {
    background: #ff9f43;
    color: var(--white-color);
    margin: 0 auto;
    border: 1px solid transparent;
}

.banner-section .yellow-btn {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

/* Common Button Styles */
.btns {
    border-radius: 6px;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease-in-out;
}

.primary-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, var(--white-color), var(--secondry-color));
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.primary-btn:hover::before {
    transform: translateX(0);
}

.primary-btn:hover {
    color: var(--primary-color);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
}

.newsletter-content form button:hover {
    color: var(--white-color);
}

.secondry-btn {
    border: 2px solid var(--secondry-color);
    background: transparent;
    color: var(--secondry-color);
    box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1), 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.yellow-btn::before,
.active-box .btns::before {
    background: linear-gradient(120deg, var(--white-color), #ff9f43);
}

.secondry-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, var(--secondry-color), var(--white-color));
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.secondry-btn:hover::before {
    transform: translateX(0);
}

.secondry-btn:hover {
    color: var(--primary-color);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
}

.btns i {
    transition: transform 0.3s ease;
    padding-top:3px;
}

.btns:hover i {
    transform: translateX(5px);
}

.active-box .package-img {
    margin-top: 3.2rem;
}

.active-box .active-head {
    content: "";
    background: var(--secondry-color);
    color: var(--white-color);
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    padding: 8px;
    font-weight: 700;
    text-align: center;
    border-radius: 4px 4px 0px 0px;
}

.accordion-button,
.accordion-button:not(.collapsed),
.accordion-item {
    background-color: unset;
    box-shadow: unset;
    border: unset;
    color: var(--secondry-color);
}

.accordion-button {
    color: var(--primary-color);
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
}


.accordion-body {
    padding-block: 0px;

}

/*.accordion-item {*/
/*    margin-bottom: 1rem;*/
/*}*/

.accordion-item p {
    border-bottom: 1px solid #c7c7c7;
    border-radius: unset;
    padding-bottom: 20px;
}

.accordion-item:last-of-type>.accordion-collapse,
.accordion-item:last-of-type {
    border-radius: unset;
}

.accordion-body p {
    line-height: 24px;
}

.banner-section {
    padding-block: 1.5rem;
    text-align: center;
    background: linear-gradient(90deg,
            rgba(46, 204, 113, 1) 0%,
            rgba(39, 174, 96, 1) 100%);
    color: var(--white-color);
    margin-block: 0px;
}

.banner-content {
    display: grid;
    gap: 1.5rem;
    padding-block: 2.5rem;
}

.banner-content .btn-container {
    justify-content: center;
}

.banner-section .subheading {
    margin-bottom: 0px;
}

.banner-section p {
    max-width: 52%;
    margin: 0 auto;
    color: var(--white-color);
}

footer {
    background: #4a5568;
    padding: 3rem 0 2rem 0;
}

.footer-head {
    font-size: 20px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: .5rem;
    display: block;
    font-family: "Montserrat", sans-serif;

}

.footer-content ul li {
    padding-bottom: 10px;
}

.footer-content ul li a {
    color: #d1d5db;
}

.footer-content ul li a:hover {
    padding-left: 5px;
}

.footer-bottom ul li a,
.footer-bottom span {
    color: #9ca3af;
}

.footer-content ul li a:hover,
.footer-bottom ul li a:hover {
    color: var(--secondry-color);
}

footer p {
    color: #d1d5db;
    margin-bottom: 1rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    text-align: center;
    padding-top: 20px;
    margin-top: 1rem;
}

.footer-bottom ul {
    display: flex;
    gap: .5rem;
    justify-content: center;
    margin-top: .5rem;
    align-items: center;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.social-icons li a i {
    font-size: 1rem;
}

/* blog-page */
.fs-20 {
    font-size: 20px;
    font-weight: 700;
}

.blog-page .hero-section {
    padding-block: 6rem;
    margin-bottom: 1rem !important;
}

.blog-page .stars span:first-child {
    font-size: 20px;
    font-weight: 700;
}

.timeing {
    color: #6b7280;
}

.blog-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-hero-badges span {
    background: var(--white-color);
    border-radius: 6px;
    padding: 8px 16px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: .4rem;
    font-weight: 500;
    font-size:14px;
}


.blog-content .subheading {
    margin-bottom: 0px;
}

.blog-content p {
    margin-bottom: .5rem;
}

.blog-page-hero,
.blog-hero-badges {
    display: flex;
    align-items: center;
    gap: .5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-page .hero-section [class*="col"],
.compare-page .hero-section [class*="col"] {
    margin: auto;
}

.blog-page p:not(.banner-content p, .limited p) {
    /* color: #020817; */
    padding-bottom: 1rem;
    line-height: 1.6;
}

.blog-heading,
.rating-box span {
    font-size: 24px;
    font-family: "Montserrat", sans-serif;
    padding-bottom: .5rem;
    font-weight: 700;
}

.blog-img,
.before-img,
.after-img {
    aspect-ratio: 16/9;
    background: #F8F9FA;
    border-radius: 4px;
    margin-block: 1.5rem;
    border-radius: .5rem;
}

.blog-img img,
.before-img img,
.after-img img {
    border-radius: .5rem;
}

.comp-card span {
    color: var(--secondry-color);
    font-weight: 600;
    font-size: 20px;
    display: flex;
    margin-bottom: .25rem !important;
}

.blog-img {
    margin-bottom: 2.5rem;
}

.before-after p {
    text-align: center;
}

.before-after {
    margin-bottom: 1rem;
}

.before-img,
.after-img {
    margin-bottom: .6rem !important;
}

.rating-box {
    background: var(--grey-card);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: .5rem;
}

.rating-box-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: .5rem;
}

.rating-box-header .rating {
    background: var(--secondry-color);
    color: var(--white-color);
    padding: 4px 12px;
    border-radius: 50px;
    display: flex;
    align-items: center;
}

.rating-box span {
    font-size: 18px;
    margin-bottom: .8rem;
    padding-bottom: 0px;
}

.rating-box .rating {
    font-size: 14px;
}

.comp-box span:not(.comp-card span) {
    font-size: 20px;
    margin-bottom: 1.3rem;
}

.comp-box {
    padding: 2rem;
}

.comp-card:not(.col-lg-6:nth-last-child(-n+2) .comp-card) {
    margin-bottom: 2rem;
}


.progress-bar-container {
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    height: 8px;
    margin: 10px 0;
}

.small-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.small-rating span:first-child {
    font-weight: 600;
}

.small-rating span:nth-child(2) {
    color: var(--secondry-color);
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
}

.progress-bar {
    height: 100%;
    background-color: var(--secondry-color);
    width: 0%;
    transition: width 0.4s ease;
}

.pros-cons-container {
    background: #f0fdf4;
    padding: 1.3rem;
    border-radius: .5rem;
    margin-block: 2rem;
}

.pros-cons-container>span {
    color: var(--secondry-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: .5rem;
    display: flex;
}

.pros-cons-container ul li,
.blog-page ul li {
    line-height: 1.6;
    margin-bottom: 10px;
    position: relative;
}

.blog-page ul:not(.pros-cons-container ul, aside .package-list) {
    list-style-type: disc;
    padding-left: 1rem;
}

aside .package-list li::before {
    background: url(../images/blog-check.svg) no-repeat center;
    left: -26px;
}

aside .package-list li {
    margin-bottom: 0px;
}

.pros-cons-container ul li::before,
.cons-container ul li::before {
    content: "";
    position: absolute;
    top: 3px;
    left: -27px;
    width: 20px;
    height: 20px;
    background-image: url('../images/blog-check.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.pros-cons-container ul {
    padding-left: 1.5rem;
}

.pros-cons-container ul li::marker {
    padding-top: 1rem;
}

.cons-container {
    background: #fef2f2;
}

.cons-container ul li::before {
    background-color: red;
    background-image: unset;
    height: 5px;
    width: 5px;
    border-radius: 50px;
    top: 9px;
    left: -20px;
}

.rating-round {
    width: 65px;
    height: 65px;
    background-color: var(--secondry-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 700;
}

.final-verdict {
    background: rgba(46, 204, 113, 0.1);
    padding: 1.8rem;
    border-radius: .5rem;
    margin-bottom: 1.8rem;
}

.blog-content-wrap {
    margin-bottom: 1rem;
}

.blog-page .shadow-box {
    margin-bottom: 1.5rem;
}

.blog-page .banner-content .yellow-btn {
    margin: unset;
    justify-content: center;
    gap: .5rem;
}

.blog-active .active-head {
    display: flex;
    flex-direction: column;
    font-size: 20px;
}

.blog-active .btn-container {
    margin-bottom: .8rem;
}

.blog-active .active-head small {
    font-weight: 400;
    font-size: 16px;
}

.blog-active .package-img {
    margin-top: 4.5rem;
    width: 215px;
    height: 215px;
}

.blog-active {
    border: unset;
}

aside .blog-active .user-starts-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: .8rem;
}

aside .package-img {
    margin-bottom: .5rem;
}

aside .price {
    gap: .5rem !important;
    margin-bottom: .8rem;
    justify-content: space-between;
}

aside .package-list {
    margin-bottom: .5rem;
}

aside .yellow-btn,
.feature-right-cont .primary-btn {
    width: fit-content !important;
    margin: unset !important;
}

aside small:not(.active-head small) {
    text-align: center;
    color: var(--para-color);
    line-height: 12px;
}

.rating-break {
    padding: 1.3rem;
    background: var(--grey-card);
    border-radius: .5rem;
    margin-bottom: 1.5rem;
}

.feature-right-cont .primary-btn {
    padding: 12px 24px;
}

.limited {
    background: rgba(255, 159, 67, 0.1);
    border-radius: .5rem;
    padding: 1.3rem;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0.625rem;
}

.rating-break-inn {
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 1rem;
    padding-bottom: .5rem;
}

.limited span {
    font-weight: 700;
    color: #ff9f43;
}

.rating-break span {
    font-size: 18px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    padding-bottom: .5rem;
    display: flex;
}

.image-sections {
    margin-bottom: 2.5rem;
}

.blog-page .package-box {
    height: auto;
    border: 2px solid var(--secondry-color);
}

.blog-page .banner-content .btns:not(.primary-btn) {
    color: var(--white-color);
}

.fianl-v-head {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding-bottom: .8rem;
}

.fianl-v-head span {
    font-weight: 700;
    font-size: 20px;
}

.blog-inner-price {
    display: flex;
    flex-direction: column;
}

aside .price span:first-child,
.feature-right-cont .blog-inner-price span:first-child {
    text-decoration: line-through;
}

aside .price span:nth-child(2),
.detail-heading,
.feature-right-cont .blog-inner-price span:nth-child(2) {
    color: var(--secondry-color);
    font-weight: 700;
    font-size: 24px;
    font-family: "Montserrat", sans-serif;
}

aside .price span:nth-child(3),
.feature-right-cont .blog-inner-price span:nth-child(3) {
    color: #6b7280;
    font-weight: 400;
    font-size: 12px;
}

.custom-table {
    box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1),
        0px 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 0rem;
    border-radius: .5rem;
    border: 1px solid #e5e7eb;
}

.user-starts-container .yellow-btn {
    font-size: 14px;
}

.custom-table table {
    margin-bottom: 0rem;
}

.custom-table tr th {
    padding: 1.3rem;
}

.custom-table tr {
    vertical-align: middle;
}

.custom-table tr th:first-child {
    color: #4b5563;
    font-weight: 600;
}

.thead-head img:not(.stars img) {
    margin-block: 1rem;
}

.thead-head span:not(.date) {
    font-weight: 700;
    font-size: 18px;
    white-space: nowrap;
}

.thead-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* gap: .25rem; */
    padding: 1.3rem;
}

.custom-table tr td {
    text-align: center;
}

.thead-head .user-starts-container {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding-top: 0px;
}

.custom-table tr:nth-child(2) td {
    color: var(--secondry-color);
    font-size: 20px;
    font-weight: 700;
}

tr .fa-check {
    color: #2ECC71;
}

tr .fa-xmark {
    color: #EA3A4D;
}

.custom-table tbody tr:first-child td:not(.custom-table tbody tr .active),
.custom-table tbody tr:first-child th {
    background: var(--grey-card);
}

.custom-table .btns {
    padding: 8px 16px;
    font-weight: 500;
    font-size: 16px;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-block: .5rem;
    white-space: nowrap;
}

/* .custom-table .active tr th+td {
    background: rgba(46, 204, 113, 0.1);
} */
.custom-table .active {
    background: rgba(46, 204, 113, 0.1);
}

.custom-table .detaild-box .blog-img {
    margin-block: 0px;
}

.custom-table .active .detail-content p+strong {
    font-family: "Montserrat", sans-serif;
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.detail-heading {
    margin-bottom: 1rem;
    display: flex;
}

.detaild-white-box {
    padding: 2rem;
    background: var(--white-color);
    box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1),
        0px 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-radius: .5rem;
    margin-bottom: 2rem;
}

.detailed-section .detaild-white-box:last-child {
    margin-bottom: 0px;
}

.detail-box .blog-img {
    margin-block: 0px;
}

.detailed-section {
    background: var(--grey-card);
    padding: 4rem;

}

.custumer-box {
    background: var(--grey-card);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    border-radius: .5rem;
    gap: .5rem;
}

.custumer-box p {
    font-style: italic;
    color: #020817;
    padding-bottom: .5rem;
}

.custumer-box span {
    font-weight: 700;
    color: var(--primary-color);
    line-height: 20px;
}

.custumer-box small {
    color: #6b7280;
    padding-top: -10px;
}

.custumer-box .stars {
    padding-bottom: .5rem;
}

.custom-table tr:last-child td,
.custom-table tr:last-child th {
    border-bottom: unset;
}

.acivte-item {
    position: relative;
}

.acivte-item::before {
    position: absolute;
    content: "RECOMMENDED";
    left: 0;
    top: 0;
    width: 100%;
    height: 30px;
    background: var(--secondry-color);
    color: var(--white-color);
    padding-top: .5rem;
    border-radius: 4px 0px 4px 0px;
    font-size: 12px;
    font-weight: 600;
}

.search-form {
    border-radius: 50px;
    border: 1px solid #d1d5db;
    padding: 12px 16px;
    background: var(--white-color);
    width: 100%;
    display: flex;
    align-items: center;
    height: 100%;
    gap: 8px;
    transition: all .25s ease-in;
}

.blog-page .blog-content p {
    margin-bottom: 0px;
    padding-bottom: 0px !important;
}

.compare-page .hero-section,
.blog-page .hero-section {
    padding: 5rem;
}

.search-form:focus-within {
    border-color: var(--secondry-color);
    box-shadow: 0 0 5px var(--secondry-color);
    transition: all .25s ease-in;
}


.search-form input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1rem;
}

.search-form button {
    all: unset;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.my-nav {
    border-bottom: none;
    gap: .5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.my-nav .nav-link:hover {
    background: var(--secondry-color);
    color: var(--white-color);
}

.my-nav .nav-link {
    border: none;
    border-radius: 50px;
    background-color: #f3f4f6;
    margin-right: 8px;
    color: #374151;
    padding: 8px 20px;
}

.my-nav .nav-link.active {
    background-color: var(--secondry-color);
    color: var(--white-color);
}

.my-nav .nav-link:disabled {
    opacity: 0.5;
    pointer-events: none;
}

.site-card {
    background: var(--white-color);
    box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1),
        0px 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    margin-bottom: 1.8rem;
    cursor: pointer;
}

.site-card-img {
    border-radius: 12px;
    background: #F8F9FA;

}

.site-card-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 12px 12px 0px 0px;
}

.site-card-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.card-date {
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: .25rem;
    font-size: 14px;
}

.card-heading {
    font-size: 18px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    color: var(--primary-color);
    line-height: 26px;
}

.site-card-content p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-height: 20px !important;
    font-size: 14px;
    padding-bottom: .5rem;
}

.site-card-img {
    position: relative;
}

.blog-page section:nth-child(2) {
    margin-block: 3rem;
}

.site-card-img span {
    position: absolute;
    left: 12px;
    top: 12px;
    background: var(--secondry-color);
    color: var(--white-color);
    border-radius: .25rem;
    padding: 4px 12px;
    font-weight: 600;
    font-size: 12px;
}

.site-card-content .read-more {
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.grey {
    background: #f3f4f6;
    box-shadow: unset;
    color: #374151;
    font-weight: 500;
    display: flex;
    font-size: 1rem;
    align-items: center;
    gap: .5rem;
    width: fit-content;
    margin: 1rem auto -2rem auto;
    transition: all .15s ease-in;
}

.grey:hover {
    background: var(--secondry-color);
    color: var(--white-color);
}

.news-head {
    font-size: 30px !important;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 0px !important;
}

.newsletter-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: .5rem;
    text-align: center;
    padding: 2rem;
}

.newsletter-content small {
    color: var(--para-color);
}

.newsletter-content form {
    border-radius: 6px;
    padding: unset;
    padding-left: 1rem;
}

.feature-card-container {
    background: linear-gradient(90deg,
            rgba(46, 204, 113, 0.05) 0%,
            rgba(46, 204, 113, 0.2) 100%);
    border-radius: 12px;
    box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1),
        0px 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.feature-card {
    background: var(--white-color);
    padding: 1rem 2rem;
    border-radius: .5rem;
}

.newsletter-content form button {
    padding: 12px 24px;
    background: var(--secondry-color) !important;
    color: var(--white-color);
    border-radius: 0px 6px 6px 0px;
}

.feature-right-cont .user-starts-container {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .8rem;
}

.feature-right-cont>span {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 24px;
}

.feature-right-cont .blog-inner-price {
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: .5rem;
    margin-bottom: 1.5rem;
}

.newsletter-section [class*="col"] {
    margin: 0 auto;
}

.feature-right-cont .yellow-btn {
    margin: unset;
    font-size: 14px;
    padding: 4px 12px;
}

#checkbox {
    display: none;
}

.toggle {
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
    margin: auto;
    display: none;
    position: absolute;
    right: 32px;
    top: 18px;
}

.toggles {
    display: none;
}

.bar {
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 1.5px;
    background: var(--secondry-color);
    color: inherit;
    opacity: 1;
    transition: none 0.35s cubic-bezier(.5, -0.35, .35, 1.5) 0s;
}

.bar--top {
    bottom: calc(50% + 7.5px);
    transition-property: bottom, transform;
    transition-delay: calc(0s + 0.05s), 0s;
}

.bar--middle {
    top: 50%;
    transform: translateY(-1.5px);
    transition-property: opacity;
    transition-delay: calc(0s + 0.05s);
}

.bar--bottom {
    top: calc(50% + 7.5px);
    transition-property: top, transform;
    transition-delay: calc(0s + 0.05s), 0s;
}

#checkbox:checked+.toggle .bar--top {
    bottom: 50%;
    transform: rotate(135deg);
    transition-delay: 0s, calc(0s + 0.05s);
}

#checkbox:checked+.toggle .bar--middle {
    opacity: 0;
    transition-duration: 0s;
    transition-delay: calc(0s + 0.05s);
}

#checkbox:checked+.toggle .bar--bottom {
    top: 50%;
    transform: rotate(225deg);
    transition-delay: 0s, calc(0s + 0.05s);
}

#scrollToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--secondry-color), var(--secondry-color));
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--secondry-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--grey-card);
    font-size: 28px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(100px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 1000;
}

#scrollToTopBtn.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

#scrollToTopBtn:hover {
    background: linear-gradient(135deg, var(--secondry-color));
    box-shadow: 0 8px 25px var(--secondry-color);
}

#scrollToTopBtn:hover svg {
    transform: translateY(-4px) rotate(20deg);
    transition: transform 0.3s ease;
}

#scrollToTopBtn svg {
    transition: transform 0.3s ease;
}

@media screen and (max-width:1199.98px) {

    .hero-left-content .badges+span,
    .subheading,
    .key-heading {
        font-size: 1.8rem;
        line-height: 32px;
    }

    .people-box-header {
        flex-wrap: wrap;
    }

    .verifed-badges {
        margin: unset;
    }
}

@media screen and (max-width:991.98px) {
    html {
        font-size: 14px;
    }
    .compare-page .hero-section, .blog-page .hero-section{
    padding:3.5rem;
}
    .my-nav {
        gap: 1.2rem;
    }

    header {
        border-bottom: 1px solid #c7c7c752;
    }

    .detail-heading {
        justify-content: center;
    }

    .detail-box {
        margin-bottom: 1.3rem;
    }

    .btns {
        font-size: 16px;
        font-weight: 500;
        padding: 12px 24px;
    }

    .header-content ul {
        background: var(--secondry-color);
        flex-direction: column;
        min-width: 16rem;
        height: 100vh;
        position: fixed;
        left: 0;
        color: var(--white-color);
        top: 0;
        padding: 3rem;
        transform: translateX(-102%);
        transition: transform 0.3s ease;
    }

    .menu-toggle:checked~.container .header-content ul {
        transform: translateX(0%);
    }

    .menu-toggle {
        display: block;
    }

    .header-content ul li a {
        color: var(--white-color);
        font-size: 1.2rem;
    }

    .toggle {
        display: block;
    }

    header .container {
        max-width: 100%;
        padding-inline: 1.5rem;
    }

    .feature-card {
        margin-bottom: 1rem;
    }

    .header-content ul li a:hover {
        color: var(--white-color);
        opacity: .8;
    }

    .thead-head .user-starts-container {
        flex-wrap: wrap;
        gap: .25rem;
    }

    .hero-section {
        padding-block: 3rem;
    }

    .hero-left-content {
        margin-bottom: 2rem;
        gap: 1rem;
    }

    .key-heading,
    .subheading {
        font-size: 1.8rem;
    }

    .shadow-box .head {
        font-size: 1.2rem;
    }

    .col-md-4:has(.shadow-box),
    .col-lg-4:has(.shadow-box),
    .col-lg-3:has(.key-cards),
    .col-md-4:has(.custumer-box) {
        margin-bottom: 1.5rem;
    }

    .hero-left-content p {
        font-size: 16px;
    }

    .custom-table .btns {
        white-space: nowrap;
    }

    .custom-table {
        overflow-x: scroll;
    }

    .feature-right-cont .yellow-btn {
        width: fit-content;
    }
}

@media screen and (max-width:767.98px) {
    .result-section .btns {
        margin: 1.5rem auto 0rem;
    }
}

@media screen and (max-width:575.98px) {
    .banner-section {
        padding-block: 1rem;
    }

    .fianl-v-head,
    .people-box-header {
        flex-wrap: wrap;
    }
.detailed-section {
    padding: 2rem 1rem;
}.detaild-white-box{
    
}
    .thead-head span:not(.date) {
        font-size: 1rem;
        line-height: 20px;
    }

    .verifed-badges {
        margin: unset;
    }

    .btns {
        padding: 12px;
        font-size: 16px;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .blog-left-content {
        padding-inline: 1rem;
    }

    .before-after {
        margin-bottom: 2rem;
    }

    .pros-cons-container {
        margin-block: 1rem;
    }

    .hero-left-content {
        padding-inline: 1.5rem;
    }

    .compare-page .hero-section,
    .blog-page .hero-section {
        padding: 3rem 1rem;
    }

    .rating-box-header {
        flex-wrap: wrap;
        gap: .25rem;
    }

    .blog-heading {
        font-size: 20px;
    }

    .rating-box span {
        font-size: 16px;
    }

    .hero-left-content .badges+span,
    .subheading,
    .key-heading {
        font-size: 1.5rem;
        line-height: 30px;
    }

    .fs-20 {
        font-size: 16px;
    }

    .banner-section p {
        max-width: 100%;
    }

    .footer-content {
        margin-bottom: 1rem;
    }

    aside .price span:nth-child(2),
    .detail-heading,
    .feature-right-cont .blog-inner-price span:nth-child(2) {
        font-size: 18px;
    }

    .newsletter-content {
        padding: 1rem;
    }

    .news-head {
        font-size: 20px !important;
    }

    .hero-seperator div+span {
        display: none;
    }

    .hero-seperator {
        gap: .25rem;
    }

    .result-section {
        padding-block: 3rem;
    }

    section {
        margin-block: 2.5rem;
    }

    .subheading,
    .key-heading {
        margin-block: 1.4rem;
    }
}