/* all page */
.navbar {
    background-color: #f3f3f3d7;
}

.all-page-first {
    position: relative;
    display: flex;
    align-items: center;
    /* Vertical center */
    justify-content: center;
    /* Horizontal center */
    height: 350px;
    /* Full height */
}

.all-page-first img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Image won't stretch */
    z-index: -1;
    /* Send image to background */
}

.all-page-first-image-navigation {
    position: relative;
    /* background: rgba(0, 0, 0, 0.6); */
    color: white;
    margin-top: 150px;
    padding: 15px 20px;
    border-radius: 5px;
    text-align: center;
}

.all-page-first-image-navigation .navigator-link a {
    color: #fff;
    background: linear-gradient(240deg, #13547a91, #137a759f);
    font-weight: 600;
    padding: 10px 45px;
    border-radius: 10px;
    text-decoration: none;
}

.all-page-first-image-navigation .navigator-link a:hover {
    background: #137a75;
    color: white;
}

.all-page-first-image-navigation .navigator-link i {
    color: #fff;
    background: linear-gradient(240deg, #13547ac9, #137a75c2);
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 10px;
    text-decoration: none;
}

/* about page */
.about-page .wave-view-section img {
    margin-bottom: -5px;
    background: #fff;
}

.about-page .leading-debt-video-section {
    background: #fff;
}

.about-page .leading-debt-video-section .leading-debt a{
    width: 49%;
    text-align: center;
}

/* contact page */
.contact-page .leading-debt-video-section h2 {
    font-size: 25px;
    margin-bottom: 15px;
}

.contact-page .contact-details-container {
    box-shadow: 0px 0px 10px #ececec;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    margin-top: 10px;
}

.contact-page .contact-details-container h3 {
    background: linear-gradient(120deg, #13547a, #137a75);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px;
}

.contact-page .contact-details-container p {
    color: #000000;
    font-size: 15px;
    text-align: center;
    margin: 10px 0px;
}

.contact-page .contact-details-container ul {
    margin-top: 10px;
}

.contact-page .contact-details-container li {
    list-style-type: none;
    line-height: 30px;
    color: #13547a;
}

.contact-page .contact-details-container li a {
    color: #13547a;
    text-decoration: none;
}

.contact-page .join-now-get-help a {
    width: 100%;
    text-align: center;
}

.contact-page .contact-iframe iframe {
    width: 100%;
    height: 450px;
    padding: 20px;
    border: none;
    border-radius: 10px;
    outline: none;
}

.contact-iframe {
    border-radius: 10px;
    border: 2px solid #ccc;
}

.contact-page .leading-debt-video-section {
    background: #fff;
}

.contact-page .leading-debt-video {
    box-shadow: 0px 0px 20px 5px #ececec;
    border-radius: 10px;
}

/* FAQ page */
.faq-page .faq-question {
    cursor: pointer;
}

.faq-page .faq-answer {
    display: none;
}

.faq-page .faq-toggle {
    font-size: 13px;
    padding: 3px 5px;
}

.faq-page .view-all {
    border: none;
    cursor: pointer;
    width: 69.5%;
}

.faq-page .go-home {
    width: 30%;
}

/* privacy policy page */
.privacy-policy-heading {
    padding-top: 15px;
    text-align: center;
}

.privacy-policy-heading h2 {
    font-size: 2rem;
    background: linear-gradient(90deg, #13547a, #137a75);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
}

.privacy-policy-heading h2::after {
    content: "";
    position: absolute;
    /* top: 38px; */
    right: 0px;
    height: 50px;
    width: 150px;
    border: 5px solid transparent;
    border-top-color: green;
    border-radius: 120%/30px 40px 0 0;
    display: block;
    animation: afterbottomeffect 1s linear;
}

.privacy-policy-content {
    max-width: 1250px;
    margin: auto;
}

.privacy-policy-text {
    padding: 30px 20px;
}

.privacy-policy-content p {
    font-size: 17px;
    line-height: 25px;
    margin-top: 10px;
    text-align: justify;
}

.privacy-policy-content h3 {
    font-size: 25px;
    color: #137a75;
    margin-top: 20px;
    margin-bottom: 10px;
}

.privacy-policy-content ul {
    list-style-type: disc;
    margin-left: 20px;
}

.privacy-policy-content li {
    font-size: 17px;
    line-height: 25px;
}


/* testimonial page */
.testimonial-section {
    background: white;
    margin-top: 30px;
}

.testimonial-grid {
    max-width: 1250px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.testimonial-card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: right;
    transition: transform 0.2s ease-in-out;
}

.testimonial-card:hover {
    transform: scale(1.03);
}

.testimonial-image-name {
    display: flex;
    justify-content: space-between;
}

.testimonial-image-name div {
    padding-top: 10px;
}

.testimonial-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}


.testimonial-content {
    padding: 10px;
}

.testimonial-content p {
    font-size: 14px;
    margin: 10px 0;
}

.testimonial-content span {
    font-weight: bold;
    display: block;
    margin-top: 5px;
}

.feed-star i {
    background: linear-gradient(90deg, #ffae00, #ffa600, #ff7300);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 16px;
    margin-top: 5px;
}

.actions {
    margin-top: 10px;
}

.actions button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    margin-right: 10px;
}

.fa-heart {
    background: linear-gradient(60deg, #F9CE34, #EE2A7B, #d72828);
    padding-right: 1px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fa-share-nodes {
    background: linear-gradient(60deg, #ffae00, #ffa600, #ff7300);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Testimonial page Form */
.testimonial-form {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.testimonial-form input,
.testimonial-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.testimonial-form button {
    background: #007BFF;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 5px;
}

.testimonial-form button:hover {
    background: #0056b3;
}

.rating-stars {
    direction: rtl;
    unicode-bidi: bidi-override;
    display: flex;
    justify-content: left;
}

.rating-stars input[type="radio"] {
    display: none;
}

.rating-stars label {
    color: #ccc;
    font-size: 34px;
    cursor: pointer;
}

.rating-stars label:hover,
.rating-stars label:hover~label,
.rating-stars input[type="radio"]:checked~label {
    background: linear-gradient(90deg, #ffae00, #ffa600, #ff7300);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* team page */
.team-section {
    padding: 60px 20px;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: bold;
}

.team-search {
    margin-top: 50px;
    text-align: center;
}
  
.team-search input {
    padding: 10px;
    width: 100%;
    max-width: 300px;
    font-size: 16px;
    border: 2px solid #137a75;
    border-radius:5px;
    color:#137a75;
    outline: none;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1250px;
    margin: auto;
}

.team-member {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.team-member .team-member-image {
    width: 100%;
    max-width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.verified-icon{
    height:24px;
    width:24px;
    /* padding:2px; */
    margin-left:3px;
}

.team-member h3 {
    font-size: 1.4rem;
    margin: 10px 0 5px;
    display: flex;
    justify-content: center;
    text-transform: uppercase;
}

.team-member p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 10px;
}

.fa-circle-check{
    color:green;
}

.linkedin {
    color: #0077b5;
    font-size: 1.2rem;
    text-decoration: none;
}

.linkedin:hover {
    color: #005a8c;
}


@media (max-width:1300px) {
    .testimonial-section {
        padding: 0px 20px;
    }
}

@media (max-width:1200px) {
    .contact-page .leading-debt-video-section h2 {
        font-size: 18px;
    }
}

@media (max-width:991px) {

    /* all page css */
    .all-page-first {
        height: 325px;
    }

    /* contact page */
    .contact-page .leading-debt-video-section h2 {
        font-size: 15px;
    }

    .contact-page .contact-details-container p {
        font-size: 13px;
    }

    /* faq page */
    .faq-page .view-all {
        width: 69%;
    }

    .faq-page .go-home {
        width: 30%;
    }
}

@media (max-width:768px) {

    /* all page css */
    .all-page-first {
        height: 300px;
    }

    /* contact page */
    .contact-page .leading-debt-video {
        width: 100%;
    }

    .contact-page .contact-iframe iframe {
        padding: 20px;
        border: none;
    }

    /* privacy policy page */
    .privacy-policy-heading {
        padding-top: 10px;
    }

    .privacy-policy-heading h2 {
        font-size: 1.3rem;
    }

    .privacy-policy-heading h2::after {
        width: 100px;
    }
}

@media (max-width:575px) {

    /* all page css */
    .all-page-first {
        height: 250px;
    }

    .all-page-first-image-navigation .navigator-link a {
        padding: 7px 25px;
    }

    .all-page-first-image-navigation .navigator-link i {
        padding: 3px 7px;
    }

    /* contact page */
    .contact-page .contact-details-container li {
        font-size: 14px;
    }

    /* faq page */
    .faq-page .view-all {
        width: 59%;
        font-size: 13px;
    }

    .faq-page .go-home {
        width: 39%;
    }

    /* testimonial page */
    .rating-stars {
        justify-content: center;
    }

}

@media (max-width:451px) {

    /* all page css */
    .all-page-first-image-navigation .navigator-link a {
        padding: 7px 15px;
    }

    .all-page-first-image-navigation .navigator-link i {
        padding: 3px 7px;
    }
}

@media (max-width:391px) {

    /* all page css */
    .all-page-first-image-navigation .navigator-link a {
        padding: 7px 10px;
    }

    .all-page-first-image-navigation .navigator-link i {
        padding: 3px 7px;
    }

    /* contact page */
    .contact-page .contact-details-container p {
        font-size: 12px;
    }

    .contact-page .contact-details-container li {
        font-size: 13px;
    }
}