* {
    padding: 0px;
    margin: 0px;
}

:root {
    --primary-pink: #e91e63;
    --gradient-start: #f06292;
    --gradient-end: #764ba2;
    --dark-navy: #2D3748;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    background: white !important;
    z-index: 100;
}
.logo a {
    display: inline-block;
}

.logo img {
    height: 65px;
    max-width: 150px;
}
.desktop-buttons .btn , .mobile-buttons .btn {
    text-decoration: none;
    padding: 6px 45px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 18px;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.desktop-buttons .btn:first-child {
    background: linear-gradient(45deg, #e91e63, #f06292);
    color: white;
    border: 2px solid #f06292;
}

.desktop-buttons .btn:first-child:hover {
    background: #fff;
    border-color: 2px solid #de177a;
    color: #de177a;
}

.desktop-buttons .btn:last-child {
    background: #ffff;
    color: #3b82f6;
    border: 2px solid;
}

.desktop-buttons .btn:last-child:hover {
    background: linear-gradient(45deg, #764ba2, #667eea);
    color: white;
    border: 2px solid #3b82f6;
}

.mobile-buttons .btn:first-child {
    background: linear-gradient(45deg, #e91e63, #f06292);
    color: white;
    border: 2px solid #f06292;
}
.mobile-buttons .btn:first-child:hover {
    background: #fff;
    border-color: 2px solid #de177a;
    color: #de177a;
}

.mobile-buttons .btn:last-child {
    background: #ffff;
    color: #3b82f6;
    border: 2px solid;
}

.mobile-buttons .btn:last-child:hover {
    background: linear-gradient(45deg, #764ba2, #667eea);
    color: white;
    border: 2px solid #3b82f6;
}
.header-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.header-menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.header-menu li a:hover {
    color: #e91e63;
}

/* Desktop Layout - 3 Columns */
@media (min-width: 992px) {
    .navbar .container {
        display: grid;
        grid-template-columns: 1fr 2fr 1fr;
        align-items: center;
        gap: 20px;
    }

    .navbar-brand-col {
        justify-self: start;
    }

    .navbar-menu-col {
        justify-self: center;
    }

    .navbar-buttons-col {
        justify-self: end;
    }

    .navbar-nav {
        display: flex;
        flex-direction: row;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 30px;
    }

    .navbar-nav .nav-link {
        color: #374151 !important;
        text-decoration: none;
        font-weight: 500;
        font-size: 0.95rem;
        padding: 8px 0;
        transition: color 0.3s ease;
    }

    .navbar-nav .nav-link:hover {
        color: #2563eb !important;
    }

    .desktop-buttons {
        display: flex;
        gap: 18px;
    }

    .mobile-toggle {
        display: none;
    }
}

/* Mobile Layout */
@media (max-width: 991.98px) {
    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .navbar-menu-col,
    .navbar-buttons-col {
        display: none;
    }

    .mobile-toggle {
        display: block;
        background: none;
        border: none;
        padding: 5px;
        cursor: pointer;
        z-index: 1051;
        position: relative;
    }
}


/* Hamburger Animation */
.hamburger {
    width: 24px;
    height: 18px;
    position: relative;
    transform: rotate(0deg);
    transition: .3s ease-in-out;
    cursor: pointer;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #374151;
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .2s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 0px;
}

.hamburger span:nth-child(2) {
    top: 8px;
}

.hamburger span:nth-child(3) {
    top: 16px;
}

.hamburger.active span:nth-child(1) {
    top: 8px;
    transform: rotate(135deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.hamburger.active span:nth-child(3) {
    top: 8px;
    transform: rotate(-135deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    z-index: 1050;
    padding: 20px 30px 30px;
    /* Reduced top padding since we have header now */
    overflow-y: auto;
}

.mobile-menu.show {
    right: 0;
}

.mobile-menu .nav-link {
    display: block;
    color: #374151 !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 15px 0;
    border-bottom: 1px solid #f3f4f6;
    transition: color 0.3s ease;
}

.mobile-menu .nav-link:hover {
    color: #2563eb !important;
}

.mobile-buttons {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1049;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.mobile-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Content */
.content {
    padding-top: 100px;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Mobile Menu Header with Close Button */
.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f3f4f6;
}

.mobile-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.mobile-close-btn:hover {
    background: #f3f4f6;
    color: #374151;
}

.mobile-close-btn i {
    font-size: 2.2rem;
}
 @media (max-width: 575.98px) {
    .header-menu {
    display: block;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.header-menu li a {
	align-items: center;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 18px;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.header-menu li a:hover {
    color: #e91e63;
}
}








.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 40px 0;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
}

.footer a:hover {
    color: #17a2b8;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
}

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

.footer ul li {
    margin-bottom: 10px;
}

.social-icons i {
    font-size: 1.5rem;
    margin-right: 15px
}

.payment-icons i {
    font-size: 2rem;
    margin-right: 10px;
}

.footer-bottom {
    border-top: 1px solid #ffffff33;
    padding-top: 20px;
    margin-top: 20px;
}

.banner-section {
    height: 80vh;
    min-height: 400px;
    background-image: url('/wp-content/uploads/2025/07/banner-of-vibe-social-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.banner-content {
    z-index: 2;
    padding-left: 5rem;
}

.banner-title {
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    margin-bottom: 0;
}

.banner-subtitle {
    font-weight: 600;
    color: white;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    margin-top: -0.5rem;
    letter-spacing: 0.2em;
}

/* Responsive font sizes */
@media (max-width: 576px) {
    .banner-title {
        font-size: 3rem;
    }

    .banner-subtitle {
        font-size: 2.5rem;
        letter-spacing: 0.1em;
    }

    .banner-content {
        padding-left: 1rem;
        text-align: center;
    }

    .banner-section {
        justify-content: center;
        min-height: 0px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .banner-title {
        font-size: 3rem;
    }

    .banner-subtitle {
        font-size: 2.5rem;
    }

    .banner-content {
        padding-left: 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .banner-title {
        font-size: 3.5rem;
    }

    .banner-subtitle {
        font-size: 3rem;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {
    .banner-title {
        font-size: 4rem;
    }

    .banner-subtitle {
        font-size: 3.5rem;
    }
}

@media (min-width: 1201px) {
    .banner-title {
        font-size: 4.5rem;
    }

    .banner-subtitle {
        font-size: 4rem;
    }
}

/* Animation for text */
.banner-content {
    animation: fadeInLeft 1s ease-out;
}

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

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

/* Ensure proper aspect ratio on different screens */
@media (max-width: 768px) {
    .banner-section {
        background-position: right;
        height: 40vh;
    }
}

@media (orientation: landscape) and (max-height: 500px) {
    .banner-section {
        height: 80vh;
        min-height: 400px;
    }

    .banner-title {
        font-size: 2.5rem;
    }

    .banner-subtitle {
        font-size: 2rem;
    }
}

.text p {
    margin-top: 0;
    margin-bottom: 0rem;
}

.trusted-section {
    background: linear-gradient(45deg, #764ba2, #667eea);
    padding: 35px 0;
}

.marquee-container {
    width: 100%;
    background-color: linear-gradient(45deg, #764ba2, #667eea);
    padding: 12px 0;
}

.marquee-content {
    display: flex;
    animation: marquee 20s linear infinite;
}

.marquee-item {
    flex: 0 0 auto;
    padding: 50 100px;
    font-size: 1.2rem;
    color: #495057;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.service-header {
    text-align: center;
    margin-bottom: 40px;
}

.main-platform-tabs {
    background: white;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.main-platform-tabs .nav-link {
    border: none;
    color: #6b7280;
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 15px;
    margin: 0 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}


.main-platform-tabs .nav-link.instagram.active {
    background: linear-gradient(135deg, #ec4a93 0%, #f66933 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.main-platform-tabs .nav-link.youtube.active {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4);
}

.main-platform-tabs .nav-link.facebook.active {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.main-platform-tabs .nav-link.twitter.active {
    background: linear-gradient(135deg, #131313 0%, #202020 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.4);
}

.sub-tabs {
    border: none;
    background: white;
    border-radius: 15px;
    padding: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.sub-tabs .nav-link {
    border: none;
    color: #6b7280;
    font-weight: 500;
    padding: 12px 25px;
    border-radius: 10px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.sub-tabs .nav-link.active {
    background: linear-gradient(135deg, #7454a7 0%, #ec4899 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.feature-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}

.feature-text {
    flex-grow: 1;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}

.buy-section {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.buy-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.rating {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.rating-stars {
    color: #fbbf24;
    margin-right: 8px;
}

.rating-text {
    color: #6b7280;
    font-size: 14px;
}

.feature-list {
    flex-grow: 1;
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #374151;
    font-size: 14px;
}

.feature-list li i {
    color: #ec4899;
    margin-right: 10px;
    font-size: 16px;
}

.buy-btn {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.buy-btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 41, 59, 0.3);
}

.platform-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #2a2a2a 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-card {
    background: linear-gradient(45deg, #e91e63, #f06292);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    margin: 0 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 30px;
    font-style: italic;
}

.stars {
    color: #fbbf24;
    font-size: 20px;
    margin-bottom: 20px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #764ba2, #667eea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    font-weight: bold;
    font-size: 20px;
    margin-right: 15px;
}

.client-info h6 {
    color: white;
    font-weight: 600;
    margin-bottom: 5px;
}

.client-info small {
    color: #ffffff;
    font-size: 14px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #3b82f6;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #cbd5e1;
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: #3b82f6;
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-card {
        margin: 0 10px;
        padding: 30px 20px;
    }

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

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

.custom-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border: 2px solid #de177a;
    border-radius: 12px;
    margin-bottom: 16px;
    background: white;
    overflow: hidden;
}

.accordion-button {
    background: white;
    border: none;
    padding: 20px 24px;
    font-weight: 500;
    font-size: 16px;
    color: #333;
    border-radius: 12px !important;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: white;
    color: #333;
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M8 1a.5.5 0 0 1 .5.5v6h6a.5.5 0 0 1 0 1h-6v6a.5.5 0 0 1-1 0v-6h-6a.5.5 0 0 1 0-1h6v-6A.5.5 0 0 1 8 1z'/%3e%3c/svg%3e");
    transform: none;
    transition: transform 0.2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8z'/%3e%3c/svg%3e");
}

.accordion-collapse {
    padding: 0px 0px 5px 0px;
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .platform-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
}

/* responcive 2nd section */
/* Base alignment */
.stat-number {
    font-size: 1.5rem;
    font-weight: 600;
}

.stat-label {
    font-size: 1rem;
    color: #6b7280;
}

.img img {
    max-width: 100%;
    height: auto;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .col-6.d-flex {
        flex-direction: column;
        align-items: center !important;
        text-align: center;
        gap: 0.5rem !important;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .img img {
        width: 50px !important;
    }
}

@media (max-width: 575.98px) {
    .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .col-6.d-flex {
        margin-bottom: 1rem;
    }

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

.main-content{
    margin-top: 84px;
}


/* Register page  */
/* Custom theme colors and background */
.register-body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

/* Custom card styling */
.register-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Profile type section */
.profile-type-section {
    background-color: #f8f9fa;
    border: 2px solid #e0e0e0;
}

/* Custom form controls */
.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #764ba2;
    box-shadow: 0 0 0 0.2rem rgba(118, 75, 162, 0.25);
}

/* Custom radio buttons */
.form-check-input:checked {
    background-color: #764ba2;
    border-color: #764ba2;
}

.form-check-input:focus {
    border-color: #764ba2;
    box-shadow: 0 0 0 0.25rem rgba(118, 75, 162, 0.25);
}

/* Custom buttons */
.btn-submit-register {
    text-decoration: none;
    padding: 6px 45px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 18px;
    transition: all 0.3s ease;
    white-space: nowrap;
	background: linear-gradient(45deg, #764ba2, #667eea);
    color: white;
    border: 2px solid #667eea;
}
.btn-submit-register:hover {
	border: 2px solid #3b82f6;
	color: #3b82f6;
	background: white !important;
}
.btn-login-link {
	color: #f06292;
	font-weight: 500;
	transition: all 0.3s ease;
}
.btn-login-link:hover {
	transform: translateY(-2px);
	color: #e91e63;
}
/* Form labels */
.form-label {
    font-weight: 600;
    color: #555;
}

@media (max-width: 576px) {
    .btn-submit-register {
        font-weight: 500;
        font-size: 16px;
        padding: 6px 16px;
    }

    .btn-login-link {
        font-weight: 500;
        font-size: 12px;
    }
}

.login-body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 80vh;
}

.login-login {
	background: linear-gradient(45deg, #e91e63, #f06292);
    color: white;
    border: 2px solid #f06292;
    text-decoration: none;
    padding: 6px 45px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 18px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.login-login:hover {
    background: #fff;
    border: 2px solid #de177a;
    color: #de177a;
}

.login-register-link {
	color: #764ba2;
	font-weight: 500;
	transition: all 0.3s ease;
}

.login-register-link:hover {
    transform: translateY(-2px);
	color: #667eea;
}


.profile-page{
	padding-top: 8rem;
	padding-bottom: 6rem;
	background: linear-gradient(135deg, #667eeacf 0%, #764ba2a1 100%);
}
.save-wala-btn{
	background: linear-gradient(135deg, #7454a7 0%, #ec4899 100%);
	border: none;
    color: white;
    border-radius: 20px;
    padding: 6px 10px;
    font-weight: 500;
}
.save-wala-btn:hover{
    color: white;
}
.cancel-wala-btn{
	background: linear-gradient(45deg, #e91e63, #f06292);
	border: none;
    color: white;
    border-radius: 20px;
    padding: 6px 10px;
    font-weight: 500;
}
.cancel-wala-btn:hover{
	color: white;
}
.profile-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: none;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid transparent;
    background: var(--primary-gradient);
    padding: 4px;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;

}

.btn-gradient {
    background: linear-gradient(135deg, #7454a7 0%, #ec4899 100%);
    border: none;
    color: white;
    border-radius: 20px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
    color: white;
}

.btn-outline-gradient {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    background: transparent;
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-gradient:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25);
}

.section-title {
    color: var(--text-primary);
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.photo-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.photo-item:hover {
    transform: scale(1.05);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-remove {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-item:hover .photo-remove {
    opacity: 1;
}

.add-photo {
    aspect-ratio: 1;
    border: 2px dashed var(--border-color);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #F9FAFB;
}

.add-photo:hover {
    border-color: var(--accent-color);
    background: #F3E8FF;
}

.video-placeholder {
    background: #FEF3C7;
    border: 1px solid #F59E0B;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: #92400E;
}
.avatar-edit-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, #7454a7 0%, #ec4899 100%);
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-toggle::after {
    margin-left: 0.5rem;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 10px;
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--secondary-gradient);
    color: var(--accent-color);
}

.dropdown-item.text-danger:hover {
    background: #FEF2F2;
    color: #DC2626;
}
.mh-120{
    min-height: 120px;
}
.my-media-grid {
    padding: 30px 0;
}

.my-media-grid .media-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.my-media-grid .media-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.15);
}

/* Status Badge */
.my-media-grid .status-badge-wrapper {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
}

.my-media-grid .status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.my-media-grid .badge-active {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.my-media-grid .badge-draft {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.my-media-grid .badge-complete {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.my-media-grid .badge-unknown {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    color: white;
}

/* Dropdown */
.my-media-grid .dropdown-wrapper {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}

.my-media-grid .dropdown-toggle-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.my-media-grid .dropdown-toggle-btn:hover,
.my-media-grid .dropdown-toggle-btn:focus {
    background: rgba(255, 255, 255, 1);
    color: #374151;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.my-media-grid .dropdown-menu {
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 8px 0;
    min-width: 140px;
}

.my-media-grid .dropdown-item {
    padding: 8px 16px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.my-media-grid .dropdown-item:hover {
    background: #f8fafc;
    color: #374151;
}

.my-media-grid .dropdown-item.text-danger:hover {
    background: #fef2f2;
    color: #dc2626;
}

/* Media Container */
.my-media-grid .media-container {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}

.my-media-grid .media-image,
.my-media-grid .media-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.my-media-grid .media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.my-media-grid .media-card:hover .media-overlay {
    opacity: 1;
}

.my-media-grid .media-card:hover .media-image,
.my-media-grid .media-card:hover .media-video {
    transform: scale(1.05);
}

/* Card Content */
.my-media-grid .card-content {
    padding: 20px;
    flex-grow: 1;
}

.my-media-grid .media-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.my-media-grid .media-description {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.my-media-grid .media-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.my-media-grid .meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #6b7280;
    font-size: 0.8rem;
}

.my-media-grid .meta-item i {
    width: 12px;
    text-align: center;
}

.my-media-grid .social-link a {
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s ease;
}

.my-media-grid .social-link a:hover {
    color: #1d4ed8;
}

.my-media-grid .plan-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
}

.my-media-grid .plan-label {
    color: #6b7280;
    font-size: 0.85rem;
    font-weight: 500;
}

.my-media-grid .plan-value {
    color: #374151;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Card Footer */
.my-media-grid .card-footer {
    padding: 15px 20px;
    border-top: 1px solid #e5e7eb;
    background: #f8fafc;
}

.my-media-grid .view-btn {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    width: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.my-media-grid .view-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-1px);
    color: white;
}

/* Empty State */
.my-media-grid .empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
}

.my-media-grid .empty-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #d1d5db;
}

.my-media-grid .empty-state h4 {
    color: #374151;
    margin-bottom: 10px;
}

.my-media-grid .empty-state p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .my-media-grid {
        padding: 20px 0;
    }
    
    .my-media-grid .media-container {
        height: 180px;
    }
    
    .my-media-grid .card-content {
        padding: 15px;
    }
    
    .my-media-grid .card-footer {
        padding: 12px 15px;
    }
}


/* FORGOT PASSWORD PAGE */
        .frgtpwd-subtitle {
            font-size: 16px;
            color: #6b6b6b;
            text-align: center;
            margin-bottom: 26px;
            font-weight: 500;
        }
        .frgtpwd-form-group {
            margin-bottom: 24px;
        }
        .frgtpwd-submit-btn {
            width: 100%;
            background: linear-gradient(135deg, #ed64a6 0%, #d53f8c 100%);
            color: white;
            border: none;
            border-radius: 12px;
            padding: 14px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .frgtpwd-submit-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 20px rgba(237, 100, 166, 0.3);
        }

        .frgtpwd-submit-btn svg {
            width: 18px;
            height: 18px;
            margin-right: 8px;
        }

        /* Updated popup styles with unique classes and smaller size */
        .frgtpwd-popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 9999;
        }

        .frgtpwd-popup-overlay.frgtpwd-show {
            opacity: 1;
            visibility: visible;
        }

        .frgtpwd-popup-modal {
            background: white;
            border-radius: 16px;
            padding: 24px;
            width: 90%;
            max-width: 320px;
            text-align: center;
            transform: scale(0.8);
            transition: transform 0.3s ease;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        .frgtpwd-popup-overlay.frgtpwd-show .frgtpwd-popup-modal {
            transform: scale(1);
        }

        .frgtpwd-popup-icon-wrapper {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
        }

        .frgtpwd-popup-icon-wrapper svg {
            width: 24px;
            height: 24px;
            color: white;
        }

        .frgtpwd-popup-title-text {
            font-size: 20px;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 8px;
        }

        .frgtpwd-popup-message-text {
            font-size: 13px;
            color: #718096;
            line-height: 1.4;
            margin-bottom: 20px;
        }

        .frgtpwd-popup-close-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 10px;
            padding: 10px 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s ease;
        }

        .frgtpwd-popup-close-btn:hover {
            transform: translateY(-1px);
        }

        /* Added hidden class for form state management */
        .frgtpwd-hidden {
            display: none !important;
        }

        /* Added password input container styling */
        .frgtpwd-password-container {
            position: relative;
        }

        .frgtpwd-password-toggle {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            color: #718096;
            padding: 4px;
        }

        .frgtpwd-password-toggle:hover {
            color: #4a5568;
        }

        .frgtpwd-password-toggle svg {
            width: 16px;
            height: 16px;
        }

        /* Added styles for two separate sections */
        .frgtpwd-section {
            width: 100%;
        }

        .frgtpwd-section.frgtpwd-hidden {
            display: none !important;
        }
        .frgtpwd-error-message {
            color: #e53e3e;
            font-size: 12px;
            margin-top: 6px;
            display: none;
            font-weight: 500;
        }

        .frgtpwd-error-message.show {
            display: block;
        }

        .frgtpwd-error-message.frgtpwd-show-error {
            display: block;
        }
        .reset-password {
            color: #3e3e3e;
            font-size: 14px;
            line-height: 24px;
            padding-top: 12px;
            font-weight: 500 ;
            text-align: center;
        }
        .reset-password a {
            color: #F95242;
            text-decoration-line: underline;
            text-decoration-style: solid;
            text-decoration-skip-ink: none;
            text-decoration-thickness: auto;
            text-underline-position: from-font;
        }
        .divider {
            margin: 30px 0;
            color: #3a3a3a;
            font-size: 14px;
            font-weight: 500;
            line-height: normal;
        }
        .divider::before, .divider::after {
            content: '';
            flex: 1;
            height: 1.5px;
            background: #adadad;
        }
        .divider:not(:empty)::before {
            margin-right: 20px;
        }
        .divider:not(:empty)::after {
            margin-left: 20px;
        }




/* View Content Page */
 /* Updated body class to use unique prefix */
        .view-content-single-page {
            padding-top: 80px;
            background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
            min-height: 100vh;
        }
        /* All CSS classes now use 'bcp-' prefix for Bootstrap Content Page */
        .bcp-content-card-wrapper {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            overflow: hidden;
            margin: 2rem 0;
        }

        .bcp-media-container-section {
            position: relative;
            overflow: hidden;
        }

        .bcp-content-media-element {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .bcp-content-media-element:hover {
            transform: scale(1.05);
        }

        .bcp-media-overlay-gradient {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
        }

        .bcp-content-title-heading {
            /* Using manual gradient instead of CSS variable */
            background: linear-gradient(45deg, #764ba2, #667eea);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
            font-size: 40px;
            margin-bottom: 1.5rem;
        }

        .bcp-progress-section-container {
            background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
            border-radius: 15px;
            padding: 1.5rem;
            margin: 2rem 0;
            border: 1px solid rgba(233, 30, 99, 0.1);
        }

        .bcp-custom-progress-wrapper {
            height: 12px;
            border-radius: 10px;
            background: rgba(233, 30, 99, 0.1);
            overflow: hidden;
        }

        .bcp-custom-progress-bar-fill {
            /* Using manual gradient instead of CSS variable */
            background: linear-gradient(45deg, #e91e63, #f06292);
            height: 100%;
            border-radius: 10px;
            transition: width 0.6s ease;
            position: relative;
        }

        .bcp-custom-progress-bar-fill::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: bcp-shimmer-animation 2s infinite;
        }

        @keyframes bcp-shimmer-animation {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .bcp-btn-custom-base {
            border-radius: 25px;
            padding: 12px 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            border: none;
            position: relative;
            overflow: hidden;
        }

        .bcp-btn-share-action {
            /* Using manual gradient instead of CSS variable */
            background: linear-gradient(45deg, #764ba2, #667eea);
            color: white;
        }

        .bcp-btn-contribute-action {
            /* Using manual gradient instead of CSS variable */
            background: linear-gradient(45deg, #e91e63, #f06292);
            color: white;
        }

        .bcp-btn-login-redirect {
            background: linear-gradient(135deg, #ff9a56 0%, #ff6b35 100%);
            color: white;
            text-decoration: none;
        }

        .bcp-btn-custom-base:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .bcp-btn-custom-base:disabled {
            background: linear-gradient(45deg, #e91e63, #f06292);
            color: white;
            transform: none;
            box-shadow: none;
        }
        .bcp-stats-badge-indicator {
            /* Using manual gradient instead of CSS variable */
            background: linear-gradient(45deg, #764ba2, #667eea);
            color: white;
            border-radius: 20px;
            padding: 8px 16px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 10px;
        }

        .bcp-description-text-content {
            line-height: 1.8;
            color: #555;
            font-size: 1.1rem;
        }

        .bcp-info-card-stats {
            border: 0;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            height: 100%;
        }
        .Community-Contributions{
            font-size: 18px;
        }
        @media (max-width: 768px) {
            .bcp-content-media-element {
                height: 250px;
            }
            
            .bcp-btn-custom-base {
                width: 100%;
                margin-bottom: 10px;
            }
        }
        @media (max-width: 575.98px) {
            .bcp-description-text-content {
                font-size: 14px;
            }
            .bcp-content-title-heading {
                font-size: 22px;
            }
             .Community-Contributions{
                font-size: 14px;
            }
            .bcp-stats-badge-indicator {
                padding: 4px 8px;
                margin-bottom: 2px;
            }
        }

        
        