/*

Theme Name: TrueWorkio.com
Description: Freelancer market place
Author: Trueworkio.com Owner

*/



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

/* Header Container */
.header {
    margin:none;
    width: 100%;
    background-color: #ffffff;
    border-bottom: solid #e8e8e8 1px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 60px;
}

/* Left Section (Logo + Text) */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo h3{
    font-family:'outfit', sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: #111;
    text-transform: capitalize;
}


.logo img {
    height: 39px;
    width: auto;
}


/* Navigation */
.nav {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav li {
    display: inline-block;
}

.nav li a {
    text-decoration: none;
    font-size: 15px;
    font-family:'inter', sans-serif;
    color: #787d7f;
    font-weight: 500;
    transition: 0.3s ease;
}

.nav li a:hover {
    color: #6c4df6;
}

.nav .current-menu-item a{
    color:#6550be;
}

/* Join Now Button */


.nav li:last-child a:hover {
    opacity: 0.9;
}



/* Hide hamburger by default */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    background: #222222;
    border-radius: 2px;
}

/* Mobile Hamburger Menu */
@media (max-width: 768px) {

    /* Slide-in menu from left */
    .nav-container {
        position: fixed;
        top: 0;
        left: -80%;          /* hide offscreen to the left */
        width: 80%;           /* 90% of viewport width */
        height: 100vh;        /* full viewport height */
        background-color: #f4f4f6;
        flex-direction: column;
        gap: 30px;
        padding: 60px 20px;
        display: flex;
        transition: left 0.3s ease; /* animate left property */
        z-index: 9999;
    }

    /* Show menu when active */
    .nav-container.active {
        left: 0;
    }

    .nav {
        flex-direction: column;
        gap: 20px;
    }

    .nav li {
        width: 100%;
        text-align: left;
    }

    .nav li a {
        display: block;
        padding: 15px 0;
        font-size: 18px;
        font-weight: 600;
        color: #111;
    }

    /* Hamburger button */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
        z-index: 10000;
    }

    .menu-toggle span {
        height: 3px;
        width: 25px;
        background: #111;
        border-radius: 2px;
    }

    .header {
        flex-wrap: nowrap;      /* IMPORTANT */
        padding: 15px 15px;
        align-items: center;
    }
}


___________________________________________________________________________


body{
    background:#ffffff;
}

.hero{
    padding:90px 100px 120px;
    text-align:center;
    max-width:1100px;
    margin:auto;
}



.hero h1{
    font-size:64px;
    font-family: 'outfit', sans-serif;
    line-height:1.15;
    font-weight:800;
    color:#242424;
    margin-bottom:25px;
}

.hero h1 .blue {
    background: linear-gradient(90deg, rgb(124, 59, 237), rgb(60, 131, 246), rgb(13, 204, 242));
    -webkit-background-clip: text; /* for Safari & Chrome */
    -webkit-text-fill-color: transparent; /* make text itself transparent */
    background-clip: text; /* for Firefox */
}

.hero p{
    font-family:'inter', sans-serif;
    font-size:22px;
    font-weight: 400;
    color:#7a7a7a;
    max-width:760px;
    margin:0 auto 40px;
    line-height:33px;
}

.search-box{
    max-width:700px;
    margin:0 auto;
    display:flex;
    align-items:center;
    background:#ffffff;
    border-radius:40px;
    padding:6px;
    box-shadow:0 12px 25px rgba(0,0,0,0.06);
}


.search-box svg{
    color:#a7a9af;
}

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

.search-box button{
    background:linear-gradient(90deg, #7c3aed, #3b82f6);
    color:#fff;
    border:none;
    padding:14px 32px;
    font-size:16px;
    border-radius:40px;
    cursor:pointer;
    font-weight:600;
}

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

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

.hero{
    padding:14vh 24px ;
    text-align:center;
    max-width:1100px;
    margin:auto;
}


    .hero h1{
        font-size:38px;
    }

    .search-box{
        gap:10px;
        border-radius:50px;
        padding:10px;
    }



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

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




______________________________

.gig-section {
    padding: 60px 0;
    background: #f8f9fb;
}

.container {
    width: 1200px;
    max-width: 95%;
    margin: auto;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.section-header p {
    color: #777;
    margin-bottom: 40px;
}

.gig-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.gig-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

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

.gig-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gig-content {
    padding: 18px;
}

.gig-author {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 40px;
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.gig-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.gig-title a {
    text-decoration: none;
    color: #111;
}

.gig-title a:hover {
    color: #2563eb;
}

.gig-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #777;
}

.gig-price strong {
    font-size: 16px;
    color: #111;
}
______________

.register-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    box-sizing: border-box; /* ensure padding doesn’t cause scroll */
    background: linear-gradient(135deg, #f9faff, #eef2ff);
    flex-wrap: wrap;
}
.register-section {
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    width: 100%;
    background: #eef2ff; /* fallback */
    overflow: hidden;
}
.right-img {
    flex: 1;
    max-width: 50%;       /* right half */
    height: 100vh;
    overflow: hidden;
}

.right-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;    /* ensures full coverage */
    display: block;
}
.register-card {
    flex: 1;
    max-width: 50%;       /* left half */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 10px;
    padding-right: 30px;
    padding-left:30px;
    padding-bottom: 10px;
    box-sizing: border-box;
    background: linear-gradient(135deg, #f9faff, #eef2ff);
}

.register-card h2 {
    font-family: 'outfit', sans-serif;
    font-size: 30px;
    margin-bottom: 8px;
    font-weight: 700;
    background: linear-gradient(90deg, #7b5cff, #00c6ff);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-family:'inter', sans-serif;
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
}

/* Google Button */

.google-btn{
    font-family:'inter', sans-serif;
    font-weight:500;
    color:rgb(95, 95, 95);
    text-decoration: none;
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
}

.google-btn{
     font-size: 14px;
     text-decoration: none;
     font-style: none;
}

.google-btn img {
    width: 18px;
}

.google-btn:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Divider */

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 25px 0;
    gap: 10px;
}

.divider span {
    padding: 0 10px;
    color: #888;
    font-size: 13px;
    font-family: 'inter', sans-serif;
    z-index: 1;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #eee;
}



/* Form */

.register-form input {
    width: 100%;
    padding: 13px 15px;
    border-radius: 10px;
    border: 1px solid #e4e6f1;
    margin-bottom: 15px;
    font-size: 14px;
    transition: 0.3s;
}

.register-form input:focus {
    border-color: #7b5cff;
    box-shadow: 0 0 0 3px rgba(123, 92, 255, 0.15);
    outline: none;
}

.row {
    display: flex;
    gap: 10px;
}

.row input {
    width: 50%;
}

/* Terms */

.terms-text {
    font-family:'inter', sans-serif ;
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
    text-align: center;   /* center the text */
}

.terms-text a{
    color: #2b64ff;
    margin-bottom: 20px;
    text-align: center;   /* center the text */
}

/* Register Button */

.register-btn {
    font-family:'inter', sans-serif;
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(90deg, #7b5cff, #00c6ff);
    color: #fff;
    transition: 0.3s;
}

.register-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Error Box */

.error-box , .gig-error-box {
    font-family:'inter', sans-serif;
    background: #fff2f2;
    border-left: 4px solid #ff4d4f;
    padding: 12px;
    margin-bottom: 20px;
    text-align: left;
    font-size: 15px;
    font-weight:500;
    color: #c62828;
}

.success-box{
    font-family:'inter', sans-serif;
    background: #eeffe6;
    border-left: 4px solid #8dff4b;
    padding: 12px;
    margin-bottom: 20px;
    text-align: left;
    font-size: 15px;
    font-weight:500;
    color: #21c500;
}

@media (max-width: 900px) {
    .register-section {
        flex-direction: column;
    }

    .right-img {
        display: none;
    }

    .register-card {
        max-width: 100%;
        padding: 30px;
    }
}
________________________________________
/* ===============================
   Profile Full Page Wrapper
================================= */

.profile-full-page {
  background-color: #f8fafc;
  min-height: 100vh;
  padding-bottom: 60px;
  font-family: 'Outfit', sans-serif;
  color: #0f172a;
}


/* ===============================
   Header Section
================================= */

.profile-header {
  background: linear-gradient(135deg, #f5f3ff 0%, #eff6ff 100%);
  padding: 50px 20px 40px;
  border-bottom: 1px solid #e2e8f0;
  font-family: 'inter', sans-serif;
}

.profile-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}


/* Avatar */

.profile-avatar-large {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
}

.profile-avatar-large img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffffff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}


/* Identity */

.profile-identity {
  flex: 1;
  min-width: 250px;
}

.profile-fullname {
    font-family: 'outfit', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #0f172a;
}

.profile-username {
font-family: 'outfit', sans-serif;
  font-size: 15px;
  color: #64748b;
  margin: 0 0 10px;
  font-weight: 500;
}

.profile-quick-meta {
  font-size: 13px;
  color: #94a3b8;
}


/* Action Buttons */

.profile-actions {
  display: flex;
  align-items: center;
}


/* Gradient Button */

.btn-gradient {
  background: linear-gradient(135deg, #6366f1, #3b82f6);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 0.75rem;
  font-weight: 600;
  font-family: 'inter', sans-serif;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(99, 102, 241, 0.25);
}


/* Outline Gradient Button */

.btn-outline-gradient {
	display:none;
}

.btn-outline-gradient:hover {
  background: #6366f1;
  color: #ffffff;
}


/* ===============================
   Main Content Area
================================= */

.profile-main-content {
  max-width: 900px;
  margin: 50px auto 0;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}


/* Card Containers */

.profile-bio-container,
.profile-extra-section {
  background: #ffffff;
  padding: 32px;
  border-radius: 1rem;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05),
              0 0 3px rgba(0, 0, 0, 0.02);
}


/* Section Titles */

.section-title {
  font-size: 20px;
  font-family: 'outfit', sans-serif;
  font-weight: 700;
  margin: 0 0 20px;
  color: #0f172a;
}


/* Bio Text */

.bio-text {
    font-family: 'inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #334155;
}


/* Placeholder */

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


/* ===============================
   Responsive
================================= */

@media (max-width: 768px) {

  .profile-header-inner {
    flex-direction: column;
    text-align: center;
  }

  .profile-actions {
    margin-top: 15px;
  }

  .profile-main-content {
    margin-top: 40px;
  }

}
____________________

/* Page Wrapper */
.edit-profile-page {
    background: #ffffff;
    min-height: 100vh;
}

/* Header Section */
.edit-header {
    background: linear-gradient(135deg, #f0e8ff 0%, #e6f0ff 100%);
    padding: 90px 5% 70px;
    text-align: center;
}

.edit-header h1 {
    font-family: 'outfit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px;
}

.edit-header .subtitle {
    font-family: 'inter', sans-serif;
    font-size: 1.2rem;
    color: #64748b;
}

/* Alerts */
.success-alert,
.error-alert {
    max-width: 900px;
    margin: 30px auto 0;
    padding: 18px 25px;
    border-radius: 12px;
    font-family: 'inter', sans-serif;
    font-weight: 500;
}

.success-alert {
    background: #ecfdf5;
    color: #065f46;
    border-left: 5px solid #10b981;
}

.error-alert {
    background: #fef2f2;
    color: #991b1b;
    border-left: 5px solid #ef4444;
}

/* Form Container */
.edit-form {
    max-width: 900px;
    margin: 60px auto;
    padding: 50px;
    background: #fafafa;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    font-family: 'inter', sans-serif;
}

/* Avatar Upload Section */
.avatar-upload-section {
    text-align: center;
    margin-bottom: 50px;
}

.avatar-label {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #1e293b;
}

.avatar-upload-wrapper {
    display: inline-block;
    position: relative;
    cursor: pointer;
}

.avatar-preview-container {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #ffffff;
    box-shadow: 0 15px 40px rgba(111,66,193,0.25);
    position: relative;
    background: #f3f4f6;
}

.avatar-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #94a3b8;
    font-weight: 500;
}

.camera-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s ease;
}

.avatar-upload-wrapper:hover .camera-overlay {
    opacity: 1;
}

.camera-icon {
    font-size: 1.6rem;
    color: #ffffff;
}

.hidden-file-input {
    display: none;
}

.hint {
    font-size: 0.95rem;
    color: #64748b;
    margin-top: 12px;
}

/* Form Layout */
.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e293b;
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border-radius: 12px;
    border: 1.5px solid #e5e7eb;
    font-size: 1rem;
    transition: 0.3s ease;
    font-family: 'inter', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124,58,237,0.15);
}

/* Buttons */
.form-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-save {
    padding: 14px 44px;
    background: linear-gradient(135deg, #7c3aed, #3b82f6, #06b6d4);
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-save:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(123,74,226,0.35);
}

.btn-cancel {
    padding: 14px 44px;
    background: transparent;
    border: 2.5px solid;
    border-image: linear-gradient(135deg, #7c3aed, #3b82f6) 1;
    color: #7c3aed;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s ease;
    display: inline-block;
}

.btn-cancel:hover {
    background: linear-gradient(135deg, #7c3aed, #3b82f6);
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .edit-form {
        padding: 35px 20px;
        margin: 40px 15px;
    }

    .form-row {
        flex-direction: column;
    }

    .edit-header h1 {
        font-size: 2.4rem;
    }
}


.camera-icon img {
    fill:gray;
    width: 40px;
    height: 40px;
    object-fit: contain;
}
____________________________________________________________________

