/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Red Hat Display', sans-serif;
    background-color: #111111;
    color: #FDFDFD;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #111111;
}

::-webkit-scrollbar-thumb {
    background: #C99B4B;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #B8894A;
}

/* Text Selection */
::selection {
    background-color: rgba(201, 155, 75, 0.3);
    color: #FDFDFD;
}

/* Navigation */
.custom-navbar {
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 155, 75, 0.2);
    transition: all 0.3s ease;
}

.navbar-brand .brand-icon {
    color: #C99B4B;
    width: 32px;
    height: 32px;
}

.navbar-brand .brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FDFDFD;
}

.navbar-nav .nav-link {
    color: #FDFDFD !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #C99B4B !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
    color: #C99B4B !important;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: #C99B4B;
}

.navbar-toggler {
    border: none;
    color: #FDFDFD;
}

.navbar-toggler:focus {
    box-shadow: none;
}


/* Typography */
.text-accent {
    color: #C99B4B !important;
}

.text-white {
    color: white !important;
}


/* Hero Section */
.hero-section {
    padding: 100px 0px 80px 0px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 50%, #111111 100%);
}

.floating-hearts {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
}

.hero-title {
    margin-bottom: 30px;
}

.hero-brand {
    display: block;
    font-family: 'Red Hat Display', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.hero-tagline {
    display: block !important;
    font-size: 1.5rem;
    font-weight: 500;
    color: #C99B4B;
}

.hero-tagline-phone-version{
    display: none !important;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: white;
    margin-bottom: 30px;
    line-height: 1.4;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(201, 155, 75, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    margin-bottom: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, #C99B4B, #B8860B);
    color: #111111;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #B8860B, #C99B4B);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 155, 75, 0.3);
    color: #111111;
}

.btn-outline {
    border: 2px solid #C99B4B;
    color: #C99B4B;
    background: transparent;
}

.btn-outline:hover {
    background: rgba(201, 155, 75, 0.1);
    color: #C99B4B;
    transform: translateY(-3px);
}

.hero-stats {
    opacity: 0.8;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #C99B4B;
    margin-bottom: 8px;
    font-family: 'Red Hat Display', sans-serif;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #C99B4B;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Styles */
.section-bg-primary {
    background: rgba(17, 17, 17, 0.95);
    padding: 100px 0;
}

.section-bg-secondary {
    background: rgba(17, 17, 17, 0.98);
    /* padding: 100px 0; */
}

.section-title {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(201, 155, 75, 0.8);
    line-height: 1.6;
}

.section-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.7;
}

.section-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(201, 155, 75, 0.2);
}

/* Feature Cards */
.feature-card {
    background: rgba(201, 155, 75, 0.05);
    border: 1px solid rgba(201, 155, 75, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(201, 155, 75, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #C99B4B, #B8860B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-icon i {
    color: #111111;
    width: 32px;
    height: 32px;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h4 {
    color: #C99B4B;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Red Hat Display', sans-serif;
    font-size: 1.5rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Feature Points */
.feature-points {
    margin-top: 30px;
}

.feature-point {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(201, 155, 75, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-point:hover {
    background: rgba(201, 155, 75, 0.1);
    transform: translateX(5px);
}

.feature-point i {
    color: #C99B4B;
    width: 20px;
    height: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-point span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Consultant Section */
.consultant-image {
    position: relative;
}

.consultant-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #C99B4B, #B8860B);
    color: #111111;
    padding: 12px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.consultant-highlights {
    margin-bottom: 30px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(201, 155, 75, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(201, 155, 75, 0.1);
    transform: translateX(5px);
}

.highlight-item i {
    color: #C99B4B;
    width: 24px;
    height: 24px;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 4px;
}

.highlight-item span {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.consultant-quote {
    background: rgba(201, 155, 75, 0.1);
    border-left: 4px solid #C99B4B;
    padding: 30px;
    border-radius: 15px;
}

.consultant-quote blockquote {
    font-family: 'Red Hat Display', sans-serif;
    font-style: italic;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

/* Philosophy Section */
.philosophy-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #C99B4B, #B8860B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.philosophy-icon i {
    color: #111111;
    width: 32px;
    height: 32px;
}

.philosophy-quote {
    background: rgba(201, 155, 75, 0.05);
    border: 1px solid rgba(201, 155, 75, 0.1);
    border-radius: 20px;
    padding: 40px;
    position: relative;
}

.philosophy-quote::before,
.philosophy-quote::after {
    content: '"';
    font-size: 4rem;
    color: rgba(201, 155, 75, 0.3);
    position: absolute;
    font-family: 'Red Hat Display', sans-serif;
}

.philosophy-quote::before {
    top: 10px;
    left: 30px;
}

.philosophy-quote::after {
    bottom: -10px;
    right: 30px;
}

.philosophy-quote blockquote {
    font-family: 'Red Hat Display', sans-serif;
    font-style: italic;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Clientele Cards */
.clientele-card {
    background: rgba(201, 155, 75, 0.05);
    border: 1px solid rgba(201, 155, 75, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.clientele-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(201, 155, 75, 0.1);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #C99B4B, #B8860B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-icon i {
    color: #111111;
    width: 28px;
    height: 28px;
}

.clientele-card h4 {
    color: #C99B4B;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Red Hat Display', sans-serif;
    font-size: 1.4rem;
}

.clientele-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Process Timeline */
.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #C99B4B, #B8860B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 2;
}

.step-content {
    width: calc(50% - 60px);
    padding: 30px;
    background: rgba(201, 155, 75, 0.05);
    border: 1px solid rgba(201, 155, 75, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(201, 155, 75, 0.1);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 155, 75, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.step-icon i {
    color: #C99B4B;
    width: 24px;
    height: 24px;
}

.step-content h4 {
    color: #C99B4B;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Red Hat Display', sans-serif;
    font-size: 1.4rem;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .process-step {
        flex-direction: column !important;
        text-align: center;
        margin-bottom: 50px;
    }

    .step-number {
        position: relative;
        left: auto;
        transform: none;
        margin-bottom: 20px;
    }

    .step-content {
        width: 100%;
        padding: 20px;
    }

    .step-icon {
        margin: 0 auto 15px;
    }
}

@media (max-width: 576px) {
    .step-content {
        padding: 15px;
    }

    .hero-tagline{
        display: none !important;
    }
    .hero-tagline-phone-version{
        display: block !important;
        margin-top: 20px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .step-icon {
        width: 40px;
        height: 40px;
    }

    .step-icon i {
        width: 20px;
        height: 20px;
    }

    .step-content h4 {
        font-size: 1.2rem;
    }

    .step-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}



.soulmate_button {
    background: #C99B4B;
    border: none;
    color: #111111;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    /* display: inline-flex; */
    align-items: center;
}

.soulmate_button:hover {
    background: #B8894A;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 155, 75, 0.3);
    color: #111111;
}

.btn-outline-light {
    border: 2px solid #C99B4B;
    color: #FDFDFD;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline-light:hover {
    background: rgba(201, 155, 75, 0.1);
    border-color: #C99B4B;
    color: #FDFDFD;
    transform: translateY(-3px);
}


/* Plan Section */
.plan-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.plan-description {
    margin-bottom: 50px;
}

.plan-description p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.plan-feature {
    background: rgba(201, 155, 75, 0.05);
    border: 1px solid rgba(201, 155, 75, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.plan-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(201, 155, 75, 0.1);
}

.plan-feature i {
    color: #C99B4B;
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

.plan-feature h5 {
    color: #C99B4B;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Red Hat Display', sans-serif;
    font-size: 1.3rem;
}

.plan-feature p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.plan-quote {
    background: rgba(201, 155, 75, 0.05);
    border-left: 4px solid #C99B4B;
    border-radius: 15px;
    padding: 30px;
}

.plan-quote blockquote {
    font-family: 'Red Hat Display', sans-serif;
    font-style: italic;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0;
}

/* CTA Section */
.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #C99B4B, #B8860B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.cta-icon i {
    color: #111111;
    width: 32px;
    height: 32px;
}

.cta-title {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(201, 155, 75, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-cta {
    background: linear-gradient(45deg, #C99B4B, #B8860B);
    color: #111111;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: linear-gradient(45deg, #B8860B, #C99B4B);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(201, 155, 75, 0.3);
    color: #111111;
}

.cta-tagline {
    font-family: 'Red Hat Display', sans-serif;
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(201, 155, 75, 0.7);
}



/* Footer */
.footer {
    background: rgba(201, 155, 75, 0.03);
    border-top: 1px solid rgba(201, 155, 75, 0.2);
}

.footer-brand .brand-icon {
    color: #C99B4B;
    width: 32px;
    height: 32px;
}

.footer-brand .brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FDFDFD;
}

.footer-brand p {
    color: #FDFDFD;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #C99B4B;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.footer h5 {
    color: #FDFDFD;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #FDFDFD;
    opacity: 0.8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: #C99B4B;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-item i {
    color: #C99B4B;
    width: 20px;
    height: 20px;
}


.contact-item span {
    color: #FDFDFD;
    opacity: 0.8;
}

.footer-divider {
    border-color: rgba(201, 155, 75, 0.2);
    margin: 2rem 0 1rem;
}

.footer .text-center p {
    color: #FDFDFD;
    opacity: 0.7;
    margin: 0;
}

/* Login Page Styles */
#toast-container>.toast {
    background-color: #111111;
    color: #C99B4B;
    font-family: 'Red Hat Display', sans-serif;
    box-shadow: 0 0 10px rgba(201, 155, 75, 0.3);
}

.login-page {
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 50%, #111111 100%);
    min-height: 100vh;
}

.login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.login-container {
    max-width: 500px;
    margin: 0 auto;
}

.login-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FDFDFD;
    margin-bottom: 0.5rem;
}

.login-subtitle {
    color: #FDFDFD;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.form-container {
    background: rgba(201, 155, 75, 0.05);
    border: 1px solid rgba(201, 155, 75, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.form-toggle {
    background: rgba(201, 155, 75, 0.1);
    border-radius: 0.5rem;
    padding: 0.25rem;
    display: flex;
}

.toggle-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
    color: #FDFDFD;
}

.toggle-btn.active {
    background: #C99B4B;
    color: #111111;
    box-shadow: 0 2px 10px rgba(201, 155, 75, 0.3);
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.form-floating {
    position: relative;
}

.form-floating .form-control {
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid rgba(201, 155, 75, 0.3);
    color: #FDFDFD;
    padding-left: 3rem;
}

.form-floating .form-control:focus {
    background: rgba(17, 17, 17, 0.9);
    border-color: #C99B4B;
    box-shadow: 0 0 0 0.2rem rgba(201, 155, 75, 0.2);
    color: #FDFDFD;
}

.form-floating label {
    color: rgba(253, 253, 253, 0.7);
    display: flex;
    align-items: center;
    padding-left: 3rem;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #C99B4B;
    width: 20px;
    height: 20px;
    z-index: 4;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #C99B4B;
    cursor: pointer;
    z-index: 4;
}

.form-check-input:checked {
    background-color: #C99B4B;
    border-color: #C99B4B;
}

.form-check-label {
    color: #FDFDFD;
    opacity: 0.8;
}

.forgot-password {
    color: #C99B4B;
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password:hover {
    opacity: 0.8;
}

.social-login {
    margin-top: 2rem;
}

.divider {
    position: relative;
    text-align: center;
    margin: 2rem 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(201, 155, 75, 0.2);
}

.divider span {
    background: #111111;
    color: rgba(253, 253, 253, 0.7);
    padding: 0 1rem;
    font-size: 0.9rem;
}

.social-btn {
    border-color: rgba(201, 155, 75, 0.3);
    color: #FDFDFD;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.social-btn:hover {
    border-color: rgba(201, 155, 75, 0.5);
    background: rgba(201, 155, 75, 0.1);
    color: #FDFDFD;
}

.terms-text {
    color: rgba(253, 253, 253, 0.7);
    font-size: 0.9rem;
}

.terms-text a {
    color: #C99B4B;
    text-decoration: none;
}

.terms-text a:hover {
    opacity: 0.8;
}

/* Proposals Page Styles */
.proposals-page {
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 50%, #111111 100%);
    min-height: 100vh;
}

.proposals-header {
    position: relative;
    /* Required for pseudo-element positioning */
    width: 100%;
    height: 80vh;
    padding: 120px 0 60px;
    text-align: center;
    color: #fff;
    /* Ensure text is visible (adjust as needed) */
    z-index: 1;
    /* Ensures content stays above the dimmed background */
}

.proposals-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/blogs/Compatibility.jpeg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    /* Adjust opacity (0.5 = 50%, 0.3 = 30%, etc.) */
    z-index: -1;
    /* Places the pseudo-element behind the content */
}

.proposals-title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    font-weight: 700;
    color: #FDFDFD;
    margin-bottom: 1rem;
}

.proposals-subtitle {
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    font-size: 1.25rem;
    color: #FDFDFD;
    opacity: 0.8;
    line-height: 1.8;
}



.filter-section {
    border-bottom: 1px solid rgba(201, 155, 75, 0.2);
}

.filter-container {
    text-align: center;
}

.btn-outline-primary {
    border-color: #C99B4B;
    color: #C99B4B;
}

.btn-outline-primary:hover {
    background: #C99B4B;
    border-color: #C99B4B;
    color: #111111;
}

.profile-card {
    background: rgba(201, 155, 75, 0.05);
    border: 1px solid rgba(201, 155, 75, 0.2);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(201, 155, 75, 0.1);
    border-color: rgba(201, 155, 75, 0.4);
}

.profile-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.profile-card:hover .profile-image img {
    transform: scale(1.1);
}

.profile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
}

.profile-info {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
}

.profile-name {
    color: #FDFDFD;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.profile-details {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.profile-detail {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #FDFDFD;
}

.profile-detail i {
    color: #C99B4B;
    width: 16px;
    height: 16px;
}

.profile-content {
    padding: 1.5rem;
}

.profile-bio {
    color: #FDFDFD;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.interests-label {
    color: #C99B4B;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.interests-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.interest-tag {
    background: rgba(201, 155, 75, 0.2);
    color: #C99B4B;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.profile-meta {
    margin-bottom: 1.5rem;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.meta-label {
    color: rgba(253, 253, 253, 0.7);
    font-size: 0.9rem;
}

.meta-value {
    color: #C99B4B;
    font-size: 0.9rem;
    font-weight: 500;
}

.send-proposal-btn {
    width: 100%;
    background: #C99B4B;
    text-decoration: none;
    border: none;
    color: #111111;
    font-weight: 600;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.send-proposal-btn:hover {
    background: #B8894A;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 155, 75, 0.3);
    color: #111111;
}

/* Modal Styles */
.proposal-modal .modal-content {
    background: #111111;
    border: 1px solid rgba(201, 155, 75, 0.2);
    border-radius: 1rem;
}

.proposal-modal .modal-header {
    border-bottom: 1px solid rgba(201, 155, 75, 0.2);
}

.proposal-modal .modal-title {
    color: #FDFDFD;
    font-weight: 600;
}

.proposal-modal .btn-close {
    filter: invert(1);
}

.modal-profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #C99B4B;
}

.proposal-modal h4 {
    color: #FDFDFD;
    margin-bottom: 0.5rem;
}

.proposal-modal .text-muted {
    color: rgba(253, 253, 253, 0.7) !important;
}

.proposal-modal .form-label {
    color: #C99B4B;
    font-weight: 600;
}

.proposal-modal .form-control {
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid rgba(201, 155, 75, 0.3);
    color: #FDFDFD;
}

.proposal-modal .form-control:focus {
    background: rgba(17, 17, 17, 0.9);
    border-color: #C99B4B;
    box-shadow: 0 0 0 0.2rem rgba(201, 155, 75, 0.2);
    color: #FDFDFD;
}

.proposal-modal .modal-footer {
    border-top: 1px solid rgba(201, 155, 75, 0.2);
}

.proposal-modal .btn-secondary {
    background: transparent;
    border-color: rgba(201, 155, 75, 0.3);
    color: #FDFDFD;
}

.proposal-modal .btn-secondary:hover {
    background: rgba(201, 155, 75, 0.1);
    border-color: rgba(201, 155, 75, 0.5);
    color: #FDFDFD;
}

/* Animations */
@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1275px) {

    .proposals-title {
        font-size: 1.5rem;
    }

    .proposals-subtitle {
        font-size: 1rem;
    }

}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
    }

    .hero-highlight {
        font-size: 3rem !important;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .slide-content blockquote {
        font-size: 1.5rem;
    }

    .slide-content cite {
        font-size: 1.1rem;
    }



    .proposals-subtitle {
        margin-top: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem !important;
    }

    .hero-highlight {
        font-size: 2.5rem !important;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .slide-content blockquote {
        font-size: 1.25rem;
    }

    .proposals-title {
        font-size: 1.75rem;
    }

    .proposals-subtitle {
        margin-top: 35px;
    }

    .feature-card,
    .step-card,
    .testimonial-card {
        margin-bottom: 2rem;
    }
}