/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #191919;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Color Variables */
:root {
    --primary-color: #C8D82E;
    --secondary-color: #f8f9fa;
    --dark-color: #191919;
    --light-color: #ffffff;
    --accent-color: #C8D82E;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --error-color: #dc3545;
}

option{
    background: #C8D82E;
    color:black;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #191919;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.preloader-content {
    text-align: center;
}

.heart-loader {
    font-size: 3rem;
    color: var(--primary-color);
    animation: heartbeat 1.5s ease-in-out infinite;
}

.loading-text {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: #ffffff;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Navigation */
.navbar {
    background: rgba(25, 25, 25, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(25, 25, 25, 0.98);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    margin: 0 0.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.auth-btn {
    background: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.auth-btn:hover {
    background: #ffffff;
    color: var(--dark-color) !important;
    border-color: #C8D82E;
    transform: translateY(-2px);
}
.btn-primary {
    background: var(--primary-color);
    color: #000000;
    border-color: var(--primary-color);
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #ffffff;
    color: var(--dark-color);
    border-color: #C8D82E;
    transform: translateY(-2px);
}


.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000000;
    transform: translateY(-2px);
}

.dropdown-menu {
    background-color: rgba(25, 25, 25, 0.95);
    border: 1px solid rgba(189, 141, 31, 0.2);
    border-radius: 10px;
}

.dropdown-item {
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item.active {
    background-color: rgba(189, 141, 31, 0.1);
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
width: 100%;
height: 90vh;
background-repeat: no-repeat;
background-size: cover;
    background: linear-gradient(rgba(25, 25, 25, 0.7), rgba(25, 25, 25, 0.7)), 
                url('https://images.pexels.com/photos/1024993/pexels-photo-1024993.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
    display: flex;
    align-items: center;
    position: relative;
    background-blend-mode: darken;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(25, 25, 25, 0.4);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Page Headers */
.page-header {
    width: 100%;
    height: 60vh;
    padding: 120px 0 80px;
    background: linear-gradient(rgba(25, 25, 25, 0.8), rgba(25, 25, 25, 0.8)), 
                url('https://images.pexels.com/photos/1024993/pexels-photo-1024993.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
    background-blend-mode: darken;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #e0e0e0;
}

/* Sections */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
}

.bg-dark {
    background-color: #0f0f0f !important;
}

/* Stats */
.stat-item {
    text-align: center;
    margin-bottom: 2rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #cccccc;
}

/* How It Works / Steps */
.step-item {
    padding: 2rem 1rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-10px);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #000000;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.step-description {
    color: #cccccc;
    line-height: 1.8;
}

/* Profile Cards */
.profile-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(189, 141, 31, 0.1);
    height: 100%;
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(189, 141, 31, 0.2);
    border-color: rgba(189, 141, 31, 0.3);
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    padding: 1rem 0;
}

.profile-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.profile-age {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.profile-location {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Large Profile Cards */
.profile-card-large {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(189, 141, 31, 0.1);
    height: 100%;
}

.profile-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(189, 141, 31, 0.2);
    border-color: rgba(189, 141, 31, 0.3);
}

.profile-image-large {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.profile-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: #000000;
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 0.8rem;
}

.profile-content {
    padding: 1.5rem;
}

.profile-age-profession {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.profile-bio {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.profile-interests {
    margin-bottom: 1.5rem;
}

.interest-tag {
    display: inline-block;
    background: rgba(189, 141, 31, 0.2);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin: 0.25rem;
    border: 1px solid rgba(189, 141, 31, 0.3);
}

.profile-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.profile-actions .btn {
    flex: 1;
}

.profile-actions .btn-outline-primary {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Testimonials */
.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(189, 141, 31, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(189, 141, 31, 0.1);
}

.testimonial-text {
    font-style: italic;
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.author-location {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Newsletter */
.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .input-group {
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(189, 141, 31, 0.3);
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 50px 0 0 50px;
}

.newsletter-form .form-control::placeholder {
    color: #cccccc;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 1rem 2rem;
    border: none;
}

/* Footer */
.footer {
    background: #0f0f0f;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-description {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(189, 141, 31, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: #000000;
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(189, 141, 31, 0.2);
    margin: 2rem 0;
}

.copyright {
    color: #cccccc;
    margin: 0;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #000000;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #C8D82E;
    transform: translateY(-3px);
}

/* Auth Pages */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(rgba(25, 25, 25, 0.8), rgba(25, 25, 25, 0.8)), 
                url('https://images.pexels.com/photos/1024993/pexels-photo-1024993.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
    background-blend-mode: darken;
}

.auth-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(189, 141, 31, 0.2);
    backdrop-filter: blur(10px);
}

.auth-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--dark-color);
}

.auth-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: #cccccc;
    margin-bottom: 2rem;
}

.auth-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(189, 141, 31, 0.3);
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: 10px;
}

.auth-form .form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(189, 141, 31, 0.25);
}

.auth-form .form-control::placeholder {
    color: #cccccc;
}

.auth-form .input-group-text {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(189, 141, 31, 0.3);
    color: var(--primary-color);
}

.auth-form .form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(189, 141, 31, 0.3);
    color: #ffffff;
}

.auth-form .form-select option {
    background: #191919;
    color: #ffffff;
}

.auth-form .form-label {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.auth-form .form-check-label {
    color: #cccccc;
}

.auth-form .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.toggle-password {
    cursor: pointer;
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: var(--primary-color);
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password:hover {
    color: #C8D82E;
}

.auth-switch {
    color: #cccccc;
    margin: 0;
}

.auth-switch a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.auth-switch a:hover {
    color: #C8D82E;
}

.auth-divider {
    position: relative;
    text-align: center;
    margin: 2rem 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(189, 141, 31, 0.3);
}

.auth-divider span {
    background: rgba(255, 255, 255, 0.05);
    padding: 0 1rem;
    color: #cccccc;
}

.social-auth {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-social {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-facebook {
    background: #3b5998;
    border-color: #3b5998;
    color: #ffffff;
}

.btn-facebook:hover {
    background: #2d4373;
    border-color: #2d4373;
}

.btn-google {
    background: #dd4b39;
    border-color: #dd4b39;
    color: #ffffff;
}

.btn-google:hover {
    background: #c23321;
    border-color: #c23321;
}

/* Contact Page */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(189, 141, 31, 0.2);
}

.contact-form .form-control,
.contact-form .form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(189, 141, 31, 0.3);
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: 10px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(189, 141, 31, 0.25);
}

.contact-form .form-control::placeholder {
    color: #cccccc;
}

.contact-form .form-label {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(189, 141, 31, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(189, 141, 31, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: #ffffff;
}

.contact-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-text {
    color: #cccccc;
    line-height: 1.8;
}

.map-section {
    margin-top: 60px;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(189, 141, 31, 0.2);
}

/* Proposal Page */
.process-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(189, 141, 31, 0.1);
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(189, 141, 31, 0.1);
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    flex-shrink: 0;
}

.process-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.process-description {
    color: #cccccc;
    line-height: 1.8;
    margin: 0;
}

.guidelines-list {
    padding: 0;
}

.guideline-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.guideline-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    flex-shrink: 0;
}

.guideline-content h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.guideline-content p {
    color: #cccccc;
    margin: 0;
    line-height: 1.8;
}

.profile-browse-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(189, 141, 31, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.profile-browse-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(189, 141, 31, 0.2);
}

.profile-browse-image {
    height: 250px;
    overflow: hidden;
}

.profile-browse-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-browse-content {
    padding: 2rem;
    text-align: center;
}

.profile-browse-content h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.profile-browse-content p {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.profile-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat {
    background: rgba(189, 141, 31, 0.2);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.success-story-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(189, 141, 31, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.success-story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(189, 141, 31, 0.1);
}

.story-text {
    font-style: italic;
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.story-image {
    border-radius: 50%;
    object-fit: cover;
}

.story-info h6 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.story-info p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Page */
.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(189, 141, 31, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(189, 141, 31, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: #000000;
}

.service-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-description {
    color: #cccccc;
    line-height: 1.8;
    margin: 0;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(189, 141, 31, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(189, 141, 31, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: #000000;
}

.value-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.value-description {
    color: #cccccc;
    line-height: 1.8;
    margin: 0;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

/* Profile Detail Page */
.profile-header {
    padding: 120px 0 40px;
    background: linear-gradient(rgba(25, 25, 25, 0.8), rgba(25, 25, 25, 0.8)), 
                url('https://images.pexels.com/photos/1024993/pexels-photo-1024993.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
    background-blend-mode: darken;
}

.back-button {
    text-align: left;
}

.profile-detail {
    padding: 80px 0;
}

.profile-image-section {
    position: sticky;
    top: 100px;
}

.profile-main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.profile-verification {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(25, 25, 25, 0.8);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.profile-verification i {
    margin-right: 0.5rem;
}

.profile-actions-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(189, 141, 31, 0.1);
}

.profile-info-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(189, 141, 31, 0.1);
}

.profile-header-info {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(189, 141, 31, 0.2);
}

.profile-header-info .profile-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.profile-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.profile-meta span {
    color: #cccccc;
    font-size: 1rem;
}

.profile-meta .profile-location {
    color: var(--primary-color);
}

.profile-meta .profile-online {
    color: var(--success-color);
}

.profile-section {
    margin-bottom: 3rem;
}

.profile-section:last-child {
    margin-bottom: 0;
}

.profile-section .section-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    border-bottom: 2px solid rgba(189, 141, 31, 0.2);
    padding-bottom: 0.5rem;
}

.profile-bio {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(189, 141, 31, 0.1);
}

.info-label {
    font-weight: 500;
    color: #ffffff;
}

.info-value {
    color: #cccccc;
}

.interests-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Responsive Design */
@media (max-width: 990px) {
    .auth-btn {
       margin: 10px !important;
    }

}
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .profile-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .profile-header-info .profile-name {
        font-size: 2rem;
    }
    
    .profile-actions-card {
        margin-bottom: 2rem;
    }
    
    .profile-image-section {
        position: static;
    }
    
    .process-card {
        flex-direction: column;
        text-align: center;
    }
    
    .guideline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .auth-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .profile-info-section {
        padding: 2rem 1.5rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #191919;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #C8D82E;
}