@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&family=Signika:wght@300..700&display=swap');


:root {
    --primary-color: #E5FF00;
    --secondary-color: #080800;
    --text-dark: #080800;
    --text-light: #FEFEFE;
    --hero-bg: #050500;
    --p-text: #878C8E;
    --hover-color: #e5ff0061;
    --btn-background: #2f3031;
}

/* a :hover {
    color: var(--text-light) !important;
} */

body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
}

section {
    max-width: 100%;
    padding: 30px 0;

}


header {
    background-color: var(--hero-bg);
}

h1,
h2,
h3,
strong,
span {
    color: var(--text-light)
}

p {
    font-size: 1rem;
    color: var(--p-text);
}

a {
    font-size: 12px;
    text-decoration: none;
    transform: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
}

a:hover {
    text-decoration: none;
}

.custom-btn1 {
    background-color: var(--primary-color);
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;

}

.custom-btn1:hover {
    color: var(--hero-bg);
    box-shadow: 0 0 20px 10px #e5ff0061;
}

.custom-btn2 {
    background-color: var(--primary-color)60%;
    color: var(--text-light);
    padding: 10px 20px;
    border: solid 1px var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
}

.custom-btn2:hover {
    background-color: var(--primary-color);
    color: var(--text-dark);
}

.container {
    max-width: 1380px;
}

/* Navbar start */
.navbar {
    border-bottom: 1px solid var(--p-text);
}

.navbar-brand img {
    max-width: 15rem;
    margin-right: 6vw;
}

.navbar-collapse {
    justify-content: space-between;
    margin-left: 28px;
    align-items: center;
}

.navbar-nav {
    /* margin-left: 40px; */
    background: #ffffff12;
    border: 1px solid var(--p-text);
    padding: 2px;
    border-radius: 50px;
}

.nav-item:first-child {
    margin-left: 3px;
}

.nav-item:last-child {
    margin-right: 3px;
}

.nav-item {
    margin: 3px 5px;
}

.active .nav-link {
    background: #e5ff0061;
    color: white;
}

.nav-link {
    padding: 8px 16px !important;
    border-radius: 50px;
    font-size: 14px;
    color: var(--text-light);
}

.nav-link:hover {
    color: var(--primary-color);
}


/* .nav-link:active,.nav-link:focus {
    background: #e5ff0061;
    color: white;
} */


button.navbar-toggler.collapsed {
    border: white 1px solid;
    padding: 5px 7px;
}

.navbar-toggler-icon {
    display: flex;
    justify-content: center;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: 50% / 100% 100% no-repeat;
    align-items: center;
}

/* Navbar end */


/* Hero start */

#home {
    height: 80vh;
    margin-top: 65px;
    width: 100%;
}

.hero-heading {
    display: flex;
    flex-direction: column;
}

.hero-heading h1 {
    font-size: 50px;
    line-height: 1.3;
}

.hero-heading span {
    font-size: 20px;
}

.hero-btn-area {
    margin: 3rem 0 0 0;
}

.hero-img {
    display: flex;
    justify-content: right;
    align-items: center;
    position: relative;
}

.mobile {
    max-width: 100%;
    height: 100%;
    z-index: 100;
}

.folder1 {
    position: absolute;
    top: -45px;
    transform: rotate(15deg) translateX(12px);
    z-index: 1;
}

.folder2 {
    position: absolute;
    top: 40%;
    left: 42px;
    transform: translateY(-30%);
    z-index: 300;

}

.folder3 {
    position: absolute;
    top: 56%;
    right: 24px;
    z-index: 200;
}

.shadow-image {

    border-left: 10px solid #e5ff0061;
    border-bottom: 10px solid #e5ff0061;
    box-shadow: none;
    border-radius: 15px;
}

.shadow-image2 {
    border-right: 10px solid #e5ff0061;
    border-bottom: 10px solid #e5ff0061;
    box-shadow: none;
    border-radius: 0 8px 8px 0;
}

.folder1,
.folder2,
.folder3 {
    animation: wave 2s ease-in-out infinite;
}

@keyframes wave {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
        /* Adjust the height of the wave */
    }

    100% {
        transform: translateY(0);
    }
}


/* Hero end */


/* Breadcrump start */
#breadcrump {
    position: relative;
    height: auto;
    margin: 0;
    padding: 10px 0 30px 0;
}

#breadcrump::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(../img/BD-bg.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -2;
    /* Puts the background behind all content */
    opacity: 1;
    /* Ensure the image is fully visible */

}

.bc-card {
    background-color: var(--text-light);
    display: flex;
    border-radius: 18px 0 0 18px;
    overflow: hidden;
    position: relative;
    width: 94%;
    margin-left: 6%;
    padding: 20px;
}

.inner-card-area {
    margin: 20px 30px;
    padding: 0 15px;
    width: 100%;
}

.head-row {
    max-width: 60%;

}

.bd-heading-area {
    border-bottom: 1px solid var(--p-text);
    text-align: center;
    padding-bottom: 15px;
    /* font-family: "Signika", sans-serif; */

}

.bd-heading-area h1 {
    color: var(--text-dark);
    font-weight: 700;
}

.bd-heading-area h6 {
    color: var(--p-text);
    font-size: 13px;
    font-weight: 600;
}

.content-row {
    margin-top: 35px;
    padding: 15px 22px;
}

.head-mobile {
    display: none;
}

.single-content {
    padding: 0 15px;
    /* font-family: "Signika", sans-serif; */
}

.single-content h4 {
    font-weight: 700;
}

.single-content p {
    font-size: 16px;

}


.more-btn {
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
    padding: 3px 13px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
}

.more-btn i {
    margin-left: 7px;
    font-size: 24px;
}

.more-btn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}


.bc-title-text {

    padding: 20px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    text-align: center;
}

.bc-main-title {

    margin: 20px 12%;
    font-size: 4rem;
}

.primary {
    color: var(--primary-color);
}

.bc-sub-title {
    margin: 40px 13%;
    color: var(--text-light);
    font-weight: 300;
}


.bc-title-btn {
    margin-top: 20px;
    background: #202101;
    padding: 12px 20px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    color: var(--text-light);
    border-radius: 50px;
    /* transition: background-color 0.3s ease; */
}

.bc-title-btn:hover {
    color: var(--text-light);
    background-color: var(--primary-hover);
    /* Optional background change on hover */
}

.arrow {
    background: var(--primary-color);
    padding: 8px 8px;
    border-radius: 50px;
    color: var(--text-dark);
    margin-left: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.3s ease;
    /* Add transition for the glowing effect */
}

.bc-title-btn:hover .arrow {
    box-shadow: 0 0 15px var(--primary-color);
    /* Glowing effect on hover */
}


.bg-text {
    color: var(--text-light);
    opacity: 0.02;
    pointer-events: none;
    position: absolute;
    bottom: -50px;
    z-index: -1;
    top: auto;
    font-weight: 700;
    font-size: 85px;
    line-height: 1;
    left: -40px;
}

/*Breadcrump end */

/* card start */

.card-container {
    display: flex;
    width: 100%;
    flex-direction: column;
    position: relative;
    justify-content: center;
    align-items: center;
    padding: 20px;
    gap: 40px;

}

.card {
    position: sticky;
    top: 0;
    background: var(--hero-bg);
    color: var(--text-light);
    border-radius: 40px;
    height: 400px;
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;


}

.card-img-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card-img {
    height: 350px;
    width: 370px;
    margin-bottom: 0;
    margin-top: 3rem;
}

.btn-a-hover {
    margin-top: 3rem;
}

.card-btn2 {
    background: var(--btn-background)60%;
    color: var(--text-light);
    padding: 10px 20px;
    border: solid 1px var(--p-text);
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    outline: none;
    box-shadow: none;
}

.card-btn2:hover {
    color: var(--primary-color);
    border: solid 1px var(--primary-color);
}

/* card end */

/* faqs start */

#FAQs {
    background: var(--hero-bg);
    height: 100%;
    width: 100%;
}

.faq-container {
    display: grid;
    flex-direction: column;
}

.faq-heading {
    display: flex;
    margin-top: 6rem;
    flex-direction: column;
    margin-left: 2rem;
    width: 100%;

}

.faq-heading h1 {
    font-size: 3.5rem;
    font-weight: 350;

}

.faq-heading p {
    color: var(--text-light);
}

.faq-btn {
    margin-top: 20px;
}

.faq-btn a {
    font-size: 15px;
    padding: 10px 35px;
}

.faq-img {
    display: flex;
    justify-content: start;
    align-items: start;
    max-width: 100%;
    padding: 0;
}

.faq-img img {
    margin-bottom: 1rem;
}

/* Detail styling */
.faq-QA {
    display: flex;
    flex-direction: column;
    margin-top: 6rem;
}

.details {
    --padding: 10px;
    border: 0.5px solid var(--btn-background);
    border-radius: 13px;
    padding: 0.5rem;
    color: white;
    background-color: transparent;
    backdrop-filter: blur(30px);

}

.details+.details {
    margin-top: 15px;
}

.details__title {
    --width: 20px;
    --height: 3px;
    --radius: 50px;
    --color: currentColor;
    margin: 0;
    padding: var(--padding) calc(var(--width) * 2) var(--padding) var(--padding);
    cursor: pointer;
    transition: all .2s ease-in-out;
    position: relative;
}



.details__title:before {
    content: '\f023';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    display: block;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: var(--text-dark);
    position: absolute;
    border-radius: 50px;
    top: calc(50% - 14px);
    right: calc(4% - 25px);
    text-align: center;
    line-height: 30px;
    font-size: 15px;
    transition: all .2s ease-in-out;
}

.details__title:after {
    content: '\f023';
    /* Lock icon initially */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    display: block;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: var(--text-dark);
    position: absolute;
    border-radius: 50px;
    top: calc(50% - 14px);
    right: calc(4% - 25px);
    text-align: center;
    line-height: 30px;
    font-size: 15px;
    transition: all .2s ease-in-out;
}


.details__container[open] .details__title:after {
    content: '\f09c';
    /* Unlock icon (unlocked state) */
    transform: rotate(0deg);
    /* Remove rotation for unlock icon */
    transition: all .2s ease-in-out;
}

.details__container[open] {
    background-color: #242317;
}

.details__summary::marker {
    content: '';
}

.details__desc {
    display: grid;
    grid-template-rows: 0fr;
    transition: all .2s ease-in-out;
    overflow: hidden;
    padding-inline: var(--padding);
    pointer-events: none;
}

.details__container[open]+.details__desc {
    grid-template-rows: 1fr;
    padding-block: var(--padding);
}

.details__desc-inner {
    min-height: 0;
}

.details__desc-inner p a {
    color: var(--primary-color);
}

/* faqs end */


/* article & blog section start */
/* Section Layout */
.article {
    width: 100%;
    height: auto;
}

.article-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
    margin-bottom: 3rem;
}

.article-heading h1 {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 4rem;
    text-align: center;
}

.articles-div {
    display: flex;
    gap: 20px;
    flex-direction: row;
    justify-content: center;
    align-items: center;

}

.article-card {

    width: auto;
    height: 420px;
    background-color: var(--secondary-color);
    border-radius: 20px;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    gap: 20px;
    flex-direction: column;
    margin-bottom: 3rem;

}

.card-content {
    background: #d6ff00;
    border-radius: 15px;
    padding: 20px;
    height: 85%;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.card-top
{
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}
.card-icon {
    width: 40px;
    margin-bottom: 5px;
}
.card-head
{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.card-head h3{
    margin: 0;
    color: var(--text-dark);
    font-weight: 700;
}

.card-text {
    color: var(--secondary-color);
    font-size:1.2rem;
    line-spacing: 1.5;
    font-weight: bolder;
    text-align: left;
}

.dots-row {
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 20px;
    height: 20px;
    background-color: var(--btn-background);
    border-radius: 50%;
}

.dots-white {
    display: flex;
    gap: 5px;
    flex-direction: row;
}

.dot-2 {
    width: 7px;
    height: 7px;
    background-color: var(--text-light);
    border-radius: 50%;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev{
    background: black;
    color: inherit;
    border: none;
    padding: 3px 8px !important;
    font: inherit;
    border-radius: 4px;
}

.owl-prev {
    bottom: 56%;
    position: absolute;
    left: -23px;
}

.owl-next
{
    bottom: 56%;
    position: absolute;
    right: -23px;  
}

/* article & blog section end */


/* testimonial section start */

.testimonial-slider {
    text-align: center;
    color: #fff;
    background-color: var(--hero-bg);
    height: auto;
    width: 100% !important;
    display: flex;
    justify-content: center;
}

.testimonial-slider h1 {
    font-size: 4rem;
    font-weight: 600;
    /* margin-bottom: 30px; */
    color: #fff;
    margin-top: 1.5rem;
    /* margin-bottom: 2.5rem; */

}

.slides {
    display: flex;
    flex-direction: row;
    /* Ensure horizontal layout */
    transition: transform 0.5s ease-in-out;
    gap: 30px;
    /* Space between slides */
}

.slider {
    /* overflow: hidden; */
    width: 100%;
    /* Full-width */
    height: auto;
    /* Adjust to fit slide height */
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 3rem;
    
}


.slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100%;
}

.testimonial_card {
    background-color: var(--hero-bg);
    padding: 20px;
    border-radius: 10px;
    width: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border: 1px solid;
    border-color: var(--btn-background);
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.stars {
    font-size: 25px;
    color: #ffc107;
    margin-bottom: 5px;
}

.testimonial_card h3 {
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0;
}

.testimonial_card p {
    font-size: 16px;
    margin: 10px 0 20px;
    padding: 20px;
    color: #b5b5b5;
}

.client-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.client-info img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.client-info span {
    font-size: 14px;
    color: var(--primary-color);
}


/* testimonial section end */



/* get started */

.apps {
    background-color: #E5FF00;

}

.getstarted {
    padding-top: 3rem;
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.getstarted h1 {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 4rem;

}

.getstarted span {
    color: #2f3031;
}

.social-inner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

}

.social-inner a {
    display: contents;
    width: auto;

}

.social-inner a img {
    width: clamp(10px, 10vw, 20%);
    margin: 0 4px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.social-inner img:hover {
    transform: scale(1.05);
    gap: 8px;
    /* Hover effect */
}

/* get started */

/* Footer Start */
footer {
    background: var(--secondary-color);
    padding: 25px 0;
}

.logo-section p {
    margin-bottom: 3px;
    max-width: 100%;
}

.footer-logo h3 {
    color: var(--primary-color);
}

.social-link {
    margin: 5px;
    color: var(--text-light);
}

.social-link i {
    font-size: 15px;
}

.social-link i:hover {
    color: var(--primary-color);
}

.foot-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.foot-link h5 {
    color: var(--p-text);
    text-align: center;
}

.footer-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-link {
    color: var(--p-text);
    text-align: center;
}

.footer-link:hover,
.footer-link:active {
    color: var(--primary-color);
}

/* Footer End */


@media (max-width: 991px) {

    .navbar-brand img {
        max-width: 22vw;
        margin-right: 4vw;
    }

    .navbar-nav {
        margin-left: 0px;
        padding: 0px;
    }

    .hero-heading>* {
        text-align: center;
    }

    .hero-img {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    #home {
        height: auto;
        margin-top: 0px;
        text-align: center;
        width: 100%;
    }

    .head-mobile {
        display: block;
    }

    .head-mobile h1 {
        color: var(--text-dark);
    }

    .content-row {
        margin-top: 0px;
    }

    .bc-card {
        width: 100%;
        margin-left: 3%;

    }

    .faq-heading {
        display: flex;
        margin-top: 2rem;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        margin-left: 0rem;
        text-align: center;
        width: 100%;
    }

    .faq-img img {
        margin-top: 2rem;
    }

    .faq-QA {
        display: flex;
        flex-direction: column;
        margin-top: 2rem;
    }

    .head-row {
        display: none;
    }

    .article-heading h1 {

        font-weight: 800;
        font-size: calc(3rem + 9px);

    }

    .testimonial-heading h1 {

        font-weight: 800;
        font-size: calc(3rem + 9px);

    }

    .slides {
        display: flex;
        flex-direction: column;
        margin-top: 20px;
        margin-bottom: 20px;

    }

    .social-inner img {
        width: 150px;
    }

    .social-inner img:hover {
        transform: scale(1.05);
        gap: 8px;
        /* Hover effect */
    }

    .social {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 20px;
    }

}

@media (max-width: 767px) {

    .navbar-nav {
        margin-left: 0px;
        background: transparent;
        border: none;
        padding: 2px;
        border-radius: 0;
        margin-bottom: 7px
    }

    .nav-item {
        margin: 3px 5px;
        border-bottom: solid 2px;
    }

    .join-btn-area {
        display: flex;
        justify-content: center;
    }

    .navbar-collapse {
        margin-bottom: 7px;
    }

    .card {

        height: auto;
        padding: 25px 25px 0 25px;
        display: flex;
        flex-direction: row;
        text-align: center;
    }

    .bc-card {
        background-color: transparent;
        margin-left: 0;
        padding: 0;
    }

    .inner-card-area {
        margin: 5px;
        padding: 0 10px;
        width: 100%;
    }

    .content-row {
        margin-top: 0px;
        justify-content: center;
        align-items: center;
        display: flex;
        width: 100%;
        flex-direction: column;
    }

    .single-content {
        padding: 15px;
        display: flex;
        background: white;
        margin: 15px;
        border-radius: 10px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        align-items: center;
    }

    .bc-main-title {
        margin: 20px 4%;
        font-size: calc(2rem + 4px);
        font-weight: 600;
    }

    .card:nth-child(2) .card-heading {
        margin-top: 3rem;
    }

    .btn-a-hover {
        margin: 3rem 0;
    }

    .card-img {
        margin: 0;
    }

    .article-heading h1 {

        font-weight: 800;
        font-size: calc(2rem + 10px);

    }

    .testimonial-heading h1 {

        font-weight: 800;
        font-size: calc(2rem + 10px);

    }

    .logo-section p {
        display: none;
    }

    /* // privacy policy div  */
    table th,
    table td {
        font-size: 12px;
        padding: 6px;
    }

}


@media (max-width: 575px) {
    .custom-btn1 {
        font-size: 2vw;
    }

    .custom-btn2 {
        font-size: 2vw;
    }

    .card-btn2 {
        font-size: 2vw;
    }


    .navbar-brand img {
        max-width: 10rem;
        margin-right: 10vw;
    }

    .hero-heading {
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .hero-heading h1 {
        font-size: 35px;
        text-align: center;
    }

    .hero-heading span {
        font-size: 16px;
        text-align: center !important;
    }

    .hero-btn-area {
        margin: 2rem 0 5rem 0;
    }

    .mobile {
        max-width: 77%;
    }

    .folder1 {
        width: 28%;
    }

    .folder2 {
        width: 28%;
    }

    .folder3 {
        width: 28%;
    }

    .single-content {
        padding: 15px;
        display: flex;
        background: white;
        margin: 8px;
        border-radius: 10px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .single-content {
        text-align: center;
    }

    /* .bc-card {
        background-color: var(--text-light);
        border-radius: 18px;
        margin: 15px 5%;
        padding: 20px;
        width: 90%;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
           }

    .inner-card-area {
        padding: 0;
    }

    .head-row {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .bd-heading-area {
        margin-bottom: 15px;
        border-bottom: 1px solid var(--p-text);
        padding-bottom: 10px;
    }

    .bd-heading-area h1 {
        font-size: 20px;
        font-weight: 700;
        color: var(--text-dark);
    }

    .bd-heading-area h6 {
        font-size: 12px;
        color: var(--p-text);
        font-weight: 600;
    }

    .content-row {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .single-content {
        margin-top: 10px;
    }

    .single-content h4 {
        font-size: 18px;
        font-weight: 700;
    }

    .single-content p {
        font-size: 14px;
        margin: 10px 0;
    }

    .more-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 500;
        color: var(--text-dark);
        padding: 8px 16px;
        border-radius: 15px;
        background-color: var(--text-light);
        transition: all 0.3s ease;
    }

    .more-btn i {
        font-size: 16px;
        margin-left: 5px;
    }

    .more-btn:hover {
        background-color: var(--secondary-color);
        color: var(--primary-color);
    } */
    .article-card {
        width: 100%;
        height: 370px;
    }

    .card-content h1 {
        font-size: 24px;
    }

    .card-icon {
        margin-bottom: 10px;
    }


    .card-heading h1 {
        font-size: 20px;
    }

    .card-heading p {
        font-size: 12px;
    }

    .card-img {
        height: 250px;
        width: 250px;
    }

    .artical-body {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .article-heading h1 {

        font-weight: 800;
        font-size: 2rem;

    }

    .testimonial-heading h1 {

        font-weight: 800;
        font-size: 2rem !important;

    }

    .Testimonials {
        height: 60vh !important;
    }

    .faq-heading h1 {
        font-size: 2.5rem;
        font-weight: 350;
    }

    .getstarted h1 {
        font-weight: 700;
        font-size: 2rem;
    }

    .logo-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .faq-img {

        justify-content: center;
        align-items: center;
        max-width: 70%;

    }

    .faq-img img {
        margin-top: 2rem;
        width: 100%;
    }

    .details__title {
        font-size: 16px;
    }

    .details__title:before {
        right: calc(4% - 10px);
    }

    .details__title:after {
        right: calc(4% - 10px);
    }

    .foot-link {
        margin-top: 2rem;
    }

    li.footer-item {
        text-align: center;
    }
}

@media (max-width: 1366px) {

    /* Adjust layout styles for laptops */
    /* .container {
        padding: 0 10px;
    } */

    /* .header {
        font-size: 18px;
    } */
}

/* ######################################## faqs page styles ######################################### */

#main-faqs {
    width: 100%;
    height: auto;
}



/* Responsive Widths (Use) */
.container {
    width: 90%;
    /* Better */
    max-width: 1200px;
}

@media (max-width: 1024px) {
    .container {
        padding: 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
        font-size: 0.8rem;
    }
}

/* @media (max-width: 1366px) {
    .your-class {
        font-size: 0.95rem;
        margin: auto;
    }
} */

/* .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
} */