@font-face {
    font-family: 'Roboto';
    src: url('../google-fonts/static/Roboto-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

* {
	margin: 0px;
	padding: 0px;
	font-family: 'Roboto', sans-serif;
}

/* ====== GLOBAL ====== */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    color: #111827;
}



/* ====== HEADER START ====== */
.yp-header {
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    transition: all 0.25s ease;
    backdrop-filter: blur(0px);
}

/* On scroll (class added via JS) */
.yp-header-scrolled {
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.09);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
}

/* Navbar base */
.yp-navbar {
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
    transition: padding 0.25s ease;
}

.yp-header-scrolled .yp-navbar {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* ====== LOGO ====== */
.yp-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.yp-logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: linear-gradient(135deg, #6366F1, #14B8A6);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.yp-logo-text {
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #111827;
}

/* ====== NAV LINKS ====== */
.yp-nav-menu {
    gap: 0.25rem;
}

.yp-nav-link {
    position: relative;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #4b5563;
    padding: 0.45rem 1.2rem !important;
    transition: color 0.2s ease;
}

.yp-nav-link:hover,
.yp-nav-link:focus,
.yp-nav-link.active {
    color: #111827;
}

/* Underline accent */
.yp-nav-link::after {
    content: "";
    position: absolute;
    left: 1.1rem;
    right: 1.1rem;
    bottom: 0.15rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #6366F1, #14B8A6);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.yp-nav-link:hover::after,
.yp-nav-link.active::after {
    transform: scaleX(1);
}

/* ====== LANGUAGE SELECT ====== */
.yp-lang-wrapper {
    margin-left: 0.75rem;
}

.yp-lang-select {
    width: auto;
    min-width: 110px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background-color: #f9fafb;
    font-size: 0.85rem;
    color: #4b5563;
    padding: 0.25rem 2rem 0.25rem 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.yp-lang-select:focus {
    border-color: #6366F1;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.18);
    background-color: #ffffff;
    outline: none;
}

/* ====== TOGGLER (MOBILE) ====== */
.yp-nav-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.yp-nav-toggler:focus {
    outline: none;
    box-shadow: none;
}

.yp-nav-toggler .fa {
    font-size: 1.4rem;
    color: #111827;
}
/*HEADER END*/







/* ===================== HERO SECTION ===================== */

.yp-hero-section {
    position: relative;
    padding: 50px 0 50px;
    background-color: #ffffff;
    overflow: hidden;
}

/* Soft gradient background shapes */
.yp-hero-section::before,
.yp-hero-section::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(40px);
    opacity: 0.5;
    z-index: -1;
}

.yp-hero-section::before {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle at 30% 30%, #e0f2fe, transparent 60%);
    top: -140px;
    left: -80px;
}

.yp-hero-section::after {
    width: 460px;
    height: 460px;
    background: radial-gradient(circle at 70% 80%, #e0f7f4, transparent 60%);
    bottom: -200px;
    right: -120px;
}

/* Content */
.yp-hero-content {
    max-width: 520px;
    animation: ypFadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(22px);
}

/* Badge */
.yp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px 4px 8px;
    border-radius: 999px;
    background-color: #f3f4ff;
    color: #4b5563;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.yp-hero-badge-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.2);
}

/* Title */
.yp-hero-title {
    font-size: 2.55rem;
    line-height: 1.25;
    color: #111827;
    font-weight: 700;
    margin-bottom: 14px;
}

.yp-hero-highlight {
    background: linear-gradient(120deg, #6366F1, #14B8A6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.yp-hero-role {
    font-size: 1.05rem;
    font-weight: 500;
    color: #4b5563;
}

.yp-hero-role span {
    border-radius: 999px;
    background-color: #f3f4f6;
    padding: 6px 12px;
}

/* Text */
.yp-hero-text {
    font-size: 0.98rem;
    color: #4b5563;
    margin-top: 12px;
    margin-bottom: 20px;
}

/* Actions */
.yp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.yp-hero-btn-primary {
    border-radius: 999px;
    padding: 9px 20px;
    border: none;
    background-image: linear-gradient(135deg, #6366F1, #14B8A6);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.yp-hero-btn-primary:hover {
    color: #ffffff;
    box-shadow: 0 14px 40px rgba(79, 70, 229, 0.45);
    transform: translateY(-1px);
}

.yp-hero-btn-outline {
    border-radius: 999px;
    padding: 9px 20px;
    border: 1px solid #e5e7eb;
    background-color: #ffffff;
    color: #4b5563;
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.yp-hero-btn-outline:hover {
    background-color: #f9fafb;
    border-color: #d1d5db;
    color: #111827;
}

/* Tech stack */
.yp-hero-tech {
    margin-top: 6px;
}

.yp-hero-tech-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9ca3af;
    display: block;
    margin-bottom: 6px;
}

.yp-hero-tech-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.yp-hero-tech-chips span {
    font-size: 0.78rem;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background-color: #f9fafb;
    color: #4b5563;
}

/* Scroll indicator */
.yp-hero-scroll-indicator {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    text-decoration: none;
    color: #6b7280;
}

.yp-hero-scroll-indicator i {
    font-size: 1rem;
    animation: ypBounceDown 1.4s infinite;
}

.yp-hero-scroll-indicator:hover {
    color: #111827;
}

/* Right visual */
.yp-hero-visual-wrapper {
    display: flex;
    justify-content: center;
}

.yp-hero-visual {
    position: relative;
    max-width: 460px;
    width: 100%;
    margin-top: 20px;
    animation: ypFadeInUp 0.9s ease forwards 0.1s;
    opacity: 0;
    transform: translateY(24px);
}

/* Main card */
.yp-hero-card-main {
    border-radius: 26px;
    background-color: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow:
        0 22px 60px rgba(15, 23, 42, 0.14),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    overflow: hidden;
}

.yp-hero-card-header {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f9fafb, #eef2ff);
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
    position: relative;
}

.yp-hero-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #e5e7eb;
}

.yp-hero-dot:nth-child(1) { background-color: #f97373; }
.yp-hero-dot:nth-child(2) { background-color: #facc15; }
.yp-hero-dot:nth-child(3) { background-color: #22c55e; }

.yp-hero-card-title {
    margin-left: auto;
    font-size: 0.8rem;
    color: #6b7280;
}

/* Body */
.yp-hero-card-body {
    padding: 18px 18px 16px;
}

.yp-hero-project-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 6px;
}

.yp-hero-project-text {
    font-size: 0.86rem;
    color: #6b7280;
    margin-bottom: 14px;
}

/* Metrics */
.yp-hero-metrics {
    margin-bottom: 10px;
}

.yp-hero-metric-item {
    padding: 8px 8px;
    border-radius: 12px;
    background-color: #f9fafb;
    text-align: left;
}

.yp-hero-metric-value {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: #111827;
}

.yp-hero-metric-label {
    display: block;
    font-size: 0.72rem;
    color: #9ca3af;
}

/* Tags */
.yp-hero-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.yp-hero-card-tags span {
    font-size: 0.75rem;
    padding: 4px 9px;
    border-radius: 999px;
    background: #eef2ff;
    color: #4f46e5;
}

/* Floating cards */
.yp-hero-floating-card {
    position: absolute;
    border-radius: 18px;
    background-color: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
    padding: 10px 12px;
    font-size: 0.78rem;
}

.yp-hero-floating-card-top {
    top: -18px;
    right: -10px;
    width: 200px;
}

.yp-hero-floating-card-bottom {
    bottom: -18px;
    left: -10px;
    width: 190px;
}

.yp-hero-floating-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #9ca3af;
    margin-bottom: 4px;
}

.yp-hero-floating-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.yp-hero-floating-card li {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #4b5563;
    margin-bottom: 2px;
}

.yp-hero-floating-card li i {
    color: #6366F1;
    font-size: 0.78rem;
}

/* Client card bottom */
.yp-hero-client-name {
    font-weight: 600;
    color: #111827;
    margin-bottom: 2px;
}

.yp-hero-client-status {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
}

.yp-hero-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background-color: #22c55e;
}

/* Animations */
@keyframes ypFadeInUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ypBounceDown {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(4px);
    }
    60% {
        transform: translateY(2px);
    }
}
/*HERO SECTION END*/









/* ===================== PROJECTS SECTION ===================== */

.yp-projects-section {
    position: relative;
    padding: 60px 0 60px;
    background-color: #f9fafb;
    overflow: hidden;
}

/* Soft background shapes */
.yp-projects-section::before,
.yp-projects-section::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(40px);
    opacity: 0.55;
    z-index: -1;
}

.yp-projects-section::before {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle at 10% 20%, #e0f2fe, transparent 60%);
    top: -140px;
    left: -120px;
}

.yp-projects-section::after {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle at 90% 80%, #e0f7f4, transparent 60%);
    bottom: -160px;
    right: -120px;
}

/* Section header */
.yp-projects-header-row {
    margin-bottom: 32px;
}

.yp-section-eyebrow {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9ca3af;
    margin-bottom: 6px;
}

.yp-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}

.yp-section-subtitle {
    font-size: 0.95rem;
    color: #6b7280;
    max-width: 540px;
}

.yp-section-note {
    font-size: 0.85rem;
    color: #9ca3af;
}

/* Grid */
.yp-projects-grid {
    margin-top: 10px;
}

/* Project card */
.yp-project-card {
    background-color: #ffffff;
    border-radius: 22px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.10),
        0 0 0 1px rgba(255, 255, 255, 0.6);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
    animation: ypFadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(22px);
}

.yp-project-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, 0.55);
    box-shadow:
        0 22px 55px rgba(15, 23, 42, 0.16),
        0 0 0 1px rgba(255, 255, 255, 0.7);
}

/* Thumb */
.yp-project-thumb {
    position: relative;
    overflow: hidden;
}

.yp-project-thumb img {
    width: 100%;
    display: block;
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

.yp-project-card:hover .yp-project-thumb img {
    transform: scale(1.08);
}

.yp-project-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(99, 102, 241, 0.12),
        rgba(20, 184, 166, 0.10)
    );
    mix-blend-mode: multiply;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.yp-project-card:hover .yp-project-thumb::after {
    opacity: 1;
}

/* category label on image */
.yp-project-label {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.82);
    color: #e5e7eb;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Content */
.yp-project-content {
    padding: 16px 18px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.yp-project-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 6px;
}

.yp-project-desc {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 10px;
}

/* Tags (frameworks / libraries) */
.yp-project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.yp-project-tags span {
    font-size: 0.78rem;
    padding: 4px 9px;
    border-radius: 999px;
    background-color: #f3f4ff;
    color: #4b5563;
    border: 1px solid #e5e7eb;
}

/* Actions */
.yp-project-actions {
    margin-top: auto;
    padding-top: 6px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.yp-project-main-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Live URL pills */
.yp-project-live-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.yp-project-live-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    font-size: 0.78rem;
    color: #4b5563;
    text-decoration: none;
    background-color: #ffffff;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.yp-project-live-pill:hover {
    background-color: #eef2ff;
    border-color: #6366f1;
    color: #111827;
    box-shadow: 0 8px 18px rgba(99, 102, 241, 0.15);
}

/* Footer (see all projects button) */
.yp-projects-footer {
    margin-top: 32px;
}

.yp-projects-view-all-btn {
    font-size: 0.9rem;
    padding: 9px 24px;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.yp-projects-view-all-btn:hover {
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.10);
}
/*PREVIOUS WORKS / FEATURED PROJECTS SECTION END*/





/* ===================== ABOUT SECTION ===================== */

.yp-about-section {
    position: relative;
    padding: 50px 0 18px;
    background-color: #ffffff;
    overflow: hidden;
}

/* Soft background shapes */
.yp-about-section::before,
.yp-about-section::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(40px);
    opacity: 0.5;
    z-index: -1;
}

.yp-about-section::before {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at 15% 20%, #e0f2fe, transparent 60%);
    top: -140px;
    left: -120px;
}

.yp-about-section::after {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle at 85% 80%, #e0f7f4, transparent 60%);
    bottom: -160px;
    right: -140px;
}

/* Left – photo card */
.yp-about-photo-wrapper {
    display: flex;
    justify-content: center;
}

.yp-about-photo-card {
    position: relative;
    max-width: 360px;
    width: 100%;
    padding: 18px 18px 20px;
    border-radius: 26px;
    background-color: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow:
        0 22px 60px rgba(15, 23, 42, 0.16),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    animation: ypFadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(24px);
}

.yp-about-photo-frame {
    border-radius: 24px;
    padding: 3px;
    background-image: linear-gradient(135deg, #6366F1, #14B8A6);
}

.yp-about-photo-inner {
    border-radius: 22px;
    overflow: hidden;
    background-color: #0f172a;
}

.yp-about-photo-inner img {
    width: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

.yp-about-photo-card:hover .yp-about-photo-inner img {
    transform: scale(1.06);
}

.yp-about-photo-meta {
    margin-top: 10px;
}

.yp-about-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: #111827;
}

.yp-about-role {
    font-size: 0.85rem;
    color: #6b7280;
}

/* Floating chips on photo */
.yp-about-chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background-color: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.3);
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.16);
    font-size: 0.78rem;
}

.yp-about-chip i {
    color: #6366F1;
}

.yp-about-chip-label {
    display: block;
    font-size: 0.7rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.yp-about-chip-value {
    display: block;
    font-size: 0.8rem;
    color: #111827;
    font-weight: 500;
}

.yp-about-chip-left {
    left: -10px;
    top: 40%;
    transform: translateY(-50%);
}

.yp-about-chip-right {
    right: -10px;
    top: 18%;
}

/* Status pill */
.yp-about-status-pill {
    position: absolute;
    left: 50%;
    bottom: -16px;
    transform: translateX(-50%);
    padding: 6px 14px;
    border-radius: 999px;
    background-color: #0f172a;
    color: #e5e7eb;
    font-size: 0.78rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.7);
}

.yp-about-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.25);
}

/* Right – text */
.yp-about-content {
    max-width: 620px;
    margin-left: auto;
    animation: ypFadeInUp 0.8s ease forwards 0.06s;
    opacity: 0;
    transform: translateY(24px);
}

.yp-about-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.yp-about-lead {
    font-size: 0.96rem;
    color: #4b5563;
    margin-bottom: 18px;
}

/* Stats */
.yp-about-stats {
    margin-bottom: 20px;
}

.yp-about-stat-card {
    border-radius: 16px;
    background-color: #f9fafb;
    padding: 10px 12px;
}

.yp-about-stat-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
}

.yp-about-stat-label {
    font-size: 0.78rem;
    color: #9ca3af;
}

/* Skill groups */
.yp-about-skill-groups {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.yp-about-skill-group {
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background-color: #f9fafb;
}

.yp-about-skill-group-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.yp-about-skill-group-title i {
    color: #6366F1;
}

/* Chips */
.yp-about-skill-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.yp-about-skill-chips span {
    font-size: 0.78rem;
    padding: 4px 9px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background-color: #ffffff;
    color: #4b5563;
}

/* List */
.yp-about-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    font-size: 0.86rem;
    color: #4b5563;
}

.yp-about-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
}

.yp-about-list li i {
    margin-top: 3px;
    font-size: 0.78rem;
    color: #22c55e;
}
/*About us section end*/





/* ===================== SKILLS / TECH STACK SECTION ===================== */

.yp-skills-section {
    position: relative;
    padding: 50px 0 50px;
    background-color: #ffffff;
    border-top: 1px solid #e5e7eb;
    overflow: hidden;
}

/* Optional soft shapes to match About section style */
.yp-skills-section::before,
.yp-skills-section::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(40px);
    opacity: 0.4;
    z-index: -1;
}

.yp-skills-section::before {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle at 10% 80%, #e0f2fe, transparent 60%);
    bottom: -160px;
    left: -140px;
}

.yp-skills-section::after {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle at 90% 10%, #e0f7f4, transparent 60%);
    top: -160px;
    right: -140px;
}

/* Left intro */
.yp-skills-intro {
    max-width: 360px;
    animation: ypFadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(24px);
}

.yp-skills-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.yp-skills-lead {
    font-size: 0.96rem;
    color: #4b5563;
    margin-bottom: 18px;
}

.yp-skills-highlight {
    padding: 12px 14px;
    border-radius: 16px;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
}

.yp-skills-highlight-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #9ca3af;
    margin-bottom: 6px;
}

.yp-skills-highlight-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.yp-skills-highlight-tags span {
    font-size: 0.78rem;
    padding: 4px 9px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background-color: #ffffff;
    color: #374151;
}

/* Skill cards */
.yp-skill-card {
    height: 100%;
    padding: 14px 14px 12px;
    border-radius: 18px;
    background-color: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow:
        0 12px 30px rgba(15, 23, 42, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.7);
    animation: ypFadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(24px);
}

.yp-skill-card-header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.yp-skill-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(135deg, #6366F1, #14B8A6);
    color: #ffffff;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.yp-skill-card-title {
    font-size: 0.98rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.yp-skill-card-subtitle {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 0;
}

/* Tags */
.yp-skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.yp-skill-tags span {
    font-size: 0.78rem;
    padding: 4px 9px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background-color: #f9fafb;
    color: #4b5563;
}

/* Meters */
.yp-skill-meters-wrapper {
    margin-top: 22px;
}

.yp-skill-meter {
    font-size: 0.8rem;
}

.yp-skill-meter-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #4b5563;
    margin-bottom: 5px;
}

.yp-skill-meter-bar {
    position: relative;
    height: 6px;
    border-radius: 999px;
    background-color: #e5e7eb;
    overflow: hidden;
}

.yp-skill-meter-bar span {
    position: absolute;
    inset: 0;
    width: calc(var(--level, 0.8) * 100%);
    border-radius: inherit;
    background-image: linear-gradient(135deg, #6366F1, #14B8A6);
}
/*SKILLS / TECH STACK SECTION END*/





/* ===================== TESTIMONIALS SECTION ===================== */

.yp-testimonials-section {
    position: relative;
    padding: 50px 0 50px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 55%, #eff6ff 100%);
    border-top: 1px solid #e5e7eb;
    overflow: hidden;
}

/* Soft shapes */
.yp-testimonials-section::before,
.yp-testimonials-section::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(40px);
    opacity: 0.45;
    z-index: -1;
}

.yp-testimonials-section::before {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle at 15% 15%, #e0f2fe, transparent 60%);
    top: -150px;
    left: -130px;
}

.yp-testimonials-section::after {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle at 85% 85%, #fee2e2, transparent 60%);
    bottom: -170px;
    right: -140px;
}

/* Heading */
.yp-testimonials-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.yp-testimonials-lead {
    font-size: 0.96rem;
    color: #4b5563;
    margin-bottom: 0;
}

/* Cards (base) */
.yp-testimonial-card {
    position: relative;
    height: 100%;
    padding: 18px 16px 16px;
    border-radius: 20px;
    background-color: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.45);
    box-shadow:
        0 16px 40px rgba(15, 23, 42, 0.10),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    animation: ypFadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(24px);
    overflow: hidden;
}

/* Color variations */
.yp-testimonial-card--blue {
    background: radial-gradient(circle at 0% 0%, #eff6ff 0, #ffffff 55%);
    border-color: #bfdbfe;
}
.yp-testimonial-card--purple {
    background: radial-gradient(circle at 0% 0%, #ede9fe 0, #ffffff 55%);
    border-color: #c4b5fd;
}
.yp-testimonial-card--teal {
    background: radial-gradient(circle at 0% 0%, #e0f2f1 0, #ffffff 55%);
    border-color: #99f6e4;
}
.yp-testimonial-card--orange {
    background: radial-gradient(circle at 0% 0%, #fff7ed 0, #ffffff 55%);
    border-color: #fed7aa;
}
.yp-testimonial-card--pink {
    background: radial-gradient(circle at 0% 0%, #fce7f3 0, #ffffff 55%);
    border-color: #f9a8d4;
}
.yp-testimonial-card--green {
    background: radial-gradient(circle at 0% 0%, #ecfdf5 0, #ffffff 55%);
    border-color: #bbf7d0;
}

.yp-testimonial-quote-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(135deg, #6366F1, #14B8A6);
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 10px;
}

.yp-testimonial-text {
    font-size: 0.9rem;
    color: #111827;
    margin-bottom: 14px;
}

/* Person info */
.yp-testimonial-person {
    display: flex;
    align-items: center;
    gap: 10px;
}

.yp-testimonial-avatar {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #0f172a;
    background-color: #e5e7eb;
    flex-shrink: 0;
}

/* Avatar colors */
.yp-avatar--blue {
    background: linear-gradient(135deg, #dbeafe, #e0f2fe);
    color: #1d4ed8;
}
.yp-avatar--purple {
    background: linear-gradient(135deg, #ddd6fe, #e9d5ff);
    color: #6d28d9;
}
.yp-avatar--teal {
    background: linear-gradient(135deg, #ccfbf1, #a7f3d0);
    color: #0f766e;
}
.yp-avatar--orange {
    background: linear-gradient(135deg, #fed7aa, #ffedd5);
    color: #c2410c;
}
.yp-avatar--pink {
    background: linear-gradient(135deg, #f9a8d4, #fce7f3);
    color: #be185d;
}
.yp-avatar--green {
    background: linear-gradient(135deg, #bbf7d0, #dcfce7);
    color: #15803d;
}

.yp-testimonial-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
}

.yp-testimonial-role {
    font-size: 0.8rem;
    color: #6b7280;
}

/* Hover */
.yp-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 22px 60px rgba(15, 23, 42, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.9);
}

/* Carousel controls */
.yp-carousel-arrow {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background-color: #0f172a;
    color: #e5e7eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: auto;
    padding: 0 8px;
}
/*TESTIMONIALS SECTION end*/





/* ===================== CONTACT / HIRE ME SECTION ===================== */

.yp-contact-section {
    position: relative;
    padding: 90px 0 100px;
    background-color: #ffffff;
    border-top: 1px solid #e5e7eb;
    overflow: hidden;
}

/* Soft background shapes */
.yp-contact-section::before,
.yp-contact-section::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(40px);
    opacity: 0.45;
    z-index: -1;
}

.yp-contact-section::before {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle at 10% 80%, #e0f2fe, transparent 60%);
    bottom: -150px;
    left: -140px;
}

.yp-contact-section::after {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle at 90% 10%, #e0f7f4, transparent 60%);
    top: -170px;
    right: -140px;
}

/* Left card */
.yp-contact-card {
    padding: 20px 18px 18px;
    border-radius: 22px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow:
        0 18px 50px rgba(15, 23, 42, 0.14),
        0 0 0 1px rgba(255, 255, 255, 0.9);
    animation: ypFadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(24px);
}

.yp-contact-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.yp-contact-lead {
    font-size: 0.96rem;
    color: #4b5563;
    margin-bottom: 16px;
}

/* Availability / status */
.yp-contact-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 11px;
    border-radius: 999px;
    background-color: #0f172a;
    color: #e5e7eb;
    font-size: 0.78rem;
    margin-bottom: 16px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.7);
}

.yp-contact-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.25);
}

/* Form */
.yp-contact-form .form-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 4px;
}

.yp-contact-form .form-control,
.yp-contact-form .form-select {
    font-size: 0.88rem;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    padding: 8px 10px;
    color: #111827;
    background-color: rgba(255, 255, 255, 0.96);
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.15);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.yp-contact-form .form-control:focus,
.yp-contact-form .form-select:focus {
    border-color: #6366F1;
    box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.5);
    background-color: #ffffff;
}

.yp-contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Button */
.yp-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    background-image: linear-gradient(135deg, #6366F1, #14B8A6);
    box-shadow: 0 14px 35px rgba(79, 70, 229, 0.5);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.yp-contact-btn i {
    font-size: 0.85rem;
}

.yp-contact-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 50px rgba(79, 70, 229, 0.6);
    filter: brightness(1.04);
}

.yp-contact-btn:active {
    transform: translateY(0);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
}

.yp-contact-note {
    margin-top: 8px;
    font-size: 0.78rem;
    color: #6b7280;
}

/* Right side */
.yp-contact-side {
    display: flex;
    flex-direction: column;
    gap: 18px;
    animation: ypFadeInUp 0.8s ease forwards 0.06s;
    opacity: 0;
    transform: translateY(24px);
}

.yp-contact-side-title {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.yp-contact-side-text {
    font-size: 0.86rem;
    color: #4b5563;
    margin-bottom: 10px;
}

/* Direct contact info */
.yp-contact-direct {
    padding: 14px 14px 12px;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: radial-gradient(circle at 0 0, #eff6ff 0, #ffffff 55%);
    box-shadow:
        0 12px 30px rgba(15, 23, 42, 0.10),
        0 0 0 1px rgba(255, 255, 255, 0.9);
}

.yp-contact-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 10px;
}

.yp-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
}

.yp-contact-icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #0f172a;
    color: #e5e7eb;
    font-size: 0.78rem;
    flex-shrink: 0;
}

.yp-contact-label {
    font-size: 0.8rem;
    color: #6b7280;
}

.yp-contact-value {
    font-size: 0.88rem;
    color: #111827;
}

.yp-contact-value a,
.yp-contact-value a:visited {
    color: #111827;
    text-decoration: none;
}

.yp-contact-value a:hover {
    text-decoration: underline;
}

/* Social links */
.yp-contact-social {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 6px;
}

.yp-contact-social-label {
    font-size: 0.8rem;
    color: #6b7280;
}

.yp-contact-social-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.yp-contact-social-links a {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #0f172a;
    background-color: #e5e7eb;
    text-decoration: none;
    transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.yp-contact-social-links a:hover {
    background-image: linear-gradient(135deg, #6366F1, #14B8A6);
    color: #ffffff;
    transform: translateY(-1px);
}

/* FAQ block */
.yp-faq-block {
    padding: 14px 14px 12px;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: radial-gradient(circle at 100% 0, #fef3c7 0, #ffffff 60%);
    box-shadow:
        0 12px 30px rgba(15, 23, 42, 0.10),
        0 0 0 1px rgba(255, 255, 255, 0.9);
}

/* FAQ accordion custom styles (Bootstrap 5) */
.yp-faq-accordion .accordion-item {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background-color: transparent;
    margin-bottom: 6px;
}

.yp-faq-accordion .accordion-button {
    padding: 8px 10px;
    font-size: 0.84rem;
    font-weight: 500;
    color: #111827;
    background-color: #f9fafb;
    border-radius: 10px !important;
    box-shadow: none;
}

.yp-faq-accordion .accordion-button::after {
    width: 14px;
    height: 14px;
    background-size: 14px;
}

.yp-faq-accordion .accordion-button:not(.collapsed) {
    background-color: #eef2ff;
    color: #111827;
    box-shadow: 0 0 0 1px rgba(129, 140, 248, 0.4);
}

.yp-faq-accordion .accordion-body {
    padding: 8px 10px 10px;
    font-size: 0.82rem;
    color: #4b5563;
    background-color: #ffffff;
    border-radius: 0 0 10px 10px;
}
/*CONTACT / HIRE ME SECTION END*/










/* ===================== FOOTER ===================== */

.yp-footer {
    position: relative;
    padding: 50px 0 28px;
    background: radial-gradient(circle at 0 0, #1e293b 0, #020617 55%);
    color: #e5e7eb;
    border-top: 1px solid #e5e7eb;
    overflow: hidden;
}

/* Soft glow shapes */
.yp-footer::before,
.yp-footer::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(50px);
    opacity: 0.45;
    z-index: -1;
}

.yp-footer::before {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle at 10% 90%, #6366f1, transparent 60%);
    bottom: -220px;
    left: -180px;
}

.yp-footer::after {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle at 90% 10%, #14b8a6, transparent 60%);
    top: -220px;
    right: -180px;
}

/* Top layout */
.yp-footer-top {
    margin-bottom: 20px;
}

/* Brand block */
.yp-footer-brand {
    max-width: 360px;
}

.yp-footer-logo {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(135deg, #6366F1, #14B8A6);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 8px;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.8);
}

.yp-footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #f9fafb;
    margin-bottom: 6px;
}

.yp-footer-text {
    font-size: 0.86rem;
    color: #cbd5f5;
    margin-bottom: 10px;
}

.yp-footer-highlight-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.yp-footer-highlight-chips span {
    font-size: 0.78rem;
    padding: 4px 9px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    background-color: rgba(15, 23, 42, 0.8);
    color: #e5e7eb;
}

/* Column headings */
.yp-footer-heading {
    font-size: 0.9rem;
    font-weight: 600;
    color: #f9fafb;
    margin-bottom: 6px;
}

/* Links list */
.yp-footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    font-size: 0.84rem;
}

.yp-footer-links li {
    margin-bottom: 4px;
}

.yp-footer a {
    color: #e5e7eb;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.yp-footer a:hover {
    opacity: 1;
    color: #ffffff;
    transform: translateX(1px);
}

/* Contact & social */
.yp-footer-contact {
    max-width: 320px;
}

.yp-footer-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    margin: 6px 0 10px;
}

.yp-footer-email i {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(15, 23, 42, 0.8);
    color: #e5e7eb;
    font-size: 0.8rem;
}

/* Social */
.yp-footer-social {
    display: flex;
    align-items: center;
    gap: 8px;              /* nice small gap between label & icons */
    margin-bottom: 10px;
}

.yp-footer-social-label {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-bottom: 0;
}

.yp-footer-social-links {
    display: flex;
    gap: 8px;
}

.yp-footer-social-links a {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #e5e7eb;
    background-color: rgba(15, 23, 42, 0.9);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.8);
}

.yp-footer-social-links a:hover {
    background-image: linear-gradient(135deg, #6366F1, #14B8A6);
    color: #ffffff;
    transform: translateY(-1px);
}

/* CTA button */
.yp-footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 999px;
    border: none;
    font-size: 0.86rem;
    font-weight: 600;
    color: #0f172a;
    background-color: #f9fafb;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.8);
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.yp-footer-cta i {
    font-size: 0.8rem;
}

.yp-footer-cta:hover {
    color: #0f172a;
    background-color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.9);
    text-decoration: none;
}

.yp-footer-cta:active {
    transform: translateY(0);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.7);
}

/* Divider */
.yp-footer-divider {
    border-top: 1px solid rgba(148, 163, 184, 0.4);
    margin: 18px 0 14px;
}

/* Bottom bar */
.yp-footer-bottom {
    font-size: 0.8rem;
    color: #9ca3af;
}

.yp-footer-copy {
    margin-bottom: 0;
}

.yp-footer-bottom-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.yp-footer-madeby span {
    color: #e5e7eb;
    font-weight: 500;
}

.yp-footer-bottom-links {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.yp-footer-bottom-links a {
    font-size: 0.8rem;
}
/*Footer end*/







/* ===================== MOBILE BOTTOM NAV ===================== */

/* নিচের নেভিগেশন ফিক্সড */
.yp-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1030;
    pointer-events: none; /* ইনার অংশ ছাড়া অন্য জায়গায় ক্লিক ব্লক হবে না */
}

/* iOS safe-area সাপোর্ট */
.yp-bottom-nav-inner {
    pointer-events: auto;
    margin: 0 auto 6px;
    max-width: 520px;
    padding: 6px 8px;
    border-radius: 999px;
    background: radial-gradient(circle at 0 0, rgba(129, 140, 248, 0.96), rgba(56, 189, 248, 0.96));
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.55);
    display: flex;
    justify-content: space-between;
    gap: 4px;
    backdrop-filter: blur(16px);
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .yp-bottom-nav-inner {
        padding-bottom: calc(6px + env(safe-area-inset-bottom));
    }
}

/* প্রতিটি আইটেম */
.yp-bottom-nav-item {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 4px 0;
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.72rem;
    position: relative;
    border-radius: 999px;
    transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.yp-bottom-nav-item .yp-bottom-nav-icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.18);
    color: #f9fafb;
    font-size: 1rem;
    transition: background-color 0.18s ease, transform 0.18s ease, color 0.18s ease;
}

.yp-bottom-nav-label {
    line-height: 1;
}

/* Active / hover state */
.yp-bottom-nav-item.active,
.yp-bottom-nav-item:hover {
    color: #0f172a;
    background: rgba(248, 250, 252, 0.92);
    transform: translateY(-2px);
}

.yp-bottom-nav-item.active .yp-bottom-nav-icon,
.yp-bottom-nav-item:hover .yp-bottom-nav-icon {
    background: linear-gradient(135deg, #6366F1, #14B8A6);
    color: #ffffff;
    transform: scale(1.05);
}
/*MOBILE / TABLET BOTTOM NAV END*/







/* ===================== FLOATING WHATSAPP BUTTON ===================== */

.yp-whatsapp-float {
    position: fixed;
    z-index: 2000;
    bottom: 90px;   /* desktop default */
    right: 16px;
    width: 56px;
    height: 56px;
    cursor: pointer;
    text-decoration: none;
}

/* Pulse ring behind icon */
.yp-whatsapp-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 72px;
    height: 72px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.25);
    transform: translate(-50%, -50%);
    animation: ypWhatsappPulse 1.6s infinite;
    pointer-events: none;
}

/* Main round button */
.yp-whatsapp-inner {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
    font-size: 26px;
    box-shadow: 0 18px 40px rgba(22, 163, 74, 0.7);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
    z-index: 1;
}

/* Tooltip / badge */
.yp-whatsapp-badge {
    position: absolute;
    right: 64px;
    top: 50%;
    padding: 6px 10px;
    border-radius: 999px;
    background-color: #0f172a;
    color: #e5e7eb;
    font-size: 0.75rem;
    white-space: nowrap;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.8);
    opacity: 0;
    transform: translateY(-50%) scale(0.9);
    transform-origin: center right;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Hover / focus states */
.yp-whatsapp-float:hover .yp-whatsapp-inner {
    transform: scale(1.05);
    box-shadow: 0 22px 50px rgba(22, 163, 74, 0.85);
    filter: brightness(1.05);
}

.yp-whatsapp-float:hover .yp-whatsapp-badge {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

/* Pulse animation */
@keyframes ypWhatsappPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    70% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}
/*FLOATING WHATSAPP BUTTON END*/



















/* ===================== SINGLE PROJECT PAGE STYLES START ===================== */

.yp-single-project-page {
    background-color: #f9fafb;
    color: #111827;
    scroll-behavior: smooth;
}

/* ---------- Hero ---------- */

.yp-single-project-hero {
    position: relative;
    padding: 96px 0 60px;
    background:
        radial-gradient(circle at 0% 0%, #eef2ff 0, rgba(238, 242, 255, 0) 55%),
        radial-gradient(circle at 100% 20%, #e0f2fe 0, rgba(224, 242, 254, 0) 55%),
        linear-gradient(135deg, #fdf2ff 0, #f9fafb 100%);
    overflow: hidden;
}

.yp-single-project-hero::before,
.yp-single-project-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(40px);
    opacity: 0.55;
    z-index: 0;
}

.yp-single-project-hero::before {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at 0 0, #6366f1, transparent 60%);
    top: -220px;
    left: -200px;
}

.yp-single-project-hero::after {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle at 100% 20%, #22c55e, transparent 60%);
    top: -180px;
    right: -220px;
}

.yp-single-project-hero .container {
    position: relative;
    z-index: 1;
}

.yp-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    text-decoration: none;
    color: #4b5563;
    margin-bottom: 18px;
    padding: 5px 12px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.2s ease;
}

.yp-back-link i {
    font-size: 0.9rem;
}

.yp-back-link:hover {
    color: #111827;
    background-color: #ffffff;
    border-color: #6366f1;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}

.yp-project-type-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.12), rgba(59, 130, 246, 0.12));
    border: 1px solid rgba(129, 140, 248, 0.65);
    color: #4338ca;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 10px;
}

.yp-single-project-title {
    font-size: 2.35rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.yp-single-project-subtitle {
    font-size: 0.98rem;
    color: #4b5563;
    max-width: 580px;
    margin-bottom: 16px;
}

.yp-project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    font-size: 0.9rem;
    color: #6b7280;
}

.yp-project-meta li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.yp-project-meta i {
    color: #6366f1;
}

/* Hero side card */

.yp-project-hero-card {
    background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.85), #ffffff);
    border-radius: 22px;
    padding: 18px 20px 16px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
}

.yp-project-hero-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9ca3af;
    margin-bottom: 8px;
}

.yp-project-hero-list {
    margin-bottom: 14px;
}

.yp-project-hero-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    padding: 4px 0;
}

.yp-project-hero-list .label {
    color: #6b7280;
}

.yp-project-hero-list .value {
    font-weight: 600;
    color: #111827;
}

.yp-project-hero-list .status-live {
    color: #16a34a;
}

/* ---------- Main body ---------- */

.yp-single-project-body {
    padding: 42px 0 96px;
}

/* Feature image */

.yp-project-main-image {
    margin-bottom: 26px;
}

.yp-project-main-image-inner {
    border-radius: 24px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.32), rgba(20, 184, 166, 0.28));
    box-shadow:
        0 26px 65px rgba(15, 23, 42, 0.22),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.yp-project-main-image-inner::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 18px;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.35), transparent 65%);
    opacity: 0.8;
    pointer-events: none;
}

.yp-project-main-image img {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 18px;
    transform: scale(1.02);
    transition: transform 0.6s ease;
}

.yp-project-main-image:hover img {
    transform: scale(1.06);
}

.yp-project-main-image figcaption {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 8px;
}

/* Sections */

.yp-project-section {
    margin-bottom: 32px;
}

.yp-project-section:last-child {
    margin-bottom: 0;
}

.yp-project-section-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 10px;
}

.yp-project-section-note {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9ca3af;
}

.yp-section-lead {
    font-size: 0.98rem;
    color: #4b5563;
    margin-bottom: 10px;
}

/* Gallery */

.yp-project-gallery-grid {
    margin-top: 6px;
}

.yp-project-gallery-item {
    display: block;
    text-decoration: none;
    color: inherit;
}

.yp-gallery-thumb {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    aspect-ratio: 4 / 3;
    box-shadow:
        0 14px 35px rgba(15, 23, 42, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.85);
    transform: translateY(0);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.yp-gallery-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.0), rgba(15, 23, 42, 0.35));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.yp-project-gallery-item:hover .yp-gallery-thumb {
    transform: translateY(-4px);
    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.95);
}

.yp-project-gallery-item:hover .yp-gallery-thumb::after {
    opacity: 1;
}

.yp-gallery-caption {
    display: block;
    margin-top: 6px;
    font-size: 0.82rem;
    color: #6b7280;
}

/* Features list */

.yp-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ffffff, #f5f3ff);
    border: 1px solid rgba(229, 231, 235, 0.9);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
    margin-bottom: 10px;
}

.yp-feature-list li:last-child {
    margin-bottom: 0;
}

.yp-feature-list i {
    color: #22c55e;
    font-size: 1.1rem;
    margin-top: 4px;
}

.yp-feature-list h3 {
    font-size: 0.98rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 2px;
}

.yp-feature-list p {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0;
}

/* Video section */

.yp-project-video-section {
    padding: 18px 18px 20px;
    border-radius: 22px;
    background: radial-gradient(circle at 0 0, #eef2ff, #ecfeff);
    border: 1px solid rgba(191, 219, 254, 0.8);
    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.9);
}

.yp-video-note {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 10px;
}

.yp-video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 16px;
}

.yp-video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    border-radius: 16px;
    border: 1px dashed rgba(148, 163, 184, 0.7);
    background: repeating-linear-gradient(
        -45deg,
        rgba(239, 246, 255, 0.8),
        rgba(239, 246, 255, 0.8) 10px,
        rgba(219, 234, 254, 0.9) 10px,
        rgba(219, 234, 254, 0.9) 20px
    );
    color: #4b5563;
    gap: 6px;
}

.yp-video-placeholder i {
    font-size: 2rem;
    color: #6366f1;
}

/* Sidebar */

.yp-project-sidebar {
    position: sticky;
    top: 96px;
}

.yp-project-sidebar-card {
    border-radius: 22px;
    padding: 16px 16px 14px;
    margin-bottom: 16px;
    background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.96), #ffffff);
    border: 1px solid rgba(148, 163, 184, 0.45);
    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.85);
}

.yp-project-sidebar-card:last-child {
    margin-bottom: 0;
}

.yp-sidebar-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9ca3af;
    margin-bottom: 10px;
}

.yp-project-details li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    padding: 4px 0;
    gap: 8px;
}

.yp-project-details .label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
}

.yp-project-details .label i {
    color: #4f46e5;
}

.yp-project-details .value {
    font-weight: 600;
    color: #111827;
}

/* Tech tags */

.yp-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.yp-tech-tags span {
    font-size: 0.78rem;
    padding: 5px 10px;
    border-radius: 999px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    color: #4b5563;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.04);
}

/* Sidebar links */

.yp-project-link-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    padding: 7px 10px;
    border-radius: 999px;
    text-decoration: none;
    color: #374151;
    border: 1px solid #e5e7eb;
    background-color: #ffffff;
    margin-bottom: 8px;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.yp-project-link-pill:last-child {
    margin-bottom: 0;
}

.yp-project-link-pill i {
    color: #6366f1;
}

.yp-project-link-pill:hover {
    background: linear-gradient(135deg, #eef2ff, #e0f2fe);
    border-color: #6366f1;
    color: #111827;
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.25);
    transform: translateY(-2px);
}

/* Image modal */

.yp-image-modal .modal-content {
    border-radius: 22px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: radial-gradient(circle at 0 0, #020617, #020617);
    padding: 10px;
    position: relative;
}

.yp-image-modal img {
    display: block;
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 16px;
}

.yp-image-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
    background-color: rgba(15, 23, 42, 0.85);
    border-radius: 999px;
    padding: 4px;
    opacity: 1;
    color: #e5e7eb;
}

.yp-image-modal-close:hover {
    background-color: rgba(15, 23, 42, 1);
}

/* Scroll animation */

.yp-animate-on-scroll {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.yp-animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Optional: style when JS disables sticky via .yp-sidebar-mobile */
.yp-sidebar-mobile {
    position: static !important;
    margin-top: 16px;
}

/* ===================== SINGLE PROJECT PAGE STYLES END ===================== */








/* ===================== CONTACT PAGE STYLES START ===================== */

.yp-contact-page {
    background-color: #f9fafb;
    color: #0f172a;
}

/* Hero */

.yp-contact-hero {
    position: relative;
    padding: 96px 0 56px;
    background:
        radial-gradient(circle at 0% 0%, #eef2ff 0, rgba(238, 242, 255, 0) 55%),
        radial-gradient(circle at 100% 15%, #e0f2fe 0, rgba(224, 242, 254, 0) 55%),
        radial-gradient(circle at 50% 100%, #fce7f3 0, rgba(252, 231, 243, 0) 55%),
        linear-gradient(135deg, #fdf2ff 0, #f9fafb 100%);
    overflow: hidden;
}

.yp-contact-hero::before,
.yp-contact-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(40px);
    opacity: 0.55;
    z-index: 0;
}

.yp-contact-hero::before {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle at 0 0, #6366f1, transparent 62%);
    top: -240px;
    left: -220px;
}

.yp-contact-hero::after {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle at 100% 0, #22c55e, transparent 62%);
    top: -210px;
    right: -220px;
}

.yp-contact-hero .container {
    position: relative;
    z-index: 1;
}

.yp-contact-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.78);
    color: #e5e7eb;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 10px;
}

.yp-contact-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #020617;
    margin-bottom: 8px;
}

.yp-contact-subtitle {
    font-size: 0.98rem;
    color: #4b5563;
    max-width: 600px;
    margin-bottom: 16px;
}

.yp-contact-highlight-list {
    font-size: 0.9rem;
    color: #4b5563;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
}

.yp-contact-highlight-list li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(209, 213, 219, 0.8);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.yp-contact-highlight-list i {
    color: #4f46e5;
}

/* Hero side card */

.yp-contact-side-card {
    background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.94), #ffffff);
    border-radius: 22px;
    padding: 18px 18px 14px;
    border: 1px solid rgba(148, 163, 184, 0.55);
    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.16),
        0 0 0 1px rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
}

.yp-contact-side-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9ca3af;
    margin-bottom: 10px;
}

.yp-contact-side-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    padding: 4px 0;
    gap: 8px;
}

.yp-contact-side-row .label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
}

.yp-contact-side-row .label i {
    color: #4f46e5;
}

.yp-contact-side-row .value {
    font-weight: 600;
    color: #111827;
    text-decoration: none;
}

.yp-contact-side-row a.value:hover {
    color: #4f46e5;
}

.yp-contact-availability {
    margin: 10px 0 6px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.yp-contact-availability .badge-availability {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(22, 163, 74, 0.08);
    border: 1px solid rgba(22, 163, 74, 0.55);
    color: #15803d;
    font-size: 0.8rem;
    font-weight: 600;
}

.yp-contact-availability .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background-color: #22c55e;
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.3);
}

.yp-contact-availability .note {
    font-size: 0.78rem;
    color: #6b7280;
}

.yp-contact-social {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.yp-contact-social .label {
    font-size: 0.85rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.yp-contact-social .links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background-color: #0f172a;
    color: #e5e7eb;
    text-decoration: none;
    margin-left: 4px;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.yp-contact-social .links a i {
    font-size: 1rem;
}

.yp-contact-social .links a:hover {
    transform: translateY(-2px);
    background-color: #4f46e5;
    box-shadow: 0 10px 24px rgba(79, 70, 229, 0.4);
}

/* Main contact area */

.yp-contact-main {
    padding: 32px 0 96px;
}

/* Info card (left) */

.yp-contact-info-card {
    border-radius: 22px;
    padding: 18px 18px 16px;
    background: radial-gradient(circle at 0 0, #eef2ff, #ecfeff);
    border: 1px solid rgba(191, 219, 254, 0.9);
    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.16),
        0 0 0 1px rgba(255, 255, 255, 0.9);
}

.yp-contact-info-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 6px;
}

.yp-contact-info-text {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 10px;
}

.yp-contact-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.9rem;
    color: #4b5563;
    padding: 6px 0;
}

.yp-contact-checklist i {
    color: #22c55e;
    margin-top: 3px;
}

.yp-contact-mini-note {
    margin-top: 10px;
    padding: 10px 11px;
    border-radius: 14px;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px dashed rgba(148, 163, 184, 0.8);
    font-size: 0.86rem;
    color: #6b7280;
}

/* Form card */

.yp-contact-form-card {
    border-radius: 24px;
    padding: 20px 20px 18px;
    background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.96), #ffffff);
    border: 1px solid rgba(148, 163, 184, 0.6);
    box-shadow:
        0 22px 55px rgba(15, 23, 42, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.95);
}

.yp-contact-form-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.yp-contact-form-subtitle {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 14px;
}

/* Form fields */

.yp-field-label {
    display: block;
    font-size: 0.86rem;
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 4px;
}

.yp-form-control {
    border-radius: 12px !important;
    border: 1px solid rgba(209, 213, 219, 0.9);
    background-color: rgba(249, 250, 251, 0.95);
    font-size: 0.9rem;
    padding: 8px 12px;
    color: #111827;
    box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease,
        transform 0.15s ease;
}

.yp-form-control::placeholder {
    color: #9ca3af;
}

.yp-form-control:focus {
    outline: none;
    background-color: #ffffff;
    border-color: #6366f1;
    box-shadow:
        0 0 0 1px rgba(129, 140, 248, 0.6),
        0 12px 30px rgba(79, 70, 229, 0.25);
    transform: translateY(-1px);
}

textarea.yp-form-control {
    resize: vertical;
    min-height: 140px;
}

.yp-field-hint {
    font-size: 0.78rem;
    color: #9ca3af;
}

/* Checkbox */

.yp-form-check .form-check-input {
    border-radius: 6px;
    border-color: rgba(209, 213, 219, 0.9);
}

.yp-form-check .form-check-input:checked {
    background-color: #4f46e5;
    border-color: #4f46e5;
}

.yp-form-check .form-check-label {
    font-size: 0.88rem;
    color: #4b5563;
}

/* Submit button */

.yp-contact-submit-btn {
    position: relative;
    min-width: 170px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.yp-contact-submit-btn .loading-text {
    display: none;
}

.yp-contact-submit-btn.is-loading {
    pointer-events: none;
    opacity: 0.85;
}

.yp-contact-submit-btn.is-loading .default-text {
    display: none;
}

.yp-contact-submit-btn.is-loading .loading-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.yp-contact-footnote {
    margin-top: 8px;
    font-size: 0.8rem;
    color: #9ca3af;
}

/* Validation */

.yp-contact-form .invalid-feedback {
    font-size: 0.8rem;
}

.yp-contact-form.was-validated .form-control:invalid,
.yp-contact-form.was-validated .form-select:invalid {
    border-color: #f97373;
}

/* Scroll animation base (shared with other pages) */

.yp-animate-on-scroll {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.yp-animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================== CONTACT PAGE STYLES END ===================== */








/* ===================== ABOUT PAGE STYLES START ===================== */

.yp-about-page {
    background-color: #f9fafb;
    color: #0f172a;
}

/* Hero */

.yp-about-hero {
    position: relative;
    padding: 96px 0 60px;
    background:
        radial-gradient(circle at 0% 0%, #eef2ff 0, rgba(238, 242, 255, 0) 55%),
        radial-gradient(circle at 100% 0%, #e0f2fe 0, rgba(224, 242, 254, 0) 55%),
        radial-gradient(circle at 50% 100%, #fce7f3 0, rgba(252, 231, 243, 0) 55%),
        linear-gradient(135deg, #fdf2ff 0, #f9fafb 100%);
    overflow: hidden;
}

.yp-about-hero::before,
.yp-about-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(40px);
    opacity: 0.55;
    z-index: 0;
}

.yp-about-hero::before {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle at 0 0, #6366f1, transparent 62%);
    top: -240px;
    left: -220px;
}

.yp-about-hero::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at 100% 0, #22c55e, transparent 62%);
    top: -210px;
    right: -230px;
}

.yp-about-hero .container {
    position: relative;
    z-index: 1;
}

.yp-about-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.88);
    color: #e5e7eb;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 10px;
}

.yp-about-title {
    font-size: 2.35rem;
    font-weight: 700;
    color: #020617;
    margin-bottom: 10px;
}

.yp-about-subtitle {
    font-size: 0.98rem;
    color: #4b5563;
    max-width: 620px;
    margin-bottom: 16px;
}

.yp-about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.yp-about-highlight-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    color: #374151;
    background-color: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(209, 213, 219, 0.9);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.10);
}

.yp-about-highlight-pill i {
    color: #4f46e5;
}

/* Hero photo card */

.yp-about-photo-card {
    background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.95), #ffffff);
    border-radius: 24px;
    padding: 18px 18px 14px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    box-shadow:
        0 22px 55px rgba(15, 23, 42, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
}

.yp-about-photo-frame {
    border-radius: 22px;
    padding: 10px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.42), rgba(14, 165, 233, 0.38));
    box-shadow:
        0 18px 44px rgba(15, 23, 42, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.yp-about-photo-frame img {
    display: block;
    width: 100%;
    border-radius: 18px;
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

.yp-about-photo-card:hover .yp-about-photo-frame img {
    transform: scale(1.06);
}

.yp-about-photo-info {
    margin-bottom: 6px;
}

.yp-about-photo-info .name {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1px;
}

.yp-about-photo-info .role {
    font-size: 0.88rem;
    color: #6b7280;
}

.yp-about-photo-stats {
    font-size: 0.85rem;
    color: #4b5563;
}

.yp-about-photo-stats li {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding: 4px 0;
}

.yp-about-photo-stats .label {
    color: #9ca3af;
}

.yp-about-photo-stats .value {
    font-weight: 500;
}

/* Main section */

.yp-about-main {
    padding: 40px 0 96px;
}

/* Generic section */

.yp-about-section {
    margin-bottom: 32px;
}

.yp-about-section:last-child {
    margin-bottom: 0;
}

.yp-about-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.yp-about-section-lead {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 10px;
}

/* Bullet list */

.yp-about-list {
    margin-top: 10px;
}

.yp-about-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.9rem;
    color: #4b5563;
    padding: 4px 0;
}

.yp-about-list i {
    color: #22c55e;
    margin-top: 3px;
}

/* Side card (How I work) */

.yp-about-side-card {
    border-radius: 22px;
    padding: 18px 18px 14px;
    background: radial-gradient(circle at 0 0, #eef2ff, #ecfeff);
    border: 1px solid rgba(191, 219, 254, 0.9);
    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.16),
        0 0 0 1px rgba(255, 255, 255, 0.95);
}

.yp-about-side-title {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.yp-about-side-list li {
    display: flex;
    gap: 10px;
    padding: 8px 0;
}

.yp-about-side-list .icon {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background-color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.yp-about-side-list .icon i {
    color: #e5e7eb;
    font-size: 1rem;
}

.yp-about-side-list h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 2px;
}

.yp-about-side-list p {
    font-size: 0.88rem;
    color: #6b7280;
    margin-bottom: 0;
}

/* Services */

.yp-about-services {
    margin-top: 12px;
}

.yp-about-service-grid {
    margin-top: 4px;
}

.yp-about-service-card {
    border-radius: 20px;
    padding: 16px 16px 14px;
    background: radial-gradient(circle at 0 0, #ffffff, #f5f3ff);
    border: 1px solid rgba(199, 210, 254, 0.9);
    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.9);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.yp-about-service-card .service-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background-color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.yp-about-service-card .service-icon i {
    color: #e5e7eb;
    font-size: 1rem;
}

.yp-about-service-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.yp-about-service-card p {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 6px;
}

.yp-about-service-card ul {
    padding-left: 16px;
    margin-bottom: 0;
    font-size: 0.85rem;
    color: #4b5563;
}

/* Skills */

.yp-about-skills {
    margin-top: 8px;
}

.yp-about-skill-card {
    border-radius: 18px;
    padding: 12px 14px;
    background-color: #ffffff;
    border: 1px solid rgba(209, 213, 219, 0.9);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.10);
}

.yp-about-skill-card .label {
    font-size: 0.88rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 6px;
}

.yp-about-skill-card .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.yp-about-skill-card .tags span {
    font-size: 0.78rem;
    padding: 4px 9px;
    border-radius: 999px;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    color: #4b5563;
}

/* Timeline */

.yp-about-timeline {
    margin-top: 8px;
}

.yp-timeline {
    position: relative;
    margin-top: 8px;
    padding-left: 18px;
}

.yp-timeline::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    bottom: 2px;
    width: 2px;
    background: linear-gradient(to bottom, #a5b4fc, #6ee7b7);
}

.yp-timeline li {
    position: relative;
    margin-bottom: 18px;
}

.yp-timeline li:last-child {
    margin-bottom: 0;
}

.yp-timeline .dot {
    position: absolute;
    left: -2px;
    top: 4px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background-color: #4f46e5;
    box-shadow: 0 0 0 4px rgba(129, 140, 248, 0.4);
}

.yp-timeline .content {
    padding-left: 18px;
}

.yp-timeline .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    font-size: 0.8rem;
    color: #9ca3af;
    margin-bottom: 2px;
}

.yp-timeline .meta .time {
    font-weight: 600;
}

.yp-timeline h3 {
    font-size: 0.98rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 2px;
}

.yp-timeline p {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0;
}

/* Scroll animation (re‑use with existing JS) */

.yp-animate-on-scroll {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.yp-animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================== ABOUT PAGE STYLES END ===================== */












/* ===================== TERMS & CONDITIONS PAGE STYLES START ===================== */

.yp-terms-page {
    background-color: #f9fafb;
    color: #0f172a;
}

/* Hero */

.yp-terms-hero {
    position: relative;
    padding: 96px 0 56px;
    background:
        radial-gradient(circle at 0% 0%, #eef2ff 0, rgba(238, 242, 255, 0) 55%),
        radial-gradient(circle at 100% 0%, #e0f2fe 0, rgba(224, 242, 254, 0) 55%),
        radial-gradient(circle at 50% 100%, #fce7f3 0, rgba(252, 231, 243, 0) 55%),
        linear-gradient(135deg, #fdf2ff 0, #f9fafb 100%);
    overflow: hidden;
}

.yp-terms-hero::before,
.yp-terms-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(40px);
    opacity: 0.55;
    z-index: 0;
}

.yp-terms-hero::before {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle at 0 0, #6366f1, transparent 62%);
    top: -240px;
    left: -220px;
}

.yp-terms-hero::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at 100% 0, #22c55e, transparent 62%);
    top: -210px;
    right: -230px;
}

.yp-terms-hero .container {
    position: relative;
    z-index: 1;
}

.yp-terms-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.88);
    color: #e5e7eb;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 10px;
}

.yp-terms-title {
    font-size: 2.35rem;
    font-weight: 700;
    color: #020617;
    margin-bottom: 10px;
}

.yp-terms-subtitle {
    font-size: 0.96rem;
    color: #4b5563;
    max-width: 640px;
    margin-bottom: 16px;
}

.yp-terms-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    font-size: 0.9rem;
    color: #6b7280;
}

.yp-terms-meta li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(209, 213, 219, 0.9);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.10);
}

.yp-terms-meta i {
    color: #4f46e5;
}

/* Hero side card */

.yp-terms-hero-card {
    background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.95), #ffffff);
    border-radius: 22px;
    padding: 18px 18px 14px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    box-shadow:
        0 20px 50px rgba(15, 23, 42, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
}

.yp-terms-hero-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9ca3af;
    margin-bottom: 6px;
}

.yp-terms-hero-text {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 12px;
}

/* Main */

.yp-terms-main {
    padding: 40px 0 96px;
}

/* TOC sidebar */

.yp-terms-toc {
    position: sticky;
    top: 96px;
    border-radius: 22px;
    padding: 16px 16px 14px;
    background: radial-gradient(circle at 0 0, #eef2ff, #ecfeff);
    border: 1px solid rgba(191, 219, 254, 0.9);
    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.16),
        0 0 0 1px rgba(255, 255, 255, 0.95);
}

.yp-terms-toc-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 8px;
}

.yp-terms-toc-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.yp-terms-toc-nav a {
    display: block;
    font-size: 0.88rem;
    color: #4b5563;
    text-decoration: none;
    padding: 6px 8px;
    border-radius: 10px;
    transition:
        background-color 0.15s ease,
        color 0.15s ease,
        transform 0.15s ease,
        box-shadow 0.15s ease;
}

.yp-terms-toc-nav a:hover {
    background-color: #eef2ff;
    color: #111827;
    transform: translateX(2px);
    box-shadow: 0 8px 18px rgba(129, 140, 248, 0.3);
}

/* Content */

.yp-terms-content {
    border-radius: 24px;
    padding: 18px 20px 18px;
    background-color: #ffffff;
    border: 1px solid rgba(209, 213, 219, 0.9);
    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.14),
        0 0 0 1px rgba(255, 255, 255, 0.95);
}

.yp-terms-section {
    margin-bottom: 24px;
}

.yp-terms-section:last-child {
    margin-bottom: 0;
}

.yp-terms-section-title {
    font-size: 1.02rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 6px;
}

.yp-terms-section p {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 8px;
}

.yp-terms-list {
    padding-left: 18px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #4b5563;
}

.yp-terms-list li {
    margin-bottom: 4px;
}

/* Contact card & disclaimer */

.yp-terms-contact-card {
    margin: 8px 0 10px;
    padding: 10px 12px;
    border-radius: 14px;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
}

.yp-terms-contact-card p {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 4px;
}

.yp-terms-contact-card i {
    color: #4f46e5;
    margin-right: 6px;
}

.yp-terms-contact-card a {
    color: #2563eb;
    text-decoration: none;
}

.yp-terms-contact-card a:hover {
    text-decoration: underline;
}

.yp-terms-disclaimer {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: 4px;
}

/* Simple scroll animation (reusing your existing JS) */

.yp-animate-on-scroll {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.yp-animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================== TERMS & CONDITIONS PAGE STYLES END ===================== */






/* ===================== PRIVACY POLICY PAGE STYLES START ===================== */

.yp-privacy-page {
    background-color: #f9fafb;
    color: #0f172a;
}

/* Hero */

.yp-privacy-hero {
    position: relative;
    padding: 96px 0 56px;
    background:
        radial-gradient(circle at 0% 0%, #eef2ff 0, rgba(238, 242, 255, 0) 55%),
        radial-gradient(circle at 100% 0%, #e0f2fe 0, rgba(224, 242, 254, 0) 55%),
        radial-gradient(circle at 50% 100%, #fce7f3 0, rgba(252, 231, 243, 0) 55%),
        linear-gradient(135deg, #fdf2ff 0, #f9fafb 100%);
    overflow: hidden;
}

.yp-privacy-hero::before,
.yp-privacy-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(40px);
    opacity: 0.55;
    z-index: 0;
}

.yp-privacy-hero::before {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle at 0 0, #6366f1, transparent 62%);
    top: -240px;
    left: -220px;
}

.yp-privacy-hero::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at 100% 0, #22c55e, transparent 62%);
    top: -210px;
    right: -230px;
}

.yp-privacy-hero .container {
    position: relative;
    z-index: 1;
}

.yp-privacy-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.88);
    color: #e5e7eb;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 10px;
}

.yp-privacy-title {
    font-size: 2.35rem;
    font-weight: 700;
    color: #020617;
    margin-bottom: 10px;
}

.yp-privacy-subtitle {
    font-size: 0.96rem;
    color: #4b5563;
    max-width: 640px;
    margin-bottom: 16px;
}

.yp-privacy-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    font-size: 0.9rem;
    color: #6b7280;
}

.yp-privacy-meta li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(209, 213, 219, 0.9);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.10);
}

.yp-privacy-meta i {
    color: #4f46e5;
}

/* Hero side card */

.yp-privacy-hero-card {
    background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.95), #ffffff);
    border-radius: 22px;
    padding: 18px 18px 14px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    box-shadow:
        0 20px 50px rgba(15, 23, 42, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
}

.yp-privacy-hero-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9ca3af;
    margin-bottom: 6px;
}

.yp-privacy-hero-text {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 12px;
}

/* Main */

.yp-privacy-main {
    padding: 40px 0 96px;
}

/* TOC sidebar */

.yp-privacy-toc {
    position: sticky;
    top: 96px;
    border-radius: 22px;
    padding: 16px 16px 14px;
    background: radial-gradient(circle at 0 0, #eef2ff, #ecfeff);
    border: 1px solid rgba(191, 219, 254, 0.9);
    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.16),
        0 0 0 1px rgba(255, 255, 255, 0.95);
}

.yp-privacy-toc-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 8px;
}

.yp-privacy-toc-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.yp-privacy-toc-nav a {
    display: block;
    font-size: 0.88rem;
    color: #4b5563;
    text-decoration: none;
    padding: 6px 8px;
    border-radius: 10px;
    transition:
        background-color 0.15s ease,
        color 0.15s ease,
        transform 0.15s ease,
        box-shadow 0.15s ease;
}

.yp-privacy-toc-nav a:hover {
    background-color: #eef2ff;
    color: #111827;
    transform: translateX(2px);
    box-shadow: 0 8px 18px rgba(129, 140, 248, 0.3);
}

/* Content */

.yp-privacy-content {
    border-radius: 24px;
    padding: 18px 20px 18px;
    background-color: #ffffff;
    border: 1px solid rgba(209, 213, 219, 0.9);
    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.14),
        0 0 0 1px rgba(255, 255, 255, 0.95);
}

.yp-privacy-section {
    margin-bottom: 24px;
}

.yp-privacy-section:last-child {
    margin-bottom: 0;
}

.yp-privacy-section-title {
    font-size: 1.02rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 6px;
}

.yp-privacy-section p {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 8px;
}

.yp-privacy-subheading {
    font-size: 0.92rem;
    font-weight: 600;
    color: #111827;
    margin-top: 6px;
    margin-bottom: 4px;
}

/* Lists */

.yp-privacy-list {
    padding-left: 18px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #4b5563;
}

.yp-privacy-list li {
    margin-bottom: 4px;
}

/* Contact card & disclaimer */

.yp-privacy-contact-card {
    margin: 8px 0 10px;
    padding: 10px 12px;
    border-radius: 14px;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
}

.yp-privacy-contact-card p {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 4px;
}

.yp-privacy-contact-card i {
    color: #4f46e5;
    margin-right: 6px;
}

.yp-privacy-contact-card a {
    color: #2563eb;
    text-decoration: none;
}

.yp-privacy-contact-card a:hover {
    text-decoration: underline;
}

.yp-privacy-disclaimer {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: 4px;
}

/* Simple scroll animation (reusing existing JS) */

.yp-animate-on-scroll {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.yp-animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================== PRIVACY POLICY PAGE STYLES END ===================== */











/* ===================== ALL PROJECTS (LIST PAGE) ===================== */

.yp-all-projects-section {
    position: relative;
    padding: 110px 0 120px;
    background-color: #f3f4f6; /* previous section-এর থেকে একটু গাঢ় */
    overflow: hidden;
}

/* Light background shapes */
.yp-all-projects-section::before,
.yp-all-projects-section::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(45px);
    opacity: 0.5;
    z-index: -1;
}

.yp-all-projects-section::before {
    width: 460px;
    height: 460px;
    background: radial-gradient(circle at 0% 0%, #e0f2fe, transparent 60%);
    top: -160px;
    left: -140px;
}

.yp-all-projects-section::after {
    width: 460px;
    height: 460px;
    background: radial-gradient(circle at 100% 100%, #e0f7f4, transparent 60%);
    bottom: -180px;
    right: -140px;
}

.yp-all-header-row {
    margin-bottom: 24px;
}

/* Search row */
.yp-all-search-row {
    margin-bottom: 26px;
}

/* Search bar */
.yp-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.yp-search-input {
    border-radius: 999px;
    padding-left: 40px;
    padding-right: 40px;
    height: 46px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background-color: #ffffff;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.10);
    font-size: 0.9rem;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.yp-search-input:focus {
    border-color: #6366f1;
    background-color: #ffffff;
    box-shadow:
        0 18px 40px rgba(99, 102, 241, 0.18),
        0 0 0 1px rgba(129, 140, 248, 0.5);
    outline: none;
}

.yp-search-icon {
    position: absolute;
    left: 14px;
    font-size: 0.9rem;
    color: #9ca3af;
}

.yp-search-clear {
    position: absolute;
    right: 6px;
    color: #9ca3af;
    font-size: 0.85rem;
    padding: 0 10px;
}

.yp-search-clear:hover {
    color: #4b5563;
    text-decoration: none;
}

.yp-search-hint {
    font-size: 0.78rem;
    color: #9ca3af;
    margin-top: 4px;
}

/* Filter chips */
.yp-filter-chips {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.yp-filter-chip {
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background-color: #ffffff;
    color: #4b5563;
    font-size: 0.78rem;
    padding: 5px 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    transition:
        background-color 0.15s ease,
        color 0.15s ease,
        border-color 0.15s ease,
        box-shadow 0.15s ease;
}

.yp-filter-chip i {
    font-size: 0.8rem;
}

.yp-filter-chip:hover {
    background-color: #eef2ff;
    border-color: #6366f1;
}

.yp-filter-chip.active {
    background-color: #4f46e5;
    border-color: #4f46e5;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(79, 70, 229, 0.4);
}

/* Grid spacing */
.yp-all-projects-grid {
    margin-top: 8px;
}

/* Override card style slightly for All Projects page */
.yp-all-projects-section .yp-project-card {
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    box-shadow:
        0 16px 40px rgba(15, 23, 42, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.6);
    transform: translateY(18px);
    opacity: 0;
    animation: ypFadeInUp 0.7s ease forwards;
}

.yp-all-projects-section .yp-project-card:hover {
    transform: translateY(-4px);
    border-color: rgba(79, 70, 229, 0.65);
    box-shadow:
        0 22px 55px rgba(15, 23, 42, 0.20),
        0 0 0 1px rgba(255, 255, 255, 0.7);
}

/* Thumb subtle change */
.yp-all-projects-section .yp-project-thumb img {
    transform: scale(1.01);
}

.yp-all-projects-section .yp-project-card:hover .yp-project-thumb img {
    transform: scale(1.06);
}

/* jQuery UI autocomplete styling */
.ui-autocomplete {
    z-index: 10000 !important;
    max-height: 260px;
    overflow-y: auto;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
    padding: 6px 0;
    font-size: 0.9rem;
}

.ui-menu-item-wrapper.ui-state-active {
    background-color: #eef2ff;
    border: none;
    color: #111827;
}
/*ALL PROJECTS (LIST PAGE) END*/









/* ===================== BLOG ARCHIVE SECTION (ALL BLOGS) ===================== */

.yp-blog-section {
    position: relative;
    padding: 110px 0 120px;
    background:
        radial-gradient(circle at 0% 0%, #4f46e5 0, rgba(15,23,42,0.7) 35%, #020617 70%),
        radial-gradient(circle at 100% 100%, #14b8a6 0, rgba(15,23,42,0.8) 35%, #020617 80%);
    color: #e5e7eb;
    overflow: hidden;
}

/* soft gradient glows */
.yp-blog-section::before,
.yp-blog-section::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(55px);
    opacity: 0.35;
    z-index: -1;
}

.yp-blog-section::before {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(129, 140, 248, 0.9), transparent 60%);
    top: -120px;
    left: -120px;
}

.yp-blog-section::after {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.9), transparent 60%);
    bottom: -140px;
    right: -120px;
}

.yp-blog-header-row {
    margin-bottom: 28px;
}

.yp-blog-search-row {
    margin-bottom: 30px;
}

/* Search bar */
.yp-blog-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.yp-blog-search-input {
    border-radius: 999px;
    padding-left: 40px;
    padding-right: 40px;
    height: 46px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: rgba(15, 23, 42, 0.85);
    color: #f9fafb;
    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.8),
        0 0 0 1px rgba(148, 163, 184, 0.25);
    font-size: 0.9rem;
    backdrop-filter: blur(18px);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease,
        transform 0.15s ease;
}

.yp-blog-search-input::placeholder {
    color: rgba(148, 163, 184, 0.9);
}

.yp-blog-search-input:focus {
    border-color: #6366f1;
    background-color: rgba(15, 23, 42, 0.97);
    box-shadow:
        0 22px 55px rgba(79, 70, 229, 0.6),
        0 0 0 1px rgba(129, 140, 248, 0.8);
    outline: none;
    transform: translateY(-1px);
}

.yp-blog-search-icon {
    position: absolute;
    left: 14px;
    font-size: 0.9rem;
    color: #9ca3af;
}

.yp-blog-search-clear {
    position: absolute;
    right: 6px;
    color: #9ca3af;
    font-size: 0.85rem;
    padding: 0 10px;
}

.yp-blog-search-clear:hover {
    color: #e5e7eb;
    text-decoration: none;
}

.yp-blog-search-hint {
    font-size: 0.78rem;
    color: #9ca3af;
    margin-top: 4px;
}

/* Grid */
.yp-blog-grid {
    margin-top: 6px;
}

/* Blog card */
.yp-blog-item {
    animation: ypFadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(22px);
}

.yp-blog-card {
    background: linear-gradient(
        145deg,
        rgba(15, 23, 42, 0.96),
        rgba(30, 64, 175, 0.96)
    );
    border-radius: 22px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    box-shadow:
        0 22px 55px rgba(15, 23, 42, 0.95),
        0 0 0 1px rgba(15, 23, 42, 0.9);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.yp-blog-card:hover {
    transform: translateY(-7px);
    border-color: rgba(129, 140, 248, 0.9);
    box-shadow:
        0 26px 70px rgba(15, 23, 42, 0.98),
        0 0 0 1px rgba(129, 140, 248, 0.7);
}

/* Thumb */
.yp-blog-thumb {
    position: relative;
    overflow: hidden;
    max-height: 210px;
}

.yp-blog-thumb img {
    width: 100%;
    display: block;
    transform: scale(1.04);
    transition: transform 0.6s ease;
}

.yp-blog-card:hover .yp-blog-thumb img {
    transform: scale(1.1);
}

.yp-blog-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(129, 140, 248, 0.22),
        rgba(236, 72, 153, 0.2)
    );
    mix-blend-mode: screen;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.yp-blog-card:hover .yp-blog-thumb::after {
    opacity: 1;
}

/* Category label on image */
.yp-blog-category-label {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.86);
    color: #e5e7eb;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Content */
.yp-blog-content {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Meta */
.yp-blog-meta-top {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 8px;
}

.yp-blog-meta-pill {
    font-size: 0.76rem;
    color: #9ca3af;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.yp-blog-meta-pill i {
    font-size: 0.8rem;
}

/* Title & excerpt */
.yp-blog-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #f9fafb;
    margin-bottom: 6px;
}

.yp-blog-excerpt {
    font-size: 0.9rem;
    color: rgba(209, 213, 219, 0.9);
    margin-bottom: 10px;
}

/* Tags */
.yp-blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.yp-blog-tags span {
    font-size: 0.78rem;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.95);
    color: #e5e7eb;
    border: 1px solid rgba(148, 163, 184, 0.7);
}

/* Actions */
.yp-blog-actions {
    margin-top: auto;
    padding-top: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.yp-blog-read-btn {
    font-size: 0.86rem;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(129, 140, 248, 0.8);
    background: linear-gradient(135deg, #4f46e5, #ec4899);
    color: #f9fafb;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 14px 32px rgba(79, 70, 229, 0.6);
    transition:
        box-shadow 0.2s ease,
        transform 0.2s ease,
        filter 0.2s ease;
}

.yp-blog-read-btn i {
    font-size: 0.88rem;
}

.yp-blog-read-btn:hover {
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 18px 46px rgba(236, 72, 153, 0.7);
    filter: brightness(1.05);
}

.yp-blog-meta-extra {
    font-size: 0.78rem;
    color: #9ca3af;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.yp-blog-meta-extra i {
    font-size: 0.8rem;
}

/* jQuery UI Autocomplete (যদি globally না দিয়ে থাকো) */
.ui-autocomplete {
    z-index: 10000 !important;
    max-height: 260px;
    overflow-y: auto;
    background-color: #020617;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
    padding: 6px 0;
    font-size: 0.9rem;
    color: #e5e7eb;
}

.ui-menu-item-wrapper.ui-state-active {
    background-color: rgba(79, 70, 229, 0.4) !important;
    border: none !important;
    color: #f9fafb !important;
}
/*BLOG ARCHIVE SECTION (ALL BLOGS) END*/










/* ===================== SINGLE BLOG PAGE ===================== */

.yp-blog-single-section {
    position: relative;
    padding: 110px 0 120px;
    background:
        radial-gradient(circle at 0% 0%, #4f46e5 0, rgba(15,23,42,0.7) 35%, #020617 70%),
        radial-gradient(circle at 100% 100%, #ec4899 0, rgba(15,23,42,0.8) 35%, #020617 80%);
    color: #e5e7eb;
    overflow: hidden;
}

/* background glows */
.yp-blog-single-section::before,
.yp-blog-single-section::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(60px);
    opacity: 0.35;
    z-index: -1;
}

.yp-blog-single-section::before {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(129, 140, 248, 0.9), transparent 60%);
    top: -140px;
    left: -140px;
}

.yp-blog-single-section::after {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.9), transparent 60%);
    bottom: -140px;
    right: -140px;
}

/* Main card */
.yp-blog-single-card {
    background: rgba(15, 23, 42, 0.96);
    border-radius: 26px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    box-shadow:
        0 26px 70px rgba(15, 23, 42, 0.98),
        0 0 0 1px rgba(15, 23, 42, 0.9);
    padding: 26px 22px 26px;
    backdrop-filter: blur(18px);
    animation: ypFadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(22px);
}

/* Header */
.yp-blog-single-header {
    margin-bottom: 18px;
}

.yp-blog-single-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f9fafb;
    margin-bottom: 10px;
}

.yp-blog-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
    color: #9ca3af;
}

.yp-blog-single-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.yp-blog-single-meta i {
    font-size: 0.8rem;
}

/* Cover image */
.yp-blog-single-cover {
    position: relative;
    margin: 0 0 18px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.5);
    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.9),
        0 0 0 1px rgba(15, 23, 42, 0.9);
}

.yp-blog-single-cover img {
    width: 100%;
    display: block;
    max-height: 360px;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform 0.7s ease;
}

.yp-blog-single-card:hover .yp-blog-single-cover img {
    transform: scale(1.06);
}

.yp-blog-single-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(129, 140, 248, 0.16),
        rgba(236, 72, 153, 0.2)
    );
    mix-blend-mode: screen;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.yp-blog-single-card:hover .yp-blog-single-cover::after {
    opacity: 1;
}

.yp-blog-single-cover figcaption {
    font-size: 0.8rem;
    color: #9ca3af;
    padding: 8px 12px 10px;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.96),
        rgba(15, 23, 42, 0.98)
    );
}

/* Content body */
.yp-blog-single-body {
    font-size: 0.96rem;
    color: rgba(209, 213, 219, 0.96);
    line-height: 1.7;
}

.yp-blog-single-body p {
    margin-bottom: 14px;
}

.yp-blog-single-body h2 {
    font-size: 1.2rem;
    margin-top: 18px;
    margin-bottom: 10px;
    color: #e5e7eb;
}

.yp-blog-single-body ul {
    padding-left: 1.25rem;
    margin-bottom: 14px;
}

.yp-blog-single-body li {
    margin-bottom: 6px;
}

.yp-blog-single-body blockquote {
    margin: 14px 0;
    padding: 10px 14px;
    border-left: 3px solid #6366f1;
    background: rgba(15, 23, 42, 0.9);
    border-radius: 8px;
    font-style: italic;
    color: #e5e7eb;
}

.yp-blog-code-block {
    margin: 16px 0;
    padding: 10px 12px;
    border-radius: 10px;
    background: #020617;
    border: 1px solid rgba(148, 163, 184, 0.6);
    color: #e5e7eb;
    font-size: 0.85rem;
    overflow-x: auto;
}

.yp-blog-code-block code {
    white-space: pre;
}

.yp-blog-single-ending {
    margin-top: 16px;
    font-weight: 500;
}

/* ===================== COMMENTS ===================== */

.yp-blog-comments-section {
    margin-top: 38px;
    padding: 22px 20px 24px;
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.45);
    box-shadow:
        0 22px 55px rgba(15, 23, 42, 0.96),
        0 0 0 1px rgba(15, 23, 42, 0.9);
}

/* Comments header */
.yp-comments-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(55, 65, 81, 0.8);
    padding-bottom: 10px;
}

.yp-comments-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #f9fafb;
    margin-bottom: 2px;
}

.yp-comments-subtitle {
    font-size: 0.86rem;
    color: #9ca3af;
    margin-bottom: 0;
}

.yp-comments-count-wrapper {
    font-size: 0.86rem;
    color: #9ca3af;
}

.yp-comments-count i {
    margin-right: 4px;
}

/* Comment list */
.yp-comments-list {
    margin: 0 0 18px;
    padding: 0;
}

.yp-comment {
    display: flex;
    gap: 12px;
    padding: 12px 10px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(55, 65, 81, 0.9);
    margin-bottom: 10px;
}

.yp-comment:last-child {
    margin-bottom: 0;
}

/* Avatar */
.yp-comment-avatar {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: linear-gradient(135deg, #4f46e5, #ec4899);
    color: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 10px 24px rgba(79, 70, 229, 0.75);
}

/* Comment main */
.yp-comment-main {
    flex: 1;
}

.yp-comment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 4px;
}

.yp-comment-author {
    font-size: 0.92rem;
    font-weight: 600;
    color: #f9fafb;
    margin-bottom: 1px;
}

.yp-comment-meta {
    font-size: 0.78rem;
    color: #9ca3af;
    margin-bottom: 0;
}

.yp-comment-meta span {
    margin-right: 10px;
}

.yp-comment-meta span:last-child {
    margin-right: 0;
}

.yp-comment-meta i {
    font-size: 0.78rem;
    margin-right: 3px;
}

/* Comment body */
.yp-comment-body p {
    font-size: 0.9rem;
    color: rgba(209, 213, 219, 0.95);
    margin-bottom: 0;
}

/* Comment form */
.yp-comment-form-wrapper {
    margin-top: 18px;
    border-top: 1px solid rgba(55, 65, 81, 0.9);
    padding-top: 16px;
}

.yp-comment-form-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #f9fafb;
    margin-bottom: 4px;
}

.yp-comment-form-note {
    font-size: 0.82rem;
    color: #9ca3af;
    margin-bottom: 10px;
}

.yp-comment-form-hint {
    font-size: 0.78rem;
    color: #9ca3af;
}

.yp-comment-form-hint i {
    font-size: 0.78rem;
    margin-right: 4px;
}

.yp-comment-input,
.yp-comment-textarea {
    background-color: rgba(15, 23, 42, 0.9);
    border-radius: 12px;
    border: 1px solid rgba(55, 65, 81, 0.95);
    color: #f9fafb;
    font-size: 0.9rem;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.9);
}

.yp-comment-input::placeholder,
.yp-comment-textarea::placeholder {
    color: #6b7280;
}

.yp-comment-input:focus,
.yp-comment-textarea:focus {
    background-color: rgba(15, 23, 42, 0.97);
    border-color: #6366f1;
    box-shadow:
        0 16px 34px rgba(79, 70, 229, 0.65),
        0 0 0 1px rgba(129, 140, 248, 0.8);
}

/* Submit button */
.yp-comment-submit-btn {
    font-size: 0.88rem;
    padding: 7px 16px;
    border-radius: 999px;
    border: 1px solid rgba(129, 140, 248, 0.8);
    background: linear-gradient(135deg, #4f46e5, #ec4899);
    color: #f9fafb;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 14px 32px rgba(79, 70, 229, 0.75);
    transition:
        box-shadow 0.2s ease,
        transform 0.2s ease,
        filter 0.2s ease;
}

.yp-comment-submit-btn i {
    font-size: 0.88rem;
}

.yp-comment-submit-btn:hover {
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 18px 46px rgba(236, 72, 153, 0.8);
    filter: brightness(1.05);
}

/* Simple invalid state (frontend only) */
.yp-comment-input.is-invalid,
.yp-comment-textarea.is-invalid {
    border-color: #f97373;
}

/* You already have ypFadeInUp from previous sections – if না থাকে, এটা যোগ করো */
/*
@keyframes ypFadeInUp {
    0% { opacity: 0; transform: translateY(22px); }
    100% { opacity: 1; transform: translateY(0); }
}
*/

/*SINGLE BLOG PAGE END*/









/*Floating facebook button start*/
.yp-facebook-float {
    position: fixed;
    left: 16px;
    bottom: 90px;
    width: 60px;
    height: 60px;
    display: block;       /* গুরুত্বপূর্ণ */
    z-index: 9999;
    text-decoration: none;
    cursor: move;
}

.yp-facebook-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(59, 89, 152, 0.35);
    animation: yp-facebook-pulse 1.8s infinite;
}

@keyframes yp-facebook-pulse {
    0%   { transform: scale(0.9); opacity: 1; }
    70%  { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(0.9); opacity: 0; }
}

/* ভেতরের আসল গোল বাটন */
.yp-facebook-inner {
    position: relative;
    width: 48px;
    height: 48px;
    margin: 6px;          /* 60 - 2*6 = 48 */
    border-radius: 50%;
    background: linear-gradient(135deg, #3b5998, #4c70ba);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.yp-facebook-inner i {
    font-size: 28px;
}

.yp-facebook-float:hover .yp-facebook-inner {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.45);
}

.yp-facebook-badge {
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    background: #3b5998;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.yp-facebook-float:hover .yp-facebook-badge {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}
/*Floating facebook button end*/