@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap");

:root {
  --primary-color: #00bfff;
  --primary-dark: #009acd;
  --text-light: #bbb;
  --bg-dark: #000;
  --bg-card: #1e1e1e;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  background-color: var(--bg-dark);
  color: #fff;
  line-height: 1.6;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
}

nav.scrolled {
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.logo span {
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Header */
header {
  text-align: center;
  padding: 120px 20px;
  background: linear-gradient(135deg, #000, #222);
  position: relative;
  overflow: hidden;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 191, 255, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 0;
}

.page-header {
  text-align: center;
  padding: 100px 20px 60px;
  background: linear-gradient(135deg, #000, #222);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 191, 255, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 0;
}

.header-content {
  position: relative;
  z-index: 1;
}

header h1 {
  font-size: clamp(3rem, 10vw, 5rem);
  font-weight: 700;
  margin: 0;
  color: #fff;
  animation: fadeIn 2s ease-in-out;
  letter-spacing: 2px;
}

.page-header h1 {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 700;
  margin: 0;
  color: #fff;
  animation: fadeIn 2s ease-in-out;
  letter-spacing: 2px;
}

header p {
  font-size: clamp(1rem, 3vw, 1.2rem);
  font-weight: 400;
  margin: 15px 0 0;
  color: var(--text-light);
  animation: fadeIn 3s ease-in-out;
}

.header-content::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 3px;
  background: var(--primary-color);
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  animation: underlineGrow 2s ease-in-out;
}

/* Sections */
.section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 20px;
  animation: fadeIn 2s ease-in-out;
}

.section h2 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 30px;
  color: #fff;
  text-align: center;
}

.section p {
  font-size: 1.1rem;
  color: var(--text-light);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

/* Home Page */
.home-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.home-card {
  background: rgba(30, 30, 30, 0.7);
  padding: 30px;
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
  transition: all 0.3s ease;
  text-decoration: none;
  color: #fff;
  display: block;
}

.home-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 191, 255, 0.1);
  background: rgba(30, 30, 30, 0.9);
}

.home-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.home-card p {
  font-size: 1rem;
  color: var(--text-light);
  text-align: left;
  margin: 0;
}

/* About Page */
.about-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}

.about-image {
  display: flex;
  justify-content: center;
}

.image-container {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 191, 255, 0.2);
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text p {
  text-align: left;
  margin-bottom: 20px;
}

.about-details {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.detail-item {
  background: rgba(30, 30, 30, 0.7);
  padding: 20px;
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
}

.detail-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.detail-item p {
  font-size: 1rem;
  margin: 0;
}

/* Skills Page */
.skills-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.skills-category {
  background: rgba(30, 30, 30, 0.7);
  padding: 25px;
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
  transition: all 0.3s ease;
}

.skills-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 191, 255, 0.1);
  background: rgba(30, 30, 30, 0.9);
}

.skills-category h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-align: center;
}

.skills-list {
  list-style-type: none;
  padding: 0;
}

.skills-list li {
  margin: 10px 0;
  font-size: 1rem;
  color: var(--text-light);
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.skills-list li:last-child {
  border-bottom: none;
}

.skills-list li:hover {
  color: #fff;
  transform: translateX(5px);
}

.skills-proficiency {
  margin-top: 50px;
}

.skills-proficiency h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-align: center;
}

.proficiency-item {
  margin-bottom: 20px;
}

.proficiency-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.proficiency-bar {
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  overflow: hidden;
}

.proficiency-progress {
  height: 100%;
  background: var(--primary-color);
  border-radius: 5px;
  transition: width 1.5s ease-in-out;
}

/* Timeline Page */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
  list-style-type: none;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-color);
  left: 50%;
  margin-left: -1px;
}

.timeline-item {
  padding: 25px 30px;
  position: relative;
  background: var(--bg-card);
  border-radius: 8px;
  margin: 30px 0;
  width: 45%;
  animation: fadeInUp 2s ease-in-out;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.timeline-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 191, 255, 0.1);
}

.timeline-item::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background: var(--primary-color);
  border: 4px solid var(--bg-dark);
  top: 20px;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.3s ease;
}

.timeline-item:hover::after {
  background: #fff;
  border-color: var(--primary-color);
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 55%;
}

.timeline-item:nth-child(even)::after {
  left: -10px;
}

.timeline-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.timeline-item p {
  font-size: 1rem;
  color: var(--text-light);
  text-align: left;
  margin: 0;
}

.timeline-date {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--primary-color);
  color: #000;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
}

.timeline-item:nth-child(even) .timeline-date {
  left: 20px;
  right: auto;
}

.education-section {
  margin-top: 80px;
}

.education-section h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-align: center;
}

.education-item {
  background: var(--bg-card);
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 3px solid var(--primary-color);
  transition: all 0.3s ease;
}

.education-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 191, 255, 0.1);
}

.education-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
}

.education-item p {
  font-size: 1rem;
  color: var(--text-light);
  text-align: left;
  margin-bottom: 10px;
}

.education-item p:last-child {
  margin-bottom: 0;
}

/* Services Page */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.service-card {
  background: rgba(30, 30, 30, 0.7);
  padding: 30px;
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 191, 255, 0.1);
  background: rgba(30, 30, 30, 0.9);
}

.service-icon {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #fff;
  text-align: center;
}

.service-card p {
  font-size: 1rem;
  color: var(--text-light);
  text-align: center;
  margin: 0;
}

.service-process {
  margin-top: 50px;
}

.service-process h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-align: center;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.process-step {
  background: rgba(30, 30, 30, 0.7);
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 191, 255, 0.1);
  background: rgba(30, 30, 30, 0.9);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 15px;
}

.process-step h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
}

.process-step p {
  font-size: 1rem;
  color: var(--text-light);
  margin: 0;
}

/* Achievements Page */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.achievement-card {
  background: rgba(30, 30, 30, 0.7);
  padding: 30px;
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 191, 255, 0.1);
  background: rgba(30, 30, 30, 0.9);
}

.achievement-icon {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.achievement-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #fff;
  text-align: center;
}

.achievement-card p {
  font-size: 1rem;
  color: var(--text-light);
  text-align: center;
  margin: 0;
}

.projects-section {
  margin-top: 50px;
}

.projects-section h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-align: center;
}

.project-card {
  background: var(--bg-card);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 191, 255, 0.1);
}

.project-image img {
  width: 100%;
  height: auto;
  display: block;
}

.project-content {
  padding: 25px;
}

.project-content h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #fff;
}

.project-content p {
  font-size: 1rem;
  color: var(--text-light);
  text-align: left;
  margin-bottom: 20px;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.project-tech span {
  background: rgba(0, 191, 255, 0.1);
  color: var(--primary-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
}

/* Contact Page */
.contact-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 20px;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: left;
}

.contact-info > p {
  text-align: left;
  margin-bottom: 30px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  background: rgba(30, 30, 30, 0.7);
  padding: 20px;
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 191, 255, 0.1);
  background: rgba(30, 30, 30, 0.9);
}

.contact-item h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.contact-item p {
  font-size: 1rem;
  color: var(--text-light);
  text-align: left;
  margin: 0;
}

.contact-item a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-item a:hover {
  color: #fff;
  text-decoration: underline;
}

.contact-form-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: left;
}

.contact-form {
  background: rgba(30, 30, 30, 0.7);
  padding: 30px;
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: #fff;
}

.form-group input,
.form-group textarea {
  padding: 12px 15px;
  border: 1px solid rgba(0, 191, 255, 0.3);
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(0, 191, 255, 0.2);
  background: rgba(0, 0, 0, 0.7);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.submit-btn {
  background: var(--primary-color);
  color: #000;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 191, 255, 0.3);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-message {
  margin-top: 15px;
  padding: 12px 15px;
  border-radius: 5px;
  font-size: 1rem;
  text-align: center;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
  border: 1px solid #4caf50;
}

.form-message.error {
  display: block;
  background: rgba(244, 67, 54, 0.2);
  color: #f44336;
  border: 1px solid #f44336;
}

/* Footer */
footer {
  text-align: center;
  padding: 30px 0;
  background: #111;
  color: #666;
  border-top: 1px solid #222;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.social-icons a {
  text-decoration: none;
  border: 0;
  width: 40px;
  height: 40px;
  padding: 8px;
  margin: 5px;
  color: var(--primary-color);
  border-radius: 50%;
  background-color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--primary-color);
  color: #000;
  transform: translateY(-3px);
}

.social-icons svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--primary-color);
  border: none;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 191, 255, 0.2);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--primary-color);
  color: #000;
  transform: translateY(-3px);
}

/* Animations */
.hover-underline-animation {
  display: inline-block;
  position: relative;
  color: #fff;
}

.hover-underline-animation::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.hover-underline-animation:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes listItemFadeIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes underlineGrow {
  from {
    width: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  to {
    width: 100px;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    width: calc(100% - 60px);
    left: 60px !important;
  }

  .timeline-item::after {
    left: -10px !important;
    right: auto !important;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    clip-path: circle(0% at 100% 0);
    transition: all 0.5s ease-out;
  }

  .nav-links.active {
    clip-path: circle(150% at 100% 0);
  }

  .nav-links li {
    margin: 15px 0;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-image {
    margin-bottom: 30px;
  }

  .services-grid,
  .achievements-grid,
  .skills-container,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-form-wrapper h2,
  .contact-info h2 {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .image-container {
    width: 200px;
    height: 200px;
  }

  .section {
    padding: 10px;
  }

  header,
  .page-header {
    padding: 100px 10px 60px;
  }

  .timeline-item {
    padding: 15px 20px;
  }
}

/* Navigation CTA Buttons */
.btn-login-nav,
.btn-signup-nav {
  padding: 8px 16px !important;
  border-radius: 5px !important;
  font-size: 0.9rem !important;
}

.btn-login-nav {
  color: var(--primary-color) !important;
  border: 1px solid var(--primary-color) !important;
}

.btn-signup-nav {
  background: var(--primary-color) !important;
  color: #000 !important;
}

/* Header CTA Buttons */
.header-cta {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary-color);
  color: #000;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 191, 255, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: #000;
}

/* Featured Section */
.featured-section {
  margin-top: 60px;
}

/* Freelancer Cards */
.freelancers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.freelancer-card {
  background: rgba(30, 30, 30, 0.7);
  padding: 25px;
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.freelancer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 191, 255, 0.1);
  background: rgba(30, 30, 30, 0.9);
}

.freelancer-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 15px;
}

.freelancer-header h3 {
  font-size: 1.3rem;
  color: #fff;
  margin: 0;
}

.rating {
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: 600;
}

.freelancer-title {
  font-size: 0.95rem;
  color: var(--primary-color);
  margin: 0 0 10px 0;
  font-weight: 500;
}

.freelancer-bio {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0 0 15px 0;
  flex-grow: 1;
}

.freelancer-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.skill-tag {
  background: rgba(0, 191, 255, 0.1);
  color: var(--primary-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
}

.freelancer-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hourly-rate {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
}

.btn-view-profile {
  background: var(--primary-color);
  color: #000;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-view-profile:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* How It Works Section */
.how-it-works {
  background: rgba(30, 30, 30, 0.5);
  border-radius: 8px;
  padding: 40px 20px;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.step-card {
  background: rgba(30, 30, 30, 0.7);
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 191, 255, 0.1);
}

.step-card .step-number {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 auto 15px;
}

.step-card h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
}

/* Services Showcase */
.services-showcase {
  margin-top: 60px;
}

.services-showcase .services-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.services-showcase .service-card {
  background: rgba(30, 30, 30, 0.7);
  padding: 30px;
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
  text-align: center;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.1), rgba(118, 75, 162, 0.1));
  border-radius: 8px;
  padding: 50px 20px;
  text-align: center;
  margin-top: 60px;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Browse Section */
.browse-section {
  margin-top: 40px;
}

.browse-container {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 30px;
}

.filters-sidebar {
  background: rgba(30, 30, 30, 0.7);
  padding: 25px;
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.filters-sidebar h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 20px;
}

.filter-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.filter-group label {
  font-size: 0.95rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 8px;
}

.filter-group select {
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 1px solid rgba(0, 191, 255, 0.3);
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(0, 191, 255, 0.2);
}

.filter-group select option {
  background: #1e1e1e;
  color: #fff;
}

.freelancers-main {
  min-height: 400px;
}

/* Profile Section */
.profile-section {
  margin-top: 40px;
}

.profile-card {
  background: rgba(30, 30, 30, 0.7);
  padding: 40px;
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
  max-width: 800px;
  margin: 0 auto;
}

.profile-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 20px;
}

.profile-header h1 {
  font-size: 2.5rem;
  color: #fff;
  margin: 0;
}

.profile-rating {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 600;
}

.profile-title {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin: 0 0 15px 0;
}

.profile-bio {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0 0 30px 0;
}

.profile-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.detail-box {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 5px;
  border-left: 2px solid var(--primary-color);
}

.detail-box h3 {
  font-size: 0.9rem;
  color: var(--primary-color);
  margin: 0 0 10px 0;
  text-transform: uppercase;
  font-weight: 600;
}

.detail-box p {
  font-size: 1.3rem;
  color: #fff;
  margin: 0;
  font-weight: 600;
}

.profile-skills {
  margin-bottom: 30px;
}

.profile-skills h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 15px;
}

.profile-skills .skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.profile-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.profile-actions .btn-primary,
.profile-actions .btn-secondary {
  flex: 1;
  min-width: 150px;
  text-align: center;
}

/* Post Job Section */
.post-job-section {
  margin-top: 40px;
}

.post-job-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.job-form-wrapper {
  background: rgba(30, 30, 30, 0.7);
  padding: 30px;
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
}

.job-form-wrapper h2 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 25px;
}

.job-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 1px solid rgba(0, 191, 255, 0.3);
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(0, 191, 255, 0.2);
  background: rgba(0, 0, 0, 0.7);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select option {
  background: #1e1e1e;
  color: #fff;
}

.job-preview {
  background: rgba(30, 30, 30, 0.7);
  padding: 30px;
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.job-preview h2 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 20px;
}

.preview-card {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 5px;
}

.preview-card h3 {
  font-size: 1.3rem;
  color: #fff;
  margin: 0 0 10px 0;
}

.preview-category {
  font-size: 0.9rem;
  color: var(--primary-color);
  margin: 0 0 15px 0;
  font-weight: 600;
}

.preview-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0 0 15px 0;
  line-height: 1.6;
}

.preview-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.preview-item .label {
  color: var(--primary-color);
  font-weight: 600;
}

.preview-item .value {
  color: #fff;
}

.preview-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Jobs Grid */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.job-card {
  background: rgba(30, 30, 30, 0.7);
  padding: 25px;
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 191, 255, 0.1);
  background: rgba(30, 30, 30, 0.9);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 15px;
  gap: 10px;
}

.job-header h3 {
  font-size: 1.2rem;
  color: #fff;
  margin: 0;
  flex: 1;
}

.job-status {
  background: rgba(0, 191, 255, 0.2);
  color: var(--primary-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: capitalize;
  white-space: nowrap;
}

.job-client {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0 0 8px 0;
}

.job-category {
  font-size: 0.9rem;
  color: var(--primary-color);
  margin: 0 0 12px 0;
  font-weight: 600;
}

.job-description {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0 0 15px 0;
  line-height: 1.6;
  flex-grow: 1;
}

.job-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.job-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.job-details .detail {
  display: flex;
  flex-direction: column;
}

.job-details .label {
  font-size: 0.8rem;
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.job-details .value {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 600;
}

.btn-view-job {
  background: var(--primary-color);
  color: #000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  transition: all 0.3s ease;
  display: block;
}

.btn-view-job:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Job Detail Section */
.job-detail-section {
  margin-top: 40px;
}

.job-detail-card {
  background: rgba(30, 30, 30, 0.7);
  padding: 40px;
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
  max-width: 900px;
  margin: 0 auto;
}

.job-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 30px;
  gap: 20px;
  flex-wrap: wrap;
}

.job-detail-header h1 {
  font-size: 2.5rem;
  color: #fff;
  margin: 0;
  flex: 1;
}

.job-detail-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-item {
  display: flex;
  flex-direction: column;
}

.meta-item .label {
  font-size: 0.85rem;
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.meta-item .value {
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
}

.job-detail-description {
  margin-bottom: 30px;
}

.job-detail-description h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 15px;
}

.job-detail-description p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
}

.job-detail-skills {
  margin-bottom: 30px;
}

.job-detail-skills h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 15px;
}

.job-detail-skills .skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.job-detail-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.job-detail-actions a,
.job-detail-actions button {
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  flex: 1;
  min-width: 150px;
  text-align: center;
}

/* Manage Applications Section */
.manage-section {
  margin-top: 40px;
}

.manage-container {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 30px;
}

.jobs-list-sidebar {
  background: rgba(30, 30, 30, 0.7);
  padding: 25px;
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.jobs-list-sidebar h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 20px;
}

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.job-list-item {
  background: rgba(0, 0, 0, 0.3);
  padding: 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-left: 2px solid transparent;
}

.job-list-item:hover {
  background: rgba(0, 191, 255, 0.1);
  border-left-color: var(--primary-color);
}

.job-list-item.active {
  background: rgba(0, 191, 255, 0.2);
  border-left-color: var(--primary-color);
}

.job-list-item h4 {
  font-size: 0.95rem;
  color: #fff;
  margin: 0 0 8px 0;
}

.app-count {
  font-size: 0.85rem;
  color: var(--primary-color);
  margin: 0;
  font-weight: 600;
}

.applications-main {
  min-height: 400px;
}

.applications-container {
  background: rgba(30, 30, 30, 0.7);
  padding: 30px;
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
}

.applications-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.applications-header h2 {
  font-size: 1.8rem;
  color: #fff;
  margin: 0 0 10px 0;
}

.applications-header p {
  font-size: 1rem;
  color: var(--text-light);
  margin: 0;
}

.applications-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.application-card {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 5px;
  border-left: 2px solid var(--primary-color);
  transition: all 0.3s ease;
}

.application-card:hover {
  background: rgba(0, 0, 0, 0.5);
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap: 15px;
}

.app-header h3 {
  font-size: 1.1rem;
  color: #fff;
  margin: 0;
}

.app-status {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: capitalize;
  white-space: nowrap;
}

.app-status.pending {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
}

.app-status.hired {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
}

.app-status.rejected {
  background: rgba(244, 67, 54, 0.2);
  color: #f44336;
}

.app-date {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0 0 15px 0;
}

.app-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.app-actions button {
  padding: 8px 16px;
  border-radius: 5px;
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.app-actions .btn-primary {
  background: var(--primary-color);
  color: #000;
}

.app-actions .btn-primary:hover {
  background: var(--primary-dark);
}

.app-actions .btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.app-actions .btn-secondary:hover:not(:disabled) {
  background: var(--primary-color);
  color: #000;
}

.app-actions button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* My Applications Section */
.my-applications-section {
  margin-top: 40px;
}

.applications-filter {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  background: rgba(30, 30, 30, 0.7);
  color: var(--text-light);
  border: 1px solid rgba(0, 191, 255, 0.3);
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.filter-btn.active {
  background: var(--primary-color);
  color: #000;
  border-color: var(--primary-color);
}

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

.my-application-card {
  background: rgba(30, 30, 30, 0.7);
  padding: 25px;
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.my-application-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 191, 255, 0.1);
  background: rgba(30, 30, 30, 0.9);
}

.app-card-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 15px;
  gap: 10px;
}

.app-card-header h3 {
  font-size: 1.2rem;
  color: #fff;
  margin: 0;
  flex: 1;
}

.app-client {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0 0 8px 0;
}

.app-category {
  font-size: 0.9rem;
  color: var(--primary-color);
  margin: 0 0 15px 0;
  font-weight: 600;
}

.app-card-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.app-card-details .detail {
  display: flex;
  flex-direction: column;
}

.app-card-details .label {
  font-size: 0.8rem;
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.app-card-details .value {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 600;
}

.app-success-message {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
  padding: 12px;
  border-radius: 5px;
  border-left: 2px solid #4caf50;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}

.app-rejected-message {
  background: rgba(244, 67, 54, 0.2);
  color: #f44336;
  padding: 12px;
  border-radius: 5px;
  border-left: 2px solid #f44336;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}

.app-pending-message {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  padding: 12px;
  border-radius: 5px;
  border-left: 2px solid #ffc107;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}

/* Hired Freelancers Section */
.hired-section {
  margin-top: 40px;
}

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

.hired-card {
  background: rgba(30, 30, 30, 0.7);
  padding: 25px;
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.hired-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 191, 255, 0.1);
  background: rgba(30, 30, 30, 0.9);
}

.hired-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 15px;
  gap: 10px;
}

.hired-header h3 {
  font-size: 1.2rem;
  color: #fff;
  margin: 0;
  flex: 1;
}

.hired-badge {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.hired-title {
  font-size: 0.95rem;
  color: var(--primary-color);
  margin: 0 0 8px 0;
  font-weight: 500;
}

.hired-job {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0 0 8px 0;
}

.hired-rate {
  font-size: 1.1rem;
  color: #fff;
  margin: 0 0 15px 0;
  font-weight: 700;
}

.hired-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
  flex-grow: 1;
}

.hired-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hired-actions button {
  flex: 1;
  min-width: 120px;
  padding: 10px 15px;
  border-radius: 5px;
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hired-actions .btn-primary {
  background: var(--primary-color);
  color: #000;
}

.hired-actions .btn-primary:hover {
  background: var(--primary-dark);
}

.hired-actions .btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.hired-actions .btn-secondary:hover {
  background: var(--primary-color);
  color: #000;
}

/* Dashboard Section */
.dashboard-section {
  margin-top: 40px;
}

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

.dashboard-header h1 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 10px;
}

.dashboard-header p {
  font-size: 1.1rem;
  color: var(--text-light);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card {
  background: rgba(30, 30, 30, 0.7);
  padding: 25px;
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 191, 255, 0.1);
  background: rgba(30, 30, 30, 0.9);
}

.stat-icon {
  font-size: 2.5rem;
  min-width: 60px;
  text-align: center;
}

.stat-content h3 {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0 0 8px 0;
  text-transform: uppercase;
  font-weight: 600;
}

.stat-number {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin: 0;
  font-weight: 700;
}

/* Dashboard Section Box */
.dashboard-section-box {
  background: rgba(30, 30, 30, 0.7);
  padding: 30px;
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
  margin-bottom: 30px;
}

.dashboard-section-box h2 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Quick Actions */
.quick-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.action-btn {
  background: rgba(0, 191, 255, 0.1);
  border: 1px solid rgba(0, 191, 255, 0.3);
  padding: 20px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-align: center;
}

.action-btn:hover {
  background: rgba(0, 191, 255, 0.2);
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.action-icon {
  font-size: 2rem;
}

.action-btn span:last-child {
  font-size: 0.95rem;
  font-weight: 600;
}

/* Activity List */
.activity-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.activity-item {
  background: rgba(0, 0, 0, 0.3);
  padding: 15px;
  border-radius: 5px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  border-left: 2px solid var(--primary-color);
}

.activity-icon {
  font-size: 1.5rem;
  min-width: 30px;
  text-align: center;
}

.activity-content p {
  font-size: 0.95rem;
  color: #fff;
  margin: 0 0 8px 0;
}

.activity-date {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Profile Summary */
.profile-summary {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.summary-item {
  background: rgba(0, 0, 0, 0.3);
  padding: 15px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
}

.summary-item .label {
  font-size: 0.85rem;
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.summary-item .value {
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
}

.summary-skills {
  background: rgba(0, 0, 0, 0.3);
  padding: 15px;
  border-radius: 5px;
}

.summary-skills h4 {
  font-size: 0.95rem;
  color: var(--primary-color);
  margin: 0 0 12px 0;
  font-weight: 600;
}

.summary-skills .skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Jobs List Dashboard */
.jobs-list-dashboard {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.job-item-dashboard {
  background: rgba(0, 0, 0, 0.3);
  padding: 15px;
  border-radius: 5px;
  border-left: 2px solid var(--primary-color);
  transition: all 0.3s ease;
}

.job-item-dashboard:hover {
  background: rgba(0, 0, 0, 0.5);
}

.job-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
}

.job-item-header h4 {
  font-size: 1rem;
  color: #fff;
  margin: 0;
  flex: 1;
}

.job-item-header .job-status {
  background: rgba(0, 191, 255, 0.2);
  color: var(--primary-color);
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: capitalize;
  white-space: nowrap;
}

.job-item-meta {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0 0 12px 0;
  display: flex;
  gap: 15px;
}

.btn-small {
  background: var(--primary-color);
  color: #000;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-small:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Applications List Dashboard */
.applications-list-dashboard {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.app-item-dashboard {
  background: rgba(0, 0, 0, 0.3);
  padding: 15px;
  border-radius: 5px;
  border-left: 2px solid var(--primary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.app-item-dashboard:hover {
  background: rgba(0, 0, 0, 0.5);
}

.app-item-content p {
  font-size: 0.95rem;
  color: #fff;
  margin: 0 0 8px 0;
}

.app-item-date {
  font-size: 0.85rem;
  color: var(--text-light);
}

.app-item-dashboard .app-status {
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: capitalize;
  white-space: nowrap;
}

.app-status.pending {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
}

.app-status.hired {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
}

.app-status.rejected {
  background: rgba(244, 67, 54, 0.2);
  color: #f44336;
}

/* Messages Section */
.messages-section {
  margin-top: 40px;
}

.messages-container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 20px;
  height: 600px;
  background: rgba(30, 30, 30, 0.7);
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
  overflow: hidden;
}

.conversations-sidebar {
  background: rgba(0, 0, 0, 0.3);
  border-right: 1px solid rgba(0, 191, 255, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.conversations-header {
  padding: 20px;
  border-bottom: 1px solid rgba(0, 191, 255, 0.1);
}

.conversations-header h2 {
  font-size: 1.3rem;
  color: #fff;
  margin: 0 0 15px 0;
}

.search-input {
  width: 100%;
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 1px solid rgba(0, 191, 255, 0.3);
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(0, 191, 255, 0.2);
}

.conversations-list {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
}

.conversation-item {
  background: rgba(0, 0, 0, 0.2);
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-left: 2px solid transparent;
  position: relative;
}

.conversation-item:hover {
  background: rgba(0, 191, 255, 0.1);
  border-left-color: var(--primary-color);
}

.conversation-item.active {
  background: rgba(0, 191, 255, 0.2);
  border-left-color: var(--primary-color);
}

.conversation-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.conversation-header h4 {
  font-size: 0.95rem;
  color: #fff;
  margin: 0;
}

.conversation-time {
  font-size: 0.8rem;
  color: var(--text-light);
}

.conversation-preview {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.unread-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--primary-color);
  color: #000;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.chat-main {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.chat-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.empty-chat {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}

.chat-header {
  padding: 20px;
  border-bottom: 1px solid rgba(0, 191, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
}

.chat-header h3 {
  font-size: 1.1rem;
  color: #fff;
  margin: 0 0 5px 0;
}

.chat-status {
  font-size: 0.85rem;
  color: #4caf50;
  margin: 0;
}

.messages-list {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.message {
  display: flex;
  flex-direction: column;
  max-width: 70%;
  animation: fadeIn 0.3s ease;
}

.message.sent {
  align-self: flex-end;
  align-items: flex-end;
}

.message.received {
  align-self: flex-start;
  align-items: flex-start;
}

.message p {
  background: rgba(0, 191, 255, 0.2);
  color: #fff;
  padding: 12px 15px;
  border-radius: 8px;
  margin: 0;
  word-wrap: break-word;
}

.message.sent p {
  background: var(--primary-color);
  color: #000;
}

.message-time {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 5px;
}

.message-input-area {
  padding: 15px;
  border-top: 1px solid rgba(0, 191, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  gap: 10px;
}

.message-input {
  flex: 1;
  padding: 10px 15px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 1px solid rgba(0, 191, 255, 0.3);
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.message-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(0, 191, 255, 0.2);
}

.btn-send {
  background: var(--primary-color);
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-send:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Notifications Section */
.notifications-section {
  margin-top: 40px;
}

.notifications-header {
  margin-bottom: 30px;
}

.notifications-header h1 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 20px;
}

.notifications-controls {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.notifications-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.notification-item {
  background: rgba(30, 30, 30, 0.7);
  padding: 20px;
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
  display: flex;
  gap: 15px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.notification-item:hover {
  box-shadow: 0 5px 15px rgba(0, 191, 255, 0.1);
}

.notification-item.unread {
  background: rgba(0, 191, 255, 0.1);
  border-left-color: var(--primary-color);
}

.notification-icon {
  font-size: 1.8rem;
  min-width: 40px;
  text-align: center;
}

.notification-content {
  flex: 1;
}

.notification-content h4 {
  font-size: 1rem;
  color: #fff;
  margin: 0 0 8px 0;
}

.notification-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0 0 8px 0;
  line-height: 1.5;
}

.notification-time {
  font-size: 0.85rem;
  color: var(--text-light);
}

.notification-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-danger {
  background: rgba(244, 67, 54, 0.2) !important;
  color: #f44336 !important;
  border: 1px solid #f44336 !important;
}

.btn-danger:hover {
  background: #f44336 !important;
  color: #fff !important;
}

/* Responsive Messages */
@media screen and (max-width: 768px) {
  .messages-container {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 500px;
  }

  .conversations-sidebar {
    max-height: 200px;
    border-right: none;
    border-bottom: 1px solid rgba(0, 191, 255, 0.1);
  }

  .message {
    max-width: 85%;
  }

  .notifications-controls {
    flex-direction: column;
  }

  .notifications-controls button {
    width: 100%;
  }

  .notification-item {
    flex-direction: column;
  }

  .notification-actions {
    width: 100%;
  }

  .notification-actions button {
    flex: 1;
  }
}

/* Responsive */
@media screen and (max-width: 1024px) {
  .post-job-container {
    grid-template-columns: 1fr;
  }

  .job-preview {
    position: static;
  }
}

@media screen and (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .job-details {
    grid-template-columns: 1fr;
  }

  .job-detail-actions {
    flex-direction: column;
  }

  .job-detail-actions a,
  .job-detail-actions button {
    width: 100%;
  }

  .job-detail-header {
    flex-direction: column;
  }

  .job-detail-header h1 {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 768px) {
  .manage-container {
    grid-template-columns: 1fr;
  }

  .jobs-list-sidebar {
    position: static;
  }

  .applications-filter {
    flex-direction: column;
  }

  .filter-btn {
    width: 100%;
  }

  .app-card-details {
    grid-template-columns: 1fr;
  }

  .app-actions {
    flex-direction: column;
  }

  .app-actions button {
    width: 100%;
  }

  .hired-actions {
    flex-direction: column;
  }

  .hired-actions button {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .stat-card {
    flex-direction: column;
    text-align: center;
  }

  .quick-actions {
    grid-template-columns: repeat(2, 1fr);
  }

  .summary-grid {
    grid-template-columns: 1fr;
  }

  .job-item-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .app-item-dashboard {
    flex-direction: column;
    align-items: flex-start;
  }
}
  
/* Edit Profile Styles */  
.edit-profile-section { padding: 40px 20px; }  
.edit-profile-container { max-width: 800px; margin: 0 auto; background: #1e1e1e; padding: 40px; border-radius: 10px; box-shadow: 0 10px 40px rgba(0, 191, 255, 0.1); border: 1px solid rgba(0, 191, 255, 0.2); }  
.profile-form .form-group { margin-bottom: 25px; }  
.profile-form label { display: block; margin-bottom: 8px; color: #fff; font-weight: 500; }  
.profile-form input[type=\"text\"], .profile-form input[type=\"number\"], .profile-form textarea, .profile-form select { width: 100%; padding: 12px; border: 1px solid #333; border-radius: 5px; font-size: 14px; box-sizing: border-box; background: #0a0a0a; color: #fff; font-family: 'Montserrat', sans-serif; }  
.profile-form textarea { resize: vertical; min-height: 120px; }  
.profile-form input:focus, .profile-form textarea:focus, .profile-form select:focus { outline: none; border-color: #00bfff; box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.1); }  
.profile-form small { display: block; margin-top: 5px; color: #bbb; font-size: 12px; }  
.form-actions { display: flex; gap: 15px; margin-top: 30px; }  
.form-message { padding: 12px; border-radius: 5px; margin-bottom: 20px; display: none; }  
.form-message.success { display: block; background: rgba(76, 175, 80, 0.1); border: 1px solid rgba(76, 175, 80, 0.3); color: #4caf50; }  
.form-message.error { display: block; background: rgba(244, 67, 54, 0.1); border: 1px solid rgba(244, 67, 54, 0.3); color: #f44336; } 
.hire-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.8); display: flex; align-items: center; justify-content: center; z-index: 9999; }  
.hire-modal-content { background: #1e1e1e; border-radius: 10px; max-width: 600px; width: 90%; max-height: 80vh; overflow-y: auto; border: 1px solid rgba(0, 191, 255, 0.3); }  
.hire-modal-header { padding: 20px; border-bottom: 1px solid #333; display: flex; justify-content: space-between; align-items: center; }  
.hire-modal-header h2 { margin: 0; color: #fff; }  
.close-modal { background: none; border: none; color: #00bfff; font-size: 30px; cursor: pointer; padding: 0; line-height: 1; }  
.hire-modal-body { padding: 20px; }  
.job-select-item { background: #0a0a0a; padding: 15px; margin-bottom: 15px; border-radius: 8px; cursor: pointer; border: 2px solid #333; transition: all 0.3s; }  
.job-select-item:hover { border-color: #00bfff; transform: translateY(-2px); }  
.job-select-item h3 { margin: 0 0 10px 0; color: #fff; }  
.job-budget { color: #00bfff; font-weight: 600; margin: 5px 0; }  
.job-category { color: #bbb; margin: 5px 0; font-size: 14px; } 
.messages-section { height: calc(100vh - 140px); }  
.messages-container { height: 100%; display: flex; gap: 0; }  
.conversations-sidebar { width: 350px; border-right: 1px solid #333; background: #0a0a0a; }  
.chat-main { flex: 1; display: flex; flex-direction: column; }  
.chat-container { flex: 1; display: flex; flex-direction: column; height: 100%; }  
.messages-list { flex: 1; overflow-y: auto; padding: 20px; background: #000; }  
.message { margin-bottom: 15px; display: flex; flex-direction: column; max-width: 70%; }  
.message.sent { align-self: flex-end; align-items: flex-end; }  
.message.received { align-self: flex-start; align-items: flex-start; }  
.message.sent p { background: #005c4b; color: #fff; }  
.message.received p { background: #1e1e1e; color: #fff; }  
.message p { padding: 10px 15px; border-radius: 8px; margin: 0; word-wrap: break-word; }  
.message-time { font-size: 11px; color: #999; margin-top: 5px; }  
.message-input-area { display: flex; gap: 10px; padding: 15px; background: #1e1e1e; border-top: 1px solid #333; }  
.message-input { flex: 1; }  
.btn-send { background: #00bfff; color: #000; border: none; padding: 10px 20px; border-radius: 5px; cursor: pointer; font-size: 16px; }  
.conversation-item { padding: 15px; border-bottom: 1px solid #222; cursor: pointer; transition: background 0.2s; }  
.conversation-item:hover { background: #1a1a1a; }  
.conversation-item.active { background: #1e1e1e; border-left: 3px solid #00bfff; }  
.chat-status { color: #00bfff; font-size: 13px; margin: 5px 0 0 0; } 
.username-badge { color: #00bfff; font-size: 12px; font-weight: 400; }  
.chat-username { color: #00bfff; font-size: 13px; margin: 2px 0 0 0; }  
.conversation-header { display: flex; justify-content: space-between; align-items: center; } 
