.svc-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    min-height: 100vh;
    padding: 40px 20px;
}

.svc-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 1024px) {
    .svc-wrapper {
        grid-template-columns: 2fr 1fr;
        align-items: start;
    }
}

/* Typography */
.svc-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #0f172a;
}

h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0f172a;
}

/* Seller Info */
.svc-seller {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e2e8f0;
}

.svc-seller-avatar img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.svc-seller-info {
    display: flex;
    flex-direction: column;
}

.svc-seller-name {
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
    font-size: 18px;
}

.svc-seller-name:hover {
    color: #2563eb;
}

.svc-seller-role {
    font-size: 14px;
    color: #64748b;
}

/* Gallery / Carousel */
.svc-gallery {
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
    background: #f8fafc;
    /* Changed from #000 to match page background for better contain fit without black bars */
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.svc-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.svc-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    overflow: hidden;
}

.svc-slide {
    flex: 0 0 100%;
    height: 100%;
    min-width: 100%;
    display: flex;
    /* Added to center images when using contain */
    align-items: center;
    justify-content: center;
}

.svc-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.svc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #0f172a;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    transition: all 0.2s;
    z-index: 10;
}

.svc-arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.svc-prev {
    left: 20px;
}

.svc-next {
    right: 20px;
}

/* Description */
.svc-description {
    font-family: 'inter', sans-serif;
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    margin-bottom: 40px;
    line-height: 1.7;
    color: #334155;
}

.svc-description p {
    margin-bottom: 16px;
}

.svc-includes {
    color: #161928;
    font-family: 'outfit', sans-serif;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #f1f5f9;
}

.svc-include-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #475569;
}




/* Right Sidebar Card */
.svc-card {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05);
    position: sticky;
    top: 40px;
}

.svc-card-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.svc-card-title {
    font-family: 'outfit', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #0f172a;
}

.svc-card-price {
    font-family: 'outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
}

.svc-card-features {
    margin-bottom: 32px;
}

.svc-feature {
    font-family: 'inter', sans-serif;
    margin-bottom: 12px;
    font-size: 15px;
    color: #475569;
    display: flex;
    align-items: center;
}

.svc-feature::before {
    content: "•";
    margin-right: 12px;
    color: #2563eb;
    font-size: 20px;
}

.svc-contact-btn {
    font-family: 'inter', sans-serif;
    display: block;
    width: 100%;
    background: #681fdf;
    color: #fff;
    text-align: center;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 16px;
}

.svc-contact-btn:hover {
    background: #c32ae2;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.2);
}

/* Not Found State */
.svc-not-found {
    text-align: center;
    padding: 100px 20px;
    background: #fff;
    border-radius: 20px;
}

____________________________

/* ---------------------------------------
   Gig card grid
--------------------------------------- */
.trka-container h1 {
    font-family: 'inter', sans-serif;
}

.heading-1 {
    font-family: 'outfit', sans-serif;
    padding-bottom: 5px;
}

.search-result-text {
    margin: 10px;
    font-family: 'inter', sans-serif;
}

/* Card layout */
.trka-gig-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: solid rgb(224, 224, 224) 1px;
    border-radius: 8px;
    overflow: hidden;
}

.trka-gig-card:hover {
    border: solid rgb(224, 144, 255) 1px;
}

/* Image */
.trka-gig-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

/* Content */
.trka-gig-content {
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Author block */
.trka-gig-author {
    font-family: 'inter', sans-serif;
    font-weight: 600;
    color: #616161;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trka-avatar-wrapper {
    flex-shrink: 0;
}

.trka-avatar-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.trka-author-name {
    font-family: 'inter' sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Title */
.trka-gig-title {
    font-size: 17px;
    margin: 0;
    line-height: 1.3;
    font-weight: 500;
    font-family: 'outfit', sans-serif;
}

/* Footer */
.trka-gig-footer {
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 14px;
}

.trka-gig-price {

    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.trka-hr {
    margin-top: 20px;
    border: none;
    /* remove default border */
    height: 1px;
    /* line thickness */
    background-color: #e4e4e4;
    /* gray color */
    margin: 20px 0;
    /* optional spacing above/below */
}

/* ---------------------------------------
   Gig card grid
--------------------------------------- */
.trka-gigs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* default = 3 columns */
    gap: 20px;
    background-color: #f7f8fa;
}

@media (max-width: 1024px) {
    .trka-gigs-grid {
        grid-template-columns: repeat(2, 1fr);
        /* tablets → 2 columns */
    }
}

@media (max-width: 640px) {
    .trka-gigs-grid {
        grid-template-columns: 1fr;
        /* phones → 1 column */
    }
}


.trka-search-box {
    max-width: 700px;
    margin: 20px auto 30px;
    /* centered and spacing below */
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 40px;
    padding: 6px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
    gap: 10px;
}

.trka-search-box svg {
    color: #a7a9af;
    margin-left: 16px;
    flex-shrink: 0;
}

.trka-search-box input {
    flex: 1;
    border: none;
    outline: none;
    padding: 9px 13px;
    font-family: 'inter', sans-serif;
    font-weight: 400;
    color: rgb(34, 34, 34);
    font-size: 13px;
    border-radius: 40px;
}

.trka-search-box button {
    background: linear-gradient(90deg, #7c3aed, #3b82f6);
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 13px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    flex-shrink: 0;
}

.trka-search-box button:hover {
    opacity: 0.95;
}

/* Responsive */
@media(max-width: 768px) {
    .trka-search-box {
        gap: 10px;
        border-radius: 50px;
        padding: 10px;
    }

    .trka-search-box input {
        width: 100%;
    }

    .trka-search-box button {
        padding: 9px 15px;
    }
}

/* -----------------------------
   Pagination
------------------------------ */
.trka-pagination {
    margin: 40px 0;
    text-align: center;
    font-family: 'inter', sans-serif;
}

.trka-pagination a,
.trka-pagination span {
    display: inline-block;
    margin: 0 6px;
    padding: 8px 14px;
    border-radius: 8px;
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.trka-pagination a:hover {
    background: #227aff;
    color: #fff;
}

.trka-pagination .current {
    background: linear-gradient(95deg, rgb(13, 204, 242), rgb(60, 131, 246));
    color: #fff;
    font-weight: 600;
}

.trka-pagination .prev,
.trka-pagination .next {
    font-weight: 600;
    background: #e0e0e0;
}

.trka-pagination .prev:hover,
.trka-pagination .next:hover {
    background: linear-gradient(95deg, rgb(60, 131, 246), rgb(13, 204, 242));
    color: #fff;
}

@media(max-width:768px) {

    .trka-pagination a,
    .trka-pagination span {
        padding: 8px 10px;
        margin: 0 4px;
    }
}


.gig-section {
    margin: 0 auto;
    background-color: #f7f8fa;
    padding-top: 20px;
    border-top: solid rgb(214, 214, 214) 1px;
}

_____________________________ .freelancer-gigs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.freelancer-gigs-header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.freelancer-btn-upload-gig {
    background: #7b3fe4;
    color: #fff;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.25s ease;
}

.freelancer-btn-upload-gig:hover {
    background: #622ed1;
    color: #fff;
}

.freelancer-view-all {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    text-decoration: none;
}

.freelancer-view-all:hover {
    color: #7b3fe4;
}

_________________________________________
/* ───────────────────────────────────────────────
   Contact Methods Section
─────────────────────────────────────────────── */

.contact-methods-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0 16px;
}

.contact-method-row {
    display: flex;
    margin-top: 20px;
    margin-bottom: 20px;
    flex-direction: column;
    gap: 8px;
}

/* Labels row */
.contact-row-labels {
    display: flex;
    gap: 16px;
    padding-left: 4px;
}

.mini-label {
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: #6b7280;
}

.mini-label:nth-child(2) {
    flex: 1.8;
    /* second field (value) gets more space */
}

/* Inputs + remove button row */
.inputs-wrapper {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.inputs-wrapper .gig-text-input {
    flex: 1 1 220px;
    min-width: 160px;
    font-family: 'Inter', sans-serif;
}

.inputs-wrapper .type-input {
    flex: 0 0 200px;
    /* fixed width for type → looks cleaner */
    min-width: 180px;
}

/* Remove button */
.remove-contact-btn {
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    margin-top: 10px;
    /* better alignment with inputs */
    flex-shrink: 0;
    transition: all 0.18s ease;
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.2);
}

.remove-contact-btn:hover {
    background: #dc2626;
    transform: scale(1.08);
}

/* Add button */
.add-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: #6366f1;
    color: white;
    border: none;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.98rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.15);
}

.add-contact-btn:hover {
    background: #4f46e5;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.25);
}

.add-contact-btn:disabled,
.add-contact-btn[disabled] {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Max message */
#contact-max-msg {
    color: #ef4444;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 8px;
}

/* ───────────────────────────────────────────────
   Responsive adjustments
─────────────────────────────────────────────── */

@media (max-width: 640px) {
    .inputs-wrapper {
        flex-direction: column;
        gap: 14px;
    }

    .inputs-wrapper .type-input {
        flex: 1 1 auto;
    }

    .remove-contact-btn {
        margin-top: 0;
        align-self: flex-end;
    }

    .add-contact-btn {
        width: 100%;
        padding: 14px;
    }

    .contact-row-labels {
        gap: 12px;
        font-size: 0.8rem;
    }
}

____________________________
/* ───────────────────────────────────────────────
   Contact Modal
─────────────────────────────────────────────── */

.contact-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
}

.contact-modal.show {
    opacity: 1;
    visibility: visible;
}

.contact-modal-content {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    max-width: 480px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.85);
    transition: transform 0.25s ease;
}

.contact-modal.show .contact-modal-content {
    transform: scale(1);
}

.contact-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
    border-radius: 16px 16px 0 0;
}

.contact-modal-header h3 {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    color: #111827;
}

.contact-modal-close,
.contact-modal-close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: #6b7280;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.contact-modal-close:hover,
.contact-modal-close-btn:hover {
    color: #ef4444;
}

.contact-modal-body {
    padding: 24px;
    font-family: 'Inter', sans-serif;
    color: #374151;
    line-height: 1.6;
}

.contact-methods-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.contact-methods-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.contact-methods-list li strong {
    min-width: 140px;
    font-weight: 600;
    color: #1f2937;
}

.contact-methods-list a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
}

.contact-methods-list a:hover {
    text-decoration: underline;
}

.contact-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid #e5e7eb;
    text-align: right;
    background: #f9fafb;
    border-radius: 0 0 16px 16px;
}

.contact-modal-close-btn {
    padding: 10px 24px;
    background: #6366f1;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.contact-modal-close-btn:hover {
    background: #4f46e5;
}

/* Mobile adjustments */
@media (max-width: 640px) {
    .contact-modal-content {
        width: 94%;
    }

    .contact-methods-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .contact-methods-list li strong {
        min-width: auto;
    }
}

.contact-modal {
    position: fixed !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.65);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 99999 !important;
    /* higher than most WP overlays */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
}

.contact-modal.show {
    opacity: 1 !important;
    visibility: visible !important;
}

.contact-modal-content {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: calc(100% - 40px);
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-modal.show .contact-modal-content {
    transform: scale(1) !important;
}

_________________________________
/* ───────────────────────────────────────────────
   Only delete icon styling & positioning
─────────────────────────────────────────────── */

.freelancer-gig-card-wrapper {
    position: relative;
    /* ← this is the most important line */
    /* if you already have overflow:hidden here → consider removing it or making sure icon is not cut off */
}

.freelancer-gig-delete-icon {
    /* Positioning */
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    /* above image and other content */

    /* Appearance */
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    border: 1px solid #eee;

    /* Center the SVG */
    display: flex;
    align-items: center;
    justify-content: center;

    /* Interaction */
    cursor: pointer;
    transition: all 0.18s ease;
}

.freelancer-gig-delete-icon:hover {
    background: white;
    transform: scale(1.08);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}

.freelancer-gig-delete-icon svg {
    width: 20px;
    height: 20px;
    fill: #e53e3e;
    /* red trash color */
    transition: transform 0.2s ease;
}

.freelancer-gig-delete-icon:hover svg {
    transform: scale(1.15);
}

/* Optional: make it a bit more visible on mobile */
@media (max-width: 640px) {
    .freelancer-gig-delete-icon {
        width: 34px;
        height: 34px;
        top: 10px;
        right: 10px;
    }

    .freelancer-gig-delete-icon svg {
        width: 18px;
        height: 18px;
    }
}

________________________
/* ==========================
   Footer Base
========================== */

/* Footer wrapper */
.tw-footer {
    background-color: #0f172a;
    padding: 60px 20px 20px;
    font-family: inherit;
    font-size: 14px;
    position: relative;
    /* ensures proper stacking of children */
}

.tw-footer-wrapper {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    box-sizing: border-box;
    /* ensures proper layout inside parent */
}

.tw-footer {
    background-color: #fcfdff;
    padding: 60px 20px 20px;
    font-family: inherit;
    font-size: 14px;
    position: relative;
    /* ensures proper stacking of children */
}

/* Footer Columns */
.tw-footer-col {
    flex: 1 1 220px;
    min-width: 200px;
}

/* Column Titles */
.tw-footer-col-title {
    color: #5b3bff;
    font-family: 'inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.tw-footer-branding {
    max-width: 320px;
}

/* Branding / Logo */
.tw-logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.tw-logo-wrap img {
    width: 40px;
    /* adjust if needed */
    height: auto;
    display: block;
    object-fit: contain;
}

.tw-site-title {
    font-size: 30px;
    font-weight: 600;
    font-family: 'outfit', sans-serif;
    color: #1f2937;
    text-decoration: none;
}

.tw-footer-desc {
    font-family: 'inter', sans-serif;
    font-size: 16px;
    color: #575760;
    margin-top: 10px;
}

/* Footer Navigation */
.tw-footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tw-footer-nav li {
    margin-bottom: 12px;
}

.tw-footer-nav li a {
    color: #7e7e7e;
    font-family: 'inter', sans-serif;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.tw-footer-nav li a:hover {
    color: #2de2e6;
}

/* Social Icons */
.tw-footer-socials .tw-social-icons {
    display: flex;
    gap: 12px;
    flex-direction: column;
    flex-wrap: wrap;
}

.tw-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.tw-social-link svg {
    width: 20px;
    height: 20px;
}

.tw-social-link:hover {
    transform: translateY(-2px);
}

.f-hr {
    margin-top: 20px;
    border: none;
    height: 1px;
    background-color: #e4e4e4;
}

/* Footer Bottom / Copyright */
.tw-footer-bottom {
    padding: 20px 0 10px;
    margin-top: 10px;
}

.tw-footer-bottom .tw-footer-wrapper {
    justify-content: center;
}

.tw-copyright {
    font-family: 'inter', sans-serif;
    font-size: 14px;
    color: #94a3b8;
    text-align: center;
}

/* ==========================
   Responsive Styles
========================== */
@media (max-width: 1024px) {
    .tw-footer-wrapper {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .tw-footer-col-title {
        font-size: 16px;
    }

    .tw-footer-desc,
    .tw-footer-nav li a,
    .tw-copyright {
        font-size: 13px;
    }

    .tw-social-link {
        width: 36px;
        height: 36px;
    }

    .tw-social-link svg {
        width: 18px;
        height: 18px;
    }
}

_________________________________
/* ===== Single Blog Post ===== */

/* ===============================
   SINGLE POST LAYOUT
================================= */

.tw-single {
    background: #f8fafc;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.tw-post {
    width: 100%;
    background: #ffffff;
    padding: 30px 3%;
}

/* Header */
.tw-post-header {
    margin-bottom: 30px;
}

.tw-post-title {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #0f172a;
}

.tw-post-meta {
    font-family: 'inter', sans-serif;
    font-size: 14px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* Featured Image */
.tw-post-image {
    margin: 30px 0;
}

.tw-post-image img {
    width: 100%;
    border-radius: 10px;
    height: auto;
}

/* Content */
.tw-post-content {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 26px;
    color: #333;
}

.tw-post-content h1,
.tw-post-content h2,
.tw-post-content h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: rgb(51, 51, 51);
    font-size: 29px;
    line-height: 35px;
    margin-top: 35px;
    margin-bottom: 15px;
}

.tw-post-content h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: rgb(51, 51, 51);
    font-size: 24px;
    line-height: 35px;
    margin-top: 30px;
    margin-bottom: 12px;
}

.tw-post-content p {
    margin-bottom: 20px;
}

.tw-post-content ul,
.tw-post-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.tw-post-content img {
    border-radius: 15px;
    margin: 20px 0;
    max-width: 100%;
    height: auto;
}

/* ===============================
   COMMENTS SECTION
================================= */

.tw-comments {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e5e7eb;
}

.comment-reply-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #333;
    margin-bottom: 25px;
}

.comment-form p {
    font-family: 'inter', sans-serif;
    margin-bottom: 20px;
}

.comment-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.comment-form textarea:focus,
.comment-form input:focus {
    outline: none;
    border-color: #9a45df;
    box-shadow: 0 0 0 3px rgba(154, 69, 223, 0.15);
}

/* ===== Gradient Submit Button ===== */

.comment-form .submit {
    font-family: 'inter', sans-serif;
    background: linear-gradient(135deg, #9a45df, #00cfff, #7c3aed);
    background-size: 200% 200%;
    color: #ffffff;
    border: none;
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comment-form .submit:hover {
    background-position: right center;
    transform: translateY(-2px);
}

/* Cookies checkbox */
.comment-form-cookies-consent {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #555;
}


.comment-form-cookies-consent input {
    margin-right: 8px;
}


/* ===============================
   COMMENT LIST STYLING
================================= */

.commentlist {
    list-style: none;
    padding: 0;
    margin: 40px 0 0 0;
}

.commentlist li.comment {
    margin-bottom: 30px;
}

.comment-body {
    background: #f9fafb;
    padding: 25px;
    border-radius: 12px;
    position: relative;
    border: 1px solid #e5e7eb;
    transition: 0.2s ease;
}

.comment-body:hover {
    border-color: #d1d5db;
}

/* Author + Avatar Row */
.comment-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.comment-author img.avatar {
    border-radius: 50%;
    width: 42px;
    height: 42px;
}

.comment-author .fn {
    font-weight: 600;
    font-size: 15px;
    color: #111827;
}

.comment-author .says {
    display: none;
}

/* Awaiting moderation */
.comment-awaiting-moderation {
    display: block;
    font-family: 'inter', sans-serif;
    background: #fff7ed;
    color: #c2410c;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 10px;
}

/* Comment meta (date) */
.comment-meta {
    font-family: 'inter', sans-serif;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 12px;
}

.comment-meta a {
    color: #6b7280;
    text-decoration: none;
}

.comment-meta a:hover {
    text-decoration: underline;
}

/* Comment Text */
.comment-body>p,
.comment-body {
    font-family: 'inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #374151;
}

/* Reply Button */
.reply {
    margin-top: 15px;
}

.comment-reply-link {
    font-family: 'inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    background: #eef2ff;
    color: #4f46e5;
    padding: 6px 14px;
    border-radius: 20px;
    transition: 0.2s ease;
}

.comment-reply-link:hover {
    background: #4f46e5;
    color: #ffffff;
}

/* Nested Replies */
.commentlist .children {
    list-style: none;
    margin: 20px 0 0 40px;
    padding: 0;
}


.tw-comments h3 {
    font-family: 'outfit', sans-serif;
}

/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 768px) {
    .comment-body {
        padding: 18px;
    }

    .commentlist .children {
        margin-left: 20px;
    }

    .comment-author img.avatar {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .comment-author {
        align-items: flex-start;
    }

    .comment-reply-link {
        display: inline-block;
        margin-top: 5px;
    }
}

/* ===============================
   RESPONSIVE FIXES
================================= */

/* Tablet */
@media (max-width: 1024px) {
    .tw-post {
        padding: 30px 20px;
    }

    .tw-post-title {
        font-size: 30px;
    }

    .tw-post-content {
        font-size: 16px;
        line-height: 25px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .tw-single {
        padding: 20px 0px;
    }

    .tw-post {
        padding: 30px;
    }

    .tw-post-title {
        font-size: 24px;
    }

    .tw-post-content h1,
    .tw-post-content h2,
    .tw-post-content h3 {
        font-size: 22px;
        line-height: 30px;
    }

    .tw-post-content h4 {
        font-size: 20px;
        line-height: 28px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .tw-post {
        padding: 20px 10px;
    }

    .comment-form .submit {
        width: 100%;
    }
}

___________________________________________
/* ===============================
   BLOG GRID
================================= */

.tw-blog {
    padding: 80px 5%;
    background: #f8fafc;
}

.tw-blog-header h1 {
    font-size: 36px;
    font-family: 'outfit', sans-serif;
    margin-bottom: 50px;
}
.tw-blog {
    padding: 50px 5%;
    background: #f8fafc;
}
/* Grid */
.tw-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.tw-blog-card {
    background: #ffffff;
    border-radius: 12px;
    border: solid rgb(163, 163, 163) 1px;
    overflow: hidden;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tw-blog-card:hover {
    transform: translateY(-6px);
    border: solid rgb(196, 94, 255) 1px;
}

/* Image */
.tw-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Content */
.tw-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tw-card-date {
    font-family: 'inter', sans-serif;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 10px;
}

.tw-card-title {
    font-family: 'outfit', sans-serif;
    font-size: 20px;
    margin-bottom: 10px;
}

.tw-card-title a {
    text-decoration: none;
    color: #111827;
}

.tw-card-title a:hover {
    color: #7c3aed;
}

.tw-card-excerpt,
.tw-card-excerpt p {
    font-family: 'Inter', sans-serif !important;
    font-size: 14px;
    line-height: 1.6;
    color: #4b5563;
}

.tw-read-more {
    font-family: 'inter', sans-serif;
    margin-top: 15px;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    color: #7c3aed;
}

.tw-read-more:hover {
    text-decoration: underline;
}

/* ===============================
   PAGINATION
================================= */

.tw-pagination {
    margin-top: 60px;
    text-align: center;
}

.tw-pagination .page-numbers {
    display: inline-block;
    font-family: 'inter', sans-serif;
    margin: 0 6px;
    padding: 8px 14px;
    border-radius: 6px;
    background: #ffffff;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    border: 1px solid #e5e7eb;
    transition: 0.2s ease;
}

.tw-pagination .page-numbers:hover {
    background: #7c3aed;
    color: #ffffff;
    border-color: #7c3aed;
}

.tw-pagination .current {
    background: #7c3aed;
    color: #ffffff;
    border-color: #7c3aed;
}

/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 1024px) {
    .tw-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tw-blog-grid {
        grid-template-columns: 1fr;
    }

    .tw-blog {
        padding: 50px 20px;
    }

    .tw-blog-header h1 {
        font-size: 26px;
    }
}


.heading-4 p {
    font-size: 16px;
    font-family: 'inter', sans-serif;
    line-height: 24px;
    color: #7a7a7a;
}

______________________________ .blog-header {
    margin-bottom: 40px;
}

.blog-header h1 {
    font-size: 35px;
    font-family: 'outfit', sans-serif;
    padding: 20px 0;
}

.blog-container {
    background-color: #f7f8fa;
}

______________________________

/* Join Freelancer CTA Section */
.tw-join-freelancer {
    padding: 80px 20px;
    background: #ffffff;
}

.tw-join-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.tw-join-freelancer {
    padding: 60px 20px;
    background: #ffffff;
    border-top:solid rgb(214, 214, 214) 1px;
    border-bottom:solid rgb(214, 214, 214) 1px;
}

/* Image */
.tw-join-image {
    flex: 1;
}

.tw-join-image img {
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* Content */
.tw-join-content {
    flex: 1;
}

.tw-join-content h2 {
    font-family: 'outfit', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111827;
}

.tw-join-content p {
    font-family: 'inter', sans-serif;
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Button */
.tw-join-btn {
    text-align: center;
    font-family: 'inter', sans-serif;
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #7c3aed, #06b6d4, #9333ea);
    transition: all 0.3s ease;
}

.tw-join-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
}

@media (max-width: 992px) {
    .tw-join-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .tw-join-content h2 {

        font-size: 30px;
    }

    .tw-join-image img {
        max-width: 100%;
    }
}
__________________________________
.reviews-section {
  text-align: center;
  background: #d6e1eb;
}

.reviews-section h2{
    font-size: 30px;
    font-family:'outfit', sans-serif;
}

.reviews-section {
  padding: 50px 20px 0px 20px;
  text-align: center;
  background: #edf0f3;
  border-bottom: solid rgb(214, 214, 214) 1px;
}
.review-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;

  padding: 20px;
  gap: 8px;

  width: 280px;
  height: 220px;

  background: #ffffff;

  box-shadow:
    0px 2px 4px rgba(7, 4, 146, 0.1),
    0px 24px 60px rgba(6, 47, 125, 0.05),
    0px 12px 24px rgba(27, 59, 119, 0.05);

  border-radius: 12px;
  margin:auto ;
  margin-bottom: 50px;
  text-align: left;
}

/* Optional Review Title */
.review-title {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  color: #111827;
}

/* Stars */
.review-stars img {
  width: 110px;
  height: auto;
  display: block;
}

/* Review Text */
.review-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #374151;
  margin: 0;
}

/* Author */
.review-author {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  margin: 0;
  color: #111827;
}

_______________________________________
/* Page Layout */
.tw-single {
    background: #f8fafc;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.tw-page {
    width: 100%;
    background: #ffffff;
    padding: 50px 3% 0px 3%;
}

/* Header */
.tw-page-header {
    margin-bottom: 30px;
}

.tw-page-title {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    line-height: 1.3;
    color: #0f172a;
}

/* Featured Image */
.tw-page-image {
    margin: 30px 0;
}

.tw-page-image img {
    width: 100%;
    border-radius: 10px;
    height: auto;
}

/* Content */
.tw-page-content {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 26px;
    color: #333;
}

.tw-page-content h1,
.tw-page-content h2,
.tw-page-content h3 {
    font-weight: 700;
    font-size: 29px;
    margin-top: 35px;
    margin-bottom: 15px;
}

.tw-page-content h4 {
    font-weight: 700;
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 12px;
}

.tw-page-content p {
    margin-bottom: 20px;
}

.tw-page-content ul,
.tw-page-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.tw-page-content img {
    border-radius: 15px;
    margin: 20px 0;
    max-width: 100%;
    height: auto;
}

@media (max-width: 992px) {
    .tw-page{
        padding:30px 4px;
    }
}



.gig-counter {
font-family:'inter',sans-serif;
    font-size: 13px;
    margin-top: 6px;
    color: #666;
}
.gig-counter span {
    font-weight: 600;
}