@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bs-body-font-size: 16px;
    --bs-border-color: #E8E8E8;
    --bs-success-bg-subtle: #16A34A1A;
    --accent-10: #F59E0B1A;
    --accent-400: #CA8208;
    --accent-500: #9D6506;
    --neutral-100: #ffffff;
    --neutral-200: #E8E8E8;
    --neutral-300: #D2D2D2;
    --neutral-400: #BBBBBB;
    --neutral-600: #8E8E8E;
    --neutral-700: #777777;
    --neutral-800: #606060;
    --neutral-900: #4a4a4a;
    --neutral-1000: #333333;
}

body {
    font-family: "Raleway", sans-serif;
    transition: none;
    scroll-behavior: smooth;
    scroll-padding-top: 150px;
    opacity: 0;
    transition: opacity 0.2s ease-in;
}

body.loaded {
    opacity: 1;
}

.fs-12 {
    font-size: 0.75rem;
}

.fs-14 {
    font-size: 0.875rem;
}

.bg-success-subtle .desc {
    color: var(--neutral-700);
}

.swiper {
    width: 100%;
}

.w-fit-content {
    width: fit-content;
}

.ul-heading {
    font-size: 1.25rem;
    color: #000;
    font-weight: 700;
}

.gap-12 {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bg-extradark {
    background-color: #000;
    color: var(--neutral-100);
}

.spinner-border {
    --bs-spinner-width: 1rem;
    --bs-spinner-height: 1rem;
    --bs-spinner-border-width: 2px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    border-radius: 0;
    transition: all 0.3s ease-in-out;
}


.btn-white {
    --bs-btn-color: #000;
    --bs-btn-bg: white;
    --bs-btn-border-color: white;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #E8E8E8;
    --bs-btn-hover-border-color: #E8E8E8;
    --bs-btn-focus-shadow-rgb: 211, 212, 213;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #D2D2D2;
    --bs-btn-active-border-color: #D2D2D2;
}

.btn-light {
    --bs-btn-color: #000;
    --bs-btn-bg: transparent;
    --bs-btn-border-color: transparent;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #3333331A;
    --bs-btn-hover-border-color: #eaeaea;
    --bs-btn-focus-shadow-rgb: 211, 212, 213;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #d1d1d1;
    --bs-btn-active-border-color: #d1d1d1;
}

.btn-dark {
    --bs-btn-color: #fff;
    --bs-btn-bg: #000000;
    --bs-btn-border-color: #000000;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #333333;
    --bs-btn-hover-border-color: #333333;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #1a1a1a;
    --bs-btn-active-border-color: #1a1a1a;
}

.main-title-heading {
    font-size: 3rem;
    font-weight: 700;
    text-transform: capitalize;
}

.goog-te-gadget-simple {
    background-color: var(--neutral-1000) !important;
    padding: 0.5rem 1rem !important;
}

.goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob-lTBxed span {
    font-weight: 700;
    font-size: 1rem;
    color: var(--neutral-100);
}

.title-header {
    background: #000;
}

.title-header .card-body {
    padding: 2rem 0;
}

.section-head {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

.section-head .title-heading {
    text-transform: capitalize;
    text-align: center;
}

.title-heading {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--neutral-1000);
    text-transform: capitalize;
}

.row {
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 2rem;
}

section .container,
footer .container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding-top: 120px;
    padding-bottom: 120px;
}

.logo {
    max-width: 250px;
}

.decoration-none {
    text-decoration: none !important;
}

/* navbar */

#navbar {
    background: linear-gradient(to bottom, black -33px, transparent 100%);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding: 0;
    z-index: 99999;
    transition: all 0.5s ease;
}

#navbar.bg-theme-light {
    background: var(--neutral-100);
}

#navbar.nav-sticky {
    background: var(--neutral-100);
}

#navbar:has(.navbar-toggler[aria-expanded="true"]) {
    background: white !important;
}

#navbar .container {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}


#navbar.bg-theme-light .nav-link,
#navbar:has(.navbar-toggler[aria-expanded="true"]) .nav-link,
#navbar.nav-sticky .nav-link {
    color: var(--neutral-1000);
}

#navbar.bg-theme-light .hamburger-menu-btn,
#navbar.nav-sticky .hamburger-menu-btn {
    --lines-color: #333333;

}

#navbar ul.navbar-nav {
    column-gap: 0.75rem;
}

#navbar .nav-link {
    text-transform: uppercase;
    color: var(--neutral-100);
    font-weight: 900;
    transition: all 0.5s ease;

}

.brand-logo {
    height: 68px;
}

/* hamburger animated menu  */

.hamburger-menu-btn {
    --lines-color: var(--neutral-100);
    width: 1.5rem;
    padding: 0;
    border: none;
    box-shadow: none !important;
}

.hamburger-menu-btn:before,
.hamburger-menu-btn:after,
.hamburger-menu-btn div {
    background: var(--lines-color);
    content: "";
    display: block;
    height: 2px;
    border-radius: 3px;
    margin: 5px 0;
    transition: 0.5s;
}

.hamburger-menu-btn[aria-expanded="true"] {
    --lines-color: #000000;
}

.hamburger-menu-btn[aria-expanded="true"]:before {
    transform: translateY(7px) rotate(135deg);
}

.hamburger-menu-btn[aria-expanded="true"]:after {
    transform: translateY(-7px) rotate(-135deg);
}

.hamburger-menu-btn[aria-expanded="true"] div {
    transform: scale(0);
}

/* hero section  */
.hero-section {
    min-height: 100dvh;
    position: relative;
    color: var(--neutral-200);
}

.hero-section .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -1;
}

section.hero-section .container {
    padding-top: 200px;
    padding-bottom: 200px;
}

/* trusted platforms  */
#trusted .container {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

#trusted img.brands-img {
    height: 80px;
}

/* why sell with me  */
.card {
    border-radius: 0;
    --bs-card-border-color: #D2D2D2;
    --bs-card-border-width: 1.6px;
}

.card-img-top {
    aspect-ratio: 2.06;
    object-fit: cover;
}

.card-body {
    padding: 1.25rem;
    background-color: #000;
    color: var(--neutral-200);
    font-weight: 500;
}

.card-title {
    font-weight: 600;
    font-size: 1.5rem;
}

/* about me  */
.profile-img {
    --padding-x: 42px;
    margin-left: var(--padding-x);
    margin-right: var(--padding-x);
    width: calc(100% - calc(var(--padding-x) * 2));
}

.profile-card {
    background-color: #000;
    color: var(--neutral-100);
    font-size: 1.125rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    padding: 1.5rem 3rem;
}

.profile-tag {
    background-color: #47556980;
    padding: 0.25rem 0.75rem;
}

/* row-content  */
.row-content:nth-child(odd) {
    flex-direction: row-reverse;
}

.row-content:nth-child(odd) .content {
    background-color: #000;
}

.row-content:nth-child(odd) .desc {
    color: var(--neutral-200);
}

.row-content:nth-child(odd) h3 {
    color: var(--neutral-100);
}

.row-content .img-section,
.row-content .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.row-content .img-section {
    padding: 94px;
    background-color: var(--accent-10);
}

.row-content .content {
    align-items: start;
    padding: 77px 120px;
}

.row-content .img-section img {
    max-width: 300px;
    width: 100%;
}

/* cta section */
section#cta,
section#trusted {
    background: #000;
}

.cta-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.875rem;
    gap: 1rem;
}

.cta-card:hover {
    background-color: var(--neutral-1000);
}

.cta-card a {
    color: var(--neutral-100);
    font-weight: 500;
    text-decoration: none;
    text-align: center;
}

/* how it works section  */
#about-me .row,
#how-it-works .bordered-wrapper .row {
    --bs-gutter-x: 3rem;
    --bs-gutter-y: 3rem;
}

#how-it-works .img-section {
    height: 100%;
    border: 1px solid var(--bs-border-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.875rem;
}

.key-point-card {
    display: grid;
    grid-template-columns: 3rem auto;
    align-items: center;
    gap: 2rem;
    color: var(--neutral-1000);
}

.form-content-section .name,
.form-content-section h3,
.key-point-card h3,
#trusted h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.point-check-bg,
.count-bg {
    width: 3rem;
    height: 3rem;
    background: var(--neutral-200);
    display: grid;
    place-content: center;
    font-weight: 700;
}

.point-check-bg {
    border-radius: 0.75rem;
    background: var(--accent-500);
}

.point-check-bg img {
    width: 1.5rem;
}


/* insights section  */
.bordered-wrapper {
    border: 1px solid var(--bs-border-color);
    padding: 3rem;
}

.bordered-wrapper .row {
    --bs-gutter-x: 3rem;
    --bs-gutter-y: 1.5rem;
}

.insight-card {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    font-weight: 500;
    padding: 1.25rem;
    color: var(--neutral-800);
    border: 1px solid var(--bs-border-color);
    text-align: center;
    height: auto;
}

.desc {
    color: var(--neutral-800);
}

.insight-card-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.insight-card-header .author-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--neutral-900);
}

.ratings {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.insight-card-body {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: space-between;
}

.insight-card-content {
    display: -webkit-box;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
}

.insight-card-content.show {
    display: block;
}

/* footer section  */
footer {
    background-color: #000000;
    overflow: hidden;
}

footer .container {
    padding-top: 80px;
    padding-bottom: 80px;
}

.footer-main-content.row {
    display: flex;
    justify-content: space-between;
    color: var(--neutral-100);
    font-weight: 500;
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 2rem;
}

.footer-main-content.row a {
    color: var(--neutral-100);
    font-weight: 500;
    text-decoration: none;
}

.footer-bottom-content {
    border-top: 1px solid var(--neutral-1000);
    --bs-gutter-y: 1.5rem;
    color: var(--neutral-400);
}

.footer-bottom-content ul {
    display: flex;
    gap: 3rem;
}

.footer-bottom-content ul li a {
    color: var(--neutral-300);
    text-decoration: none;
}



/* user form */

#valuation-form .bordered-wrapper .row {
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 2rem;
    font-weight: 500;
    color: var(--neutral-1000);
}

.form-content-section .profile-tag {
    background-color: var(--accent-400);
    color: var(--neutral-100);
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-section form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex-grow: 1;
    padding: 0;
    border: none;
}

.form-note {
    color: var(--neutral-700);
    font-size: 0.875rem;
    font-weight: 500;
}

.form-control {
    border-radius: 0;
    padding: 0.875rem 1rem;
    font-weight: 500;
    box-shadow: none !important;
}

.form-control::placeholder {
    color: var(--neutral-600);
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.3s ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}


@media (max-width : 767px) {
    .row {
        --bs-gutter-x: 2rem;
        --bs-gutter-y: 1.5rem;
    }

    section .container,
    footer .container {
        gap: 2rem;
    }

    .main-title-heading {
        font-size: 2rem;
    }

    #trusted img.brands-img {
        height: 48px;
    }

    .profile-img {
        --padding-x: 25px;
    }

    .profile-card {
        font-size: 0.875rem;
        padding: 0.75rem 3rem;
        justify-content: flex-start;
    }

    .row-content {
        flex-direction: column !important;
    }

    .row-content .w-50 {
        width: 100% !important;
    }

    .row-content .img-section {
        padding: 55px;
    }

    .row-content .img-section img {
        max-width: 140px;
    }

    .row-content .content {
        padding: 77px 1.5rem;
    }


    /* .footer-bottom-content ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    } */
}

@media (max-width : 991px) {
    .brand-logo {
        max-width: 137px;
        height: 48px;
    }

    .navbar-nav {
        height: auto;
        min-height: calc(100dvh - 1rem - 1.125rem - 1.125rem - 48px);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .title-heading {
        font-size: 1.5rem;
    }

    section .container,
    footer .container {
        --bs-gutter-x: 3rem;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }


    section.hero-section .container {
        padding-top: 200px !important;
        padding-bottom: 200px !important;
    }

    #navbar .container {
        --bs-gutter-x: 3rem;
        padding-top: 1.125rem;
        padding-bottom: 1.125rem;
    }

    .bordered-wrapper {
        padding: 0.75rem;
    }

    #about-me .row,
    #how-it-works .bordered-wrapper .row {
        --bs-gutter-y: 2rem;
    }

    .form-content-section .name,
    .form-content-section h3,
    .key-point-card h3,
    #trusted h3,
    .card-title {
        font-size: 1.25rem;
    }

    .key-point-card {
        grid-template-columns: 2rem auto;
        gap: 1rem;
    }

    .key-point-card .desc,
    .card-text {
        font-size: 0.875rem;
    }

    .point-check-bg,
    .count-bg {
        width: 2rem;
        height: 2rem;
        font-size: 10.67px;
    }

    .point-check-bg {
        border-radius: 0.5rem;
    }

    .point-check-bg img {
        width: 1rem;
    }

    #how-it-works .img-section {
        padding: 0.75rem;
    }

    #how-it-works .img-section img {
        margin-bottom: 1.5rem;
    }

    #how-it-works .img-section {
        gap: 0.5rem;
    }

    .insight-card {
        padding: 1.5rem 0.75rem;
        gap: 2rem;
    }

    .insight-card-header {
        gap: 1rem;
    }

    .footer-main-content .col {
        flex: 0 0 auto;
        width: 100%;
        display: flex;
        justify-content: center;
        text-align: center;
    }
}

@media (min-width : 1200px) {
    .footer-main-content .col {
        flex: 0 0 auto;
        width: calc(var(--bs-gutter-x) + 250px);
    }
}