@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bungee&family=Merienda:wght@300..900&family=Permanent+Marker&family=Rubik+Mono+One&family=Sigmar&display=swap');

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: none;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(120deg, #13547a, #137a75);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* navbar section */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    transition: background 0.3s ease-in-out;
    z-index: 1000;
    box-shadow: 0px 0px 7px 0px #ececec;
}

.navbar.scrolled {
    background: #f3f3f3;
    box-shadow: 0px 0px 20px 10px black;
}

.navbar.scrolled .nav-item a {
    color: #13547a;
    text-decoration: none;
}

.navbar.scrolled .sub-menu li a:hover {
    color: #fff;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.navlogo img {
    width: 250px;
    height: 50px;
}

.nav-items {
    list-style: none;
    display: flex;
}

.nav-item {
    position: relative;
    margin: 0 15px;
}

.nav-item a {
    color: #13547a;
    font-weight: 500;
    text-decoration: none;
    background-color: white;
    padding: 7px 10px;
    text-align: center;
    border-radius: 10px;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0px 0px 10px 3px gray;
    border-radius: 10px;
    padding: 0;
    width: max-content;
    list-style: none;
    z-index: 99;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    margin-top: 20px;
    transition: max-height 0.4s linear, opacity 0.4s linear, transform 0.4s linear, padding 0.4s;
}

.nav-item:hover .sub-menu {
    opacity: 1;
    transform: translateY(0);
    max-height: 500px;
    padding: 10px;
}

.sub-menu li a {
    color: #13547a;
    display: block;
    padding: 8px;
}

.sub-menu li a:hover {
    background: #13547a;
    color: white;
    border-radius: 5px;
}

.navbar-profile-button {
    display: flex;
    gap: 15px;
}

.navbar-profile-button .nav-button {
    color: white;
}

.navbar-profile-button .nav-button .call i {
    animation: ring-left-right 5s linear infinite;
}

@keyframes ring-left-right {
    0% {
        transform: rotate(0deg);
    }

    5% {
        transform: rotate(-10deg);
    }

    10% {
        transform: rotate(10deg);
    }

    15% {
        transform: rotate(-10deg);
    }

    20% {
        transform: rotate(10deg);
    }

    25% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.navbar-profile-button #profileBtn{
    display: none;
}

.navbar-profile-button .nav-button a {
    background-color: white;
    color: #13547a;
    padding: 7px 10px;
    border-radius: 10px;
    text-decoration: none;
}

.navbar-profile-button .nav-button.add-to a span,
.navbar-profile-button .nav-button.add-to a i {
    background-image: linear-gradient(120deg, #13547a, #13547a, #13547a, #13547a, #fff, #13547a);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #13547a;
    animation: digitalformlinkhighlight 6s infinite ease-in-out;
}

@keyframes digitalformlinkhighlight {
    0% {
        background-position: 200% 0;
    }

    20% {
        background-position: 50% 0;
    }

    40% {
        background-position: -200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.menu-toggle {
    display: none;
    background-color: #fff;
    color: #13547a;
    padding: 7px 10px;
    border-radius: 10px;
    text-decoration: none;
    margin-top: -7px;
}

/* Carousel Styling */
.carousel-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.carousel-item {
    min-width: 100%;
    height: 100vh;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 20%;
}

.carousel-content {
    position: absolute;
    top: 50%;
    left: 5%;
    /* right:10%; */
    transform: translateY(-50%);
    color: white;
    /* background: rgba(0, 0, 0, 0.219); */
    /* box-shadow:0px 0px 10px 0px white; */
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    text-align: center;
}

.carousel-content h2 {
    background: linear-gradient(120deg, #13547a, #137a75);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 40px;
    font-weight: 1000;
    margin-bottom: 30px;
    /* transform: scaley(1.2); */
    word-spacing: 5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.205);
    /* font-family: "Bungee", serif; */
}

@keyframes slideLine {
    0% {
        transform: scaleX(0);
    }

    100% {
        transform: scaleX(.3);
    }
}

.carousel-content p {
    color: #13547a;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 40px;
    letter-spacing: 1px;
    word-spacing: 3px;
    text-shadow: 0px 0px 5px white;
}

.carousel-content a {
    color: #fff;
    background: linear-gradient(240deg, #13547a, #137a75);
    font-weight: 600;
    padding: 10px 45px;
    border-radius: 10px;
    text-decoration: none;
}

.carousel-content a:hover {
    background: #137a75;
    color: white;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    background-color: white;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.indicator.active {
    background-color: #137a75;
}

/* content section */
.content-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    /* max-width: 1200px; */
    margin: auto;
    gap: 30px;
    background: url(assets/images/bg-image-content-section.webp);
    /* background-attachment: fixed; */
    background-size: cover;
}

.content {
    flex: 1;
    padding: 20px;
}

.content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    background: linear-gradient(120deg, #13547a, #137a75);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    text-transform: uppercase;
}

.content-section h2::after {
    content: "";
    display: block;
    height: 2px;
    background: linear-gradient(80deg, #137a75, #137a75, #137a75);
    margin-top: 10px;
    margin-bottom: 10px;
    left: 0;
    width: 20%;
    animation: halfwidthslideLine 5s infinite linear;
}

@keyframes halfwidthslideLine {
    0% {
        transform: scaleX(0);
    }

    100% {
        transform: scaleX(1);
    }
}

.content p {
    font-size: 18px;
    color: #333;
    line-height: 1.5;
}

.join-now-button {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(120deg, #13547a, #137a75);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

a.join-now-button:hover {
    background: #137a75;
}

.content-image {
    flex: 1;
    text-align: center;
}

.content-image img {
    width: 100%;
    max-width: 80%;
    height: auto;
    object-fit: cover;
}

ul.content-section-list {
    font-size: 20px;
    list-style: none;
}

ul.content-section-list li {
    margin: 10px auto;
    color: #137a75;
    /* font-weight: bold; */
}

/* home card section */

.home-card-section {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    /* min-height: 50vh; */
    padding:0px 20px;
}

.home-card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1250px;
    width: 100%;
}

.home-card-container .home-card {
    position: relative;
    /* Add this */
    background: linear-gradient(180deg, #13547a, #137a75);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    z-index:0;
}

.home-card-container .home-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #137a75;
    /* Slightly transparent */
    transition: height 0.4s ease-in-out;
    z-index: 1;
}

.home-card-container .home-card:hover::before {
    height: 100%;
}

.home-card-container .home-card-content {
    position: relative;
    padding: 15px;
    text-align: center;
    z-index: 2;
}

.home-card-container .home-card img {
    width: 110px;
    height: 110px;
    padding: 20px;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.home-card-container .home-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #fff;
    position: relative;
    z-index: 2;
}

.home-card-container .home-card p {
    font-size: 0.9rem;
    color: white;
    position: relative;
    z-index: 2;
}

/* leading debt video */
.leading-debt-video-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    /* max-width: 1200px; */
    margin: auto;
    gap: 30px;
    background: #ececec;
}

.leading-debt {
    flex: 1;
    padding: 20px;
}

.leading-debt h2 {
    font-size: 30px;
    margin-bottom: 30px;
    background: linear-gradient(120deg, #13547a, #137a75);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    text-transform: uppercase;
}

.leading-debt h2::after {
    content: "";
    display: block;
    height: 2px;
    background: linear-gradient(80deg, #137a75, #137a75, #137a75);
    margin-top: 10px;
    margin-bottom: 10px;
    width: 30%;
    animation: halfwidthslideLine 5s infinite linear;
}

.leading-debt p {
    font-size: 18px;
    text-align: justify;
    color: #333;
    line-height: 1.5;
}

.leading-debt-video {
    flex: 1;
    text-align: right;
}

.leading-debt-video video {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

/* wave view section */
.wave-view-section {
    background-color: #ececec;
    margin: -5px 0px;
}

.wave-view-section img {
    background-color: #ececec;
    height: 10vh;
}

/* our process section */
.our-process-heading {
    background: #fff;
}

.our-process-heading h2 {
    font-size: 27px;
    /* margin-bottom: 30px; */
    background: linear-gradient(120deg, #13547a, #137a75);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    padding: 20px 20px 0px 20px;
}

.our-process-heading h2::after {
    content: "";
    display: block;
    height: 2px;
    background: linear-gradient(80deg, #137a75, #137a75, #137a75);
    margin-top: 7px;
    margin-bottom: 10px;
    /* width:30%; */
    animation: slideLine 5s infinite linear;
}

.our-process-section {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
}

.our-process-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1250px;
    width: 100%;
}

.process-card {
    position: relative;
    background: linear-gradient(180deg, #13547a, #137a75);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    z-index:0;
}

.process-card:hover {
    /* transform: translateY(-5px); */
}

/* Hover background effect */
.process-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(19, 122, 117, 0.9);
    transition: height 0.4s ease-in-out;
    z-index: 1;
}

.process-card:hover::before {
    height: 100%;
}

.process-card img {
    width: 150px;
    height: 150px;
    padding: 10px;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.process-card-content {
    position: relative;
    padding: 15px;
    text-align: center;
    z-index: 2;
}

.process-card h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.process-card p {
    font-size: 0.9rem;
    color: white;
    position: relative;
    z-index: 2;
}

/* loan resolution work */
.loan-resolution-section {
    background: #ececec;
    text-align: center;
    padding: 50px 20px;
}

.loan-resolution-section h2 {
    font-size: 2rem;
    background: linear-gradient(120deg, #13547a, #137a75);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    display: inline-block;
    position: relative;
}

.loan-resolution-section 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;
}

@keyframes afterbottomeffect {
    0% {
        width: 0px;
    }

    100% {
        width: 150px;
    }
}

.loan-resolution-section p {
    color: #1f1f1f;
    margin-top: 20px;
    font-size: 1rem;
    font-weight: 600;
}

.loan-resolution-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1250px;
    margin: auto;
    padding-top: 30px;
}

.loan-card {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    padding: 10px;
}

.loan-card:hover {
    /* transform: translateY(-5px); */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.loan-card:hover img {
    transform: scale(1.05);
}

.loan-card img {
    width: 100px;
    height: 130px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.2s linear;
}

.loan-card-content {
    padding-left: 15px;
    text-align: left;
}

.loan-card h3 {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: #137a75;
}

.loan-card p {
    font-size: 0.9rem;
    color: #181818;
}

.loan-card a {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #137a75;
    text-decoration: none;
    font-weight: bold;
    padding: 5px;
    border-right: 2px solid #137a75;
    border-left: 2px solid transparent;
    border-bottom: 2px solid #137a75;
    border-top: 2px solid #137a75;
    border-radius: 10px;
}

.loan-card a:hover {
    border: 2px solid #137a75;
}

.wave-loan-resolution-top {
    background: #fff;
}

.wave-loan-resolution-top img {
    height: 10vh;
    margin-bottom: -5px;
}

/* Loan calculator section */
.loan-calculator-section {
    padding: 20px 20px;
}

.loan-calculator-heading {
    text-align: center;
}

.loan-calculator-heading h2 {
    font-size: 2rem;
    background: linear-gradient(120deg, #13547a, #137a75);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
}

.loan-calculator-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;
}

.loan-calculator {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    max-width: 1250px;
    margin: auto;
    /* padding: 20px; */
}

.loan-calculator h2 {
    color: #13547a;
    text-align: center;
}

.loan-calculator .progress-bar-form {
    margin-top: 15px;
}

.loan-calculator label {
    display: block;
    font-weight: bold;
    margin-top: 10px;
}

.loan-calculator input[type="range"] {
    width: 100%;
}

.loan-calculator span {
    display: block;
    font-size: 1.2em;
    color: #333;
    margin-top: 5px;
}

.loan-calculator .radio-group {
    margin-top: 10px;
}

.loan-calculator .calc-and-contact-button {
    display: flex;
}

.loan-calculator button {
    background: linear-gradient(120deg, #13547a, #137a75);
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    margin: 2px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;

}

.loan-calculator button:hover {
    background: #137a75;
}

.loan-calculator .chart-container {
    position: relative;
    height: 250px;
    width: 100%;
    margin-top: 20px;
    padding: 10px;
    border-radius: 10px 10px 0px 0px;
    box-shadow: 0px 0px 10px gray;
}

.loan-calculator .results {
    background: linear-gradient(120deg, #13547a, #137a75);
    color: white;
    padding: 10px;
    border-radius: 0px 0px 10px 10px;
    box-shadow: 0px 0px 10px gray;
    text-align: center;
}

.loan-calculator .results {
    display: flex;
    justify-content: space-evenly;
}

.loan-calculator .results p {
    margin: 5px 0;
}

.loan-calculator .results p:nth-child(even) {
    border-left: 2px solid gray;
    border-right: 2px solid gray;
    padding: 0px 30px;
}

.loan-calculator .results p span {
    color: white;
}

/* Loan calculator section - custom progress bar theme */
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: #ddd;
    border-radius: 5px;
    outline: none;
    transition: background 0.3s;
}

input[type="range"]::-webkit-slider-runnable-track {
    height: 8px;
    border-radius: 5px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #137a75;
    border-radius: 50%;
    cursor: pointer;
    margin-top: -6px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

/* images heading section */
.wave-view-image-heading-section {
    background: linear-gradient(90deg, #ececec, white, #ececec);
}

.wave-view-image-heading-section img {
    height: 10vh;
    margin-bottom: -5px;
}

.images-heading-name 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;
}

.images-heading-name 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;
}

.images-heading-section {
    background: linear-gradient(90deg, #ececec, white, #ececec);
    text-align: center;
    padding: 20px;
}

.images-heading-box {
    display: flex;
    justify-content: center;
}

.images-heading-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1250px;
    width: 100%;
    margin-top: 30px;
}

.images-heading-card {
    position: relative;
    /* background:#fff;  */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.images-heading-card img {
    height: 100px;
    width: 100%;
    object-fit: cover;
    margin-bottom: -5px;
}

.images-heading-card h5 {
    padding: 8px 2px;
}

/* in the media section */
.in-the-media-name 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;
}

.in-the-media-name 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;
}

.in-the-media-section {
    background: linear-gradient(90deg, #ececec, white, #ececec);
    text-align: center;
    padding: 20px;
}

.in-the-media-box {
    display: flex;
    justify-content: center;
}

.in-the-media-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1250px;
    width: 100%;
    margin-top: 30px;
}

.in-the-media-card {
    position: relative;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.in-the-media-section .in-the-media-container img {
    height: auto;
    width: 100%;
    object-fit: cover;
    margin-bottom: -5px;
    padding: 0px 20px;
}

/* company success */
.company-success-section {
    text-align: center;
    padding: 50px 20px;
}

.company-success-section h2 {
    font-size: 2rem;
    background: linear-gradient(120deg, #13547a, #137a75);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    padding-bottom: 30px;
}

.company-success-section 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;
}

.company-success-section p.company-success-define {
    color: #1f1f1f;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 1.6rem;
    font-weight: 600;
}

.company-success-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
    max-width: 1250px;
    margin: auto;
    padding-top: 30px;
    background: linear-gradient(120deg, #13547ae7, #137a75e0);
    border-radius: 20px;
    padding-bottom: 30px;
}

.company-success-card {
    display: flex;
    align-items: center;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    padding: 10px;
    justify-content: center;
}

.company-success-card:hover img {
    transform: scale(1.05);
}

.company-success-card img {
    width: 40px;
    height: auto;
    object-fit: cover;
}

.company-success-card-content {
    padding-left: 15px;
}

.company-success-card h3 {
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
}

.company-success-card p {
    font-size: 0.9rem;
    color: #fff;
    font-weight: bold;
    margin-top: 10px;
}

/* FAQ Section */
.faq-container {
    max-width: 1250px;
    margin: auto;
    margin-top: 50px;
    border-radius: 8px;
}

.faq-title {
    font-size: 1.5rem;
    background: linear-gradient(120deg, #13547a, #137a75);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.faq-title::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;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0px;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    background: linear-gradient(120deg, #13547a, #137a75);
    color: white;
    padding: 12px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-answer {
    display: none;
    padding: 10px;
    text-align: left;
    background: #f1f1f1;
    border-radius: 5px;
    margin-top: 5px;
}

.faq-toggle {
    font-size: 18px;
    font-weight: bold;
    background: #fff;
    color: #13547a;
    padding: 0px 5px;
    border-radius: 4px;
    margin-left: 5px;
}

.view-all {
    margin-top: 20px;
    display: inline-block;
    background: linear-gradient(120deg, #13547a, #137a75);
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
}

.view-all:hover {
    background: #137a75;
}

/* footer section */
.wave-view-footer-section {
    background: linear-gradient(90deg, #13547a, #137a75);
}

.wave-view-footer-section img {
    height: 10vh;
    margin-bottom: -5px;
    margin-top: -4px;
}

footer {
    background: linear-gradient(90deg, #13547a, #137a75);
    color: white;
    padding: 40px 20px 70px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1250px;
    margin: auto;
}

.footer-column {
    flex: 1;
    min-width: 150px;
    margin-bottom: 20px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
    /* padding-bottom: 5px; */
    position: relative;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    /* top: 38px; */
    /* right: 0px; */
    height: 2px;
    width: 98%;
    background: #fff;
    display: block;
    animation: afterbottomeffect 1s linear;
}

.footer-column ul {
    list-style: decimal;
    padding-left: 10px;
}

.footer-column ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-column ul li a:hover {
    color: #58d68d;
}

.footer-column.contact h5 {
    margin-top: 10px;
    margin-bottom: 15px;
    border-bottom: 2px solid #fff;
    padding-bottom: 5px;
}

.contact p {
    margin: 5px 0;
    font-size: 14px;
}

.social-icons {
    margin: 10px 0;
}

.social-icons a {
    color: white;
    font-size: 16px;
    margin-right: 10px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #58d68d;
}

.app-buttons img {
    width: 40%;
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #58d68d;
    font-size: 14px;
}

.footer-bottom a {
    color: #58d68d;
    text-decoration: none;
    font-weight: bold;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* footer bottom popup */
.footer-bottom .footer-popup-modal-overlay {
    display: none;
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1001;
    justify-content: center;
    align-items: center;
}

.footer-bottom .footer-popup-modal {
    background: #fff;
    max-width: 800px;
    width: 90%;
    padding: 25px;
    border-radius: 8px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.footer-bottom .footer-popup-modal .footer-popup-close {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 22px;
    cursor: pointer;
    color:green;
}

.footer-bottom .footer-popup-heading{
    font-size: 27px;
    color:black;
    text-align: left;
    padding-bottom: 10px;
}

.footer-bottom .footer-popup-text p{
    font-size: 16px;
    color:#555;
    /* font-weight:600; */
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    text-align: justify;
    line-height: 24px;
    word-spacing: 2px;
    margin-top:10px;
    margin-bottom:10px;
}

.footer-bottom .footer-popup-link{
    text-align: left;
    font-size: 14px;
    padding:10px 0px;
}

.footer-bottom .footer-popup-modal-footer {
    text-align: right;
    margin-top: 20px;
}

.footer-bottom .footer-popup-modal-footer button {
    background: green;
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 4px;
    cursor: pointer;
}

.footer-bottom .open-btn {
    background: none;
    color: #58d68d;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

/* mail and call now button */
.fixed-button-mail-call-container {
    position: fixed;
    top: 65%;
    transform: translateY(-50%);
    right: -5px;
    z-index: 1000;
}

.fixed-button-mail-call {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.fixed-button-mail,
.fixed-button-call {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    background-color: #007d3d;
    padding: 10px;
    border-radius: 5px;
    width: 40px;
    height: 40px;
    transition: width 0.3s ease;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.fixed-button-mail i,
.fixed-button-call i {
    font-size: 17px;
    transition: margin-left 0.3s ease;
    animation:mail-call-effect 5s linear infinite;
}

@keyframes mail-call-effect{
    0% {
        transform: rotate(0deg);
    }

    5% {
        transform: rotate(-10deg);
    }

    10% {
        transform: rotate(10deg);
    }

    15% {
        transform: rotate(-10deg);
    }

    20% {
        transform: rotate(10deg);
    }

    25% {
        transform: rotate(0deg);
    }
    30% {
        transform: scale(1.1);
    }
    35% {
        transform: scale(1);
    }
    40% {
        transform: scale(1.1);
    }
    45% {
        transform: scale(1);
    }
    100% {
        transform: rotate(0deg);
    }
}

.button-text {
    position: absolute;
    left: 43px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fixed-button-mail:hover,
.fixed-button-call:hover {
    width: 120px;
    justify-content: flex-start;
    padding-left: 15px;
    box-shadow:0px 0px 10px #ececec;
}

.fixed-button-mail:hover .button-text,
.fixed-button-call:hover .button-text {
    opacity: 1;
}

/* customer support bottom */
.chat-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #007d3d;
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
    z-index: 9;
}

.chat-button:hover {
    background: #005f2a;
}

.chat-popup {
    position: fixed;
    bottom: 90px;
    left: 20px;
    max-width: 350px;
    height: calc(100vh - 40vh);
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
}

.chat-header {
    background: #007d3d;
    color: white;
    padding: 12px;
    text-align: center;
    font-size: 18px;
    position: relative;
}

.close-chat {
    position: absolute;
    right: 10px;
    top: 8px;
    font-size: 20px;
    cursor: pointer;
}

.chat-body {
    flex: 1;
    display: flex;
    overflow: hidden;
}

.chat-body iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Back To Top */
#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #007d3d;
    color: white;
    font-size: 24px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(500px);
    transition: opacity 0.5s, transform 0.5s ease-out, visibility 0.5s;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 9;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#backToTop.hide {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-500px);
}

/* profile button section */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(192, 192, 192, 0.9)
}

.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    background: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    /* text-align: center; */
}

.modal h2{
    background: linear-gradient(120deg, #13547a, #137a75);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;    
    display: inline-block;
    margin-bottom:15px;
    position: relative;
}

.modal h2::after {
    content: "";
    position: absolute;
    /* top: 38px; */
    /* right: 0px; */
    height: 10px;
    width: 70px;
    border: 5px solid transparent;
    border-top-color: green;
    border-radius: 120%/30px 40px 0 0;
    display: block;
}


.modal.active,
.overlay.active {
    display: block;
}

.modal input {
    width: 100%;
    margin: 5px 0;
    padding: 8px;
    height:30px;
    border:1px solid gray;
}

.modal button {
    width: 100%;
    margin: 5px 0;
    padding: 8px;
    height:30px;
    border:none;
    cursor: pointer;
    background: linear-gradient(120deg, #13547a, #137a75);
    color:#fff;
}

.modal button:hover {
    background: #137a75;
}

.hidden {
    display: none;
}


@media (max-width:1200px) {
    .nav-item {
        margin: 0px 5px;
    }

    /* content styling */
    .content-section {
        padding: 20px;
    }

    .content h2 {
        font-size: 33px;
    }

    /* leading debt video */
    .leading-debt h2 {
        font-size: 25px;
    }

    .leading-debt p {
        font-size: 16px;
    }

    /* images heading */
    .images-heading-card h5 {
        font-size: 12px;
    }

    /* footer section */
    .footer-bottom {
        font-size: 12px;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .nav-items {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: calc(100% - 60px);
        background: #fff;
        margin: 30px;
        border-radius: 20px;
    }

    .navbar.scrolled {
        box-shadow: 0px 0px 4px 2px rgb(0, 0, 0);
    }

    .navbar .nav-items {
        box-shadow: 0px 0px 10px 5px rgb(80, 80, 80);
    }

    .navbar.scrolled .nav-items {
        box-shadow: 0px 0px 10px 5px gray;
    }

    .navbar.scrolled .nav-items .sub-menu a:hover {
        color: #fff;
    }

    .nav-items .nav-item {
        /* margin:15px auto; */
        text-align: left;
        padding: 15px;
    }

    .nav-item a {
        color: #13547a;
        font-weight: 600;
    }

    .nav-items.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .intall-app-span {
        display: none;
    }

    .sub-menu {
        top: 100%;
        /* left: 20%; */
        /* right:0; */
        background: #dbdbdb;
        box-shadow: 0px 0px 10px 3px gray;
        border-radius: 10px;
        padding: 10px;
        width: 100%;
        margin-top: 10px;
    }

    i.navlist-drop-icon{
        right: 20px;
        position:absolute;
    }

    /* navbar service icon */
    .nav-item a .navlist-drop-icon {
        display: inline-block;
        margin-left: 5px;
        transition: transform 0.3s ease-in-out;
    }

    .sub-menu {
        display: none;
        position: static;
        box-shadow: none;
        padding: 0;
        width: 100%;
    }

    .nav-item.open .sub-menu {
        display: block;
    }

    .nav-item.open .navlist-drop-icon {
        transform: rotate(180deg);
    }
    /* navbar service icon end */

    .sub-menu a {
        background-color: #dbdbdb;
    }

    /* carousel section */
    .carousel-content {
        top: 50%;
        left: 20%;
        /* right:5%; */
        transform: translate(-20%, -50%);
        text-align: center;
        max-width: 500px;
    }

    .carousel-content h2 {
        font-size: 30px;
        font-weight: 1000;
        margin-bottom: 30px;
        word-spacing: 5px;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .carousel-content p {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 40px;
        letter-spacing: 1px;
        word-spacing: 3px;
    }

    /* content section */
    .content h2 {
        font-size: 24.5px;
        margin-bottom: 30px;
        color: #13547a;
    }

    ul.content-section-list li {
        font-size: 17px;
    }

    .content-image img {
        /* max-width: 42%; */
    }

    /* leading debt video */
    .leading-debt-video-section {
        padding: 30px;
    }

    .leading-debt {
        flex: 1;
        padding: 0px;
    }

    .leading-debt h2 {
        font-size: 21.8px;
    }

    .leading-debt p {
        font-size: 14px;
    }

    /* loan calculator section */
    .loan-calculator .results p {
        font-size: 14px;
    }

    .loan-calculator .results p:nth-child(even) {
        padding: 0px 15px;
    }

    /* images heading */
    .images-heading-card h5 {
        font-size: 17px;
    }

    /* company success */
    .company-success-container {
        grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    }

    /* footer section */
    .footer-column {
        min-width: 330px;
    }
}

@media (max-width:768px) {

    /* carousel styling */
    .carousel-content h2 {
        font-size: 26px;
        font-weight: 1000;
        margin-bottom: 30px;
        word-spacing: 5px;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .carousel-content p {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 40px;
        letter-spacing: 1px;
        word-spacing: 3px;
    }

    .carousel-content a {
        font-weight: 600;
        padding: 10px 25px;
        border-radius: 10px;
        text-decoration: none;
    }

    /* content section */
    .content h2 {
        font-size: 20.5px;
        margin-bottom: 20px;
    }

    ul.content-section-list li {
        font-size: 16px;
    }

    .content-image img {
        max-width: 100%;
    }

    /* leading debt video */
    .leading-debt-video-section {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .leading-debt h2 {
        font-size: 32px;
    }

    .leading-debt h2::after {
        width: 100%;
        animation: slideLine 5s infinite linear;
    }

    .leading-debt-video {
        text-align: center;
    }

    .leading-debt-video video {
        max-width: 100%;
    }

    /* process section */
    .our-process-heading h2 {
        font-size: 20px;
    }

    /* loan resolution */
    .loan-resolution-section h2 {
        font-size: 1.5rem;
    }

    /* loan calculator section */
    .loan-calculator .results p:nth-child(even) {
        padding: 0px 50px;
    }

    /* images heading */
    .images-heading-name h2 {
        font-size: 1.3rem;
    }

    .images-heading-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .images-heading-card h5 {
        font-size: 13.5px;
    }

    /* in the media */
    .in-the-media-name h2 {
        font-size: 1.3rem;
    }

    .in-the-media-name h2::after {
        height: 50px;
        width: 100px;
    }

    .in-the-media-section .in-the-media-container img {
        padding: 0px 10px;
    }

    /* company success */
    .company-success-section h2 {
        font-size: 1.5rem;
    }

    .company-success-section p.company-success-define {
        font-size: 1.2rem;
    }

    .company-success-container {
        grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    }

    /* FAQ Section */
    .faq-title {
        font-size: 1.3rem;
    }

    .faq-item {
        border-bottom: 1px solid #ddd;
        padding: 10px 0px;
    }

    /* footer section */
    .footer-column {
        min-width: 250px;
    }
}

@media (max-width:660px) {

    /* content section */
    .content-section {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .content-section h2::after {
        width: 100%;
        animation: slideLine 5s infinite linear;
    }

    .content-image {
        text-align: center;
    }

    .content-image img {
        max-width: 80%;
    }
}

@media (max-width:575px) {
    .navbar {
        padding: 15px 10px;
    }

    .navbar-profile-button .nav-button a {
        padding: 5px 7px;
    }

    .navbar-profile-button {
        gap: 10px;
    }

    .menu-toggle {
        padding: 5px 7px;
        margin-top: -5px;
    }

    .nav-items {
        top: 50px;
        left: 0;
        width: calc(100% - 60px);
        background: #fff;
        margin: 30px;
        border-radius: 20px;
    }

    .navlogo img {
        width: 150px;
        height: 30px;
    }

    /* carousel styling */
    .carousel {
        height: 80vh;
    }

    .carousel-content {
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 100%;
    }

    .carousel-container{
        height: 80vh;
    }

    .carousel-content h2 {
        font-size: 20px;
        font-weight: 1000;
        margin-bottom: 30px;
        word-spacing: 5px;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .carousel-content p {
        font-size: 12px;
        font-weight: 800;
        margin-bottom: 30px;
        letter-spacing: 1px;
        word-spacing: 3px;
    }

    .carousel-item img {
        width: 100%;
        object-fit: cover;        
        object-position: 50%;
        height: 80vh;
    }

    /* content section */
    .content h2 {
        font-size: 21px;
    }

    ul.content-section-list li {
        font-size: 15px;
    }

    .content-image img {
        /* max-width: 30%; */
    }

    /* leading debt video */
    .leading-debt h2 {
        font-size: 22px;
    }

    .leading-debt p {
        font-size: 13px;
    }

    /* process section */
    .our-process-heading h2 {
        font-size: 28px;
    }

    /* loan resolution */
    .loan-resolution-section h2 {
        font-size: 1.97rem;
    }

    .loan-resolution-section h2::after {
        right: 80px;
    }

    /* loan calculator section */
    .loan-calculator {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .loan-calculator-heading h2 {
        font-size: 1.5rem;
    }

    .loan-calculator .results p:nth-child(even) {
        padding: 0px 15px;
    }

    /* images heading */
    .images-heading-name h2 {
        font-size: 1.2rem;
    }

    .images-heading-card h5 {
        font-size: 19.5px;
    }

    /* in the media */
    .in-the-media-section .in-the-media-container img {
        padding: 5px;
    }

    .in-the-media-container {
        grid-template-columns: repeat(4, 1fr);
    }

    .in-the-media-section .in-the-media-container .large-display-none {
        display: none;
    }

    /* company success */
    .company-success-section h2 {
        font-size: 1.3rem;
    }

    /* FAQ Section */
    .faq-title {
        font-size: 1.1rem;
    }

    .faq-question {
        font-size: 14px;
    }

    .faq-answer {
        font-size: 14px;
    }

    /* footer section */
    .footer-column {
        min-width: 200px;
    }

    .footer-column ul li {
        margin-bottom: 10px;
        font-size: 12px;
    }

    .contact p {
        font-size: 12px;
    }

    .social-icons a {
        font-size: 14px;
    }

    /* footer bottom popup */
    .footer-bottom .footer-popup-text p{
        font-size: 15px;
    }

    /* profile button section */
    .modal {
        max-width:300px;
    }
}

@media (max-width:451px) {
    /* content section */
    .content-image img {
        max-width: 100%;
    }

    /* process section */
    .our-process-heading h2 {
        font-size: 23px;
    }

    /* images heading */
    .images-heading-card h5 {
        font-size: 17px;
    }

    /* company success */
    .company-success-section p.company-success-define {
        font-size: 1.1rem;
    }

    /* FAQ Section */
    .faq-title {
        font-size: 1.4rem;
    }

    .faq-title::after {
        right: 100px;
    }

    /* footer section */
    .footer-column {
        min-width: 150px;
    }
}

@media (max-width: 391px) {

    /* content section  */
    .content-image img {
        /* max-width: 35%; */
    }

    /* leading debt */
    .leading-debt h2 {
        font-size: 20px;
    }

    /* process section */
    .our-process-heading h2 {
        font-size: 20px;
    }

    /* loan resolution */
    .loan-resolution-section h2 {
        font-size: 1.6rem;
    }

    .loan-resolution-section h2::after {
        right: 50px;
    }

    /* loan calculator section */
    .loan-calculator-heading h2 {
        font-size: 2rem;
    }

    .loan-calculator-heading h2::after {
        right: 80px;
    }

    .loan-calculator .results p:nth-child(even) {
        padding: 0px 7px;
    }

    /* images heading */
    .images-heading-card h5 {
        font-size: 15px;
    }

    /* in the media */
    .in-the-media-container {
        gap: 5px;
    }

    /* FAQ Section */
    .faq-title {
        font-size: 1.4rem;
    }

    .faq-title::after {
        right: 80px;
    }

    /* footer section */
    .footer-column ul li {
        margin-bottom: 10px;
        font-size: 11px;
    }

    .contact p {
        font-size: 11px;
    }

    .social-icons a {
        font-size: 13px;
    }

    /* footer bottom popup */
    .footer-bottom .footer-popup-text p{
        font-size: 14px;
        /* line-height: 20px; */
    }
}