@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  position: relative;
}

/* Global CSS */
h1 {
  font-size: 3rem;
  font-weight: 600;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 60px;
}

h3 {
  font-size: 1.2rem;
  padding-bottom: 1rem;
  font-weight: 500;
}

#w-btn {
  margin-left: 40px;
  background: #fff;
  color: #1f4a40;
  padding: 9px 30px;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 500;
  box-shadow: none;
  border: none;
}

#g-btn {
  text-decoration: none;
  background-color: #51a995;
  color: #fff;
  padding: 9px 30px;
  border-radius: 20px;
  cursor: pointer;
}

.sec-space {
  padding: 4rem 0;
}

.extra-space {
  padding-top: 8rem;
}

.obj-width {
  max-width: 1200px;
  margin: auto;
}

/*test header search bar*/
/* Header Search Bar */
.header-search {
  display: flex;
  align-items: center;
  margin-left: 30px;
  margin-right: 30px;
  background: #fff;
  border: 1px solid #ddd;
  padding: 5px 12px;
  border-radius: 30px;
  width: 320px;
}

.header-search input {
  border: none;
  outline: none;
  font-size: 15px;
  width: 100%;
}

.header-search button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: #444;
}
/*test header search bar*/





/* Navbar */
header {
  background-color: #fff;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 999;
}

#navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

#navbar .logo {
  width: 120px;
}

#menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
}

#menu li a {
  color: #000000;
  text-decoration: none;
  margin-left: 40px;
  font-size: 1.1rem;
  font-weight: 500;
}

#bar {
  color: #fff;
  display: none;
}

/* Hero Section */
.hero {
  background-color: #1f4a40;
}

.hero-box {
  display: flex;
  justify-content: space-between;
  height: 100vh;
  align-items: center;
}

.h-left {
  width: 45%;
  color: #fff;
}

.h-left p {
  padding: 1.5rem 0;
}

.search {
  position: relative;
}

.search input {
  width: 100%;
  height: 4rem;
  border-radius: 35px;
  padding: 0 20px;
  font-size: 1rem;
  outline: none;
  border: none;
}

.search a {
  position: absolute;
  top: 12px;
  right: 20px;
}

.h-right {
  width: 50%;
  object-fit: cover;
}

/* Features Section */
.features .fe-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.features .fe-box div {
  width: 200px;
}

.features .fe-box img {
  width: 50px;
  margin-top: 3rem;
}

/* Jobs Section */
.jobs .jobs-id {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
}

.jobs .jobs-id li {
  padding: 20px 40px;
  cursor: pointer;
  color: #000;
}

.jobs .jobs-id li.active {
  background: #51a995;
  color: #fff;
}

.jobs .job-list{
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #ccc;
  align-items: center;
  justify-items: start;
  cursor: pointer;
  color: #000;
  padding: 2rem 2rem;
}

.jobs .job-list.delete {
  display: none;
}

.jobs .job-list:hover {
  background: #ecf1ee;
}

.jobs .job-list img {
  width: 150px;
}

.jobs .job-list h3 {
  padding-bottom: 0;
}

/* Trust Section */
.trust .t-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 3rem;
}

.trust .t-box img {
  margin: 1rem 1rem 1rem 0;
}

/* browse listing style */
/* Container for column layout */
#root {
    display: flex;
    flex-direction: column; /* Column layout */
    align-items: center;    /* Center horizontally */
    gap: 15px;              /* Space between cards */
    padding: 20px;
    max-width: 1200px;      /* Optional: limit width on large screens */
    margin: 0 auto;         /* Center container on page */
}

/* Job card styling */
.jList {
    display: flex;
    flex-direction: row;    /* Image on the left, details on the right */
    align-items: center;    /* Vertically center content */
    justify-content: flex-start;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 20px 25px;
    width: 100%;            /* Full width of container */
    height: 250px;          /* Fixed height */
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    box-sizing: border-box;
}

.jList:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Job image */
.jList img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-right: 25px; /* Space between image and text */
    border-radius: 8px;
    flex-shrink: 0;
}

/* Job details */
.jList h3 {
    font-size: 20px;
    margin: 0 0 10px 0;
    color: #333;
}

.jList p {
    font-size: 14px;
    color: #666;
    margin: 3px 0;
}

.jList .job-type {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 12px;
    background-color: #f0f0f0;
    color: #555;
    border-radius: 20px;
    font-size: 12px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .jList {
        flex-direction: column; /* Stack image above text on small screens */
        align-items: flex-start;
        text-align: left;
        height: auto;           /* Let height adjust on mobile */
        padding: 15px 20px;
    }

    .jList img {
        margin-right: 0;
        margin-bottom: 10px;
        width: 100px;
        height: 100px;
    }
}

/* browse listing style */



/* Team Section */
.team-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.team-container .f1-box {
  border: 1px solid #c1e1d9;
  width: 280px;
  padding: 2rem 0;
  border-radius: 20px;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.f1-box img {
  border-radius: 50%;
  margin-bottom: 1rem;
}

/* Skills */
.skill {
  padding-bottom: 3rem;
}

#key {
  font-size: 0.8rem;
  background-color: #edcfee;
  padding: 10px 20px;
  border-radius: 20px;
}

/* Footer */
footer {
  background-color: #F0F0F0;
  color: #000000;
  padding: 4rem 0;
}

.top {
  display: flex;
  align-items: center;
  text-align: start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.top .logo {
  width: 170px;
  margin-bottom: 1rem;
}

.top i {
  color: #000000;
  font-size: 2rem;
  margin-left: 0.5rem;
}

.bottom {
  padding-top: 2rem;
  text-align: start;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.bottom div {
  display: flex;
  flex-direction: column;
}

.bottom a {
  text-decoration: none;
  color: #000000;
  line-height: 35px;
  font-size: 1.1rem;
}

/* Browser Jobs Form */
.jobs form {
  margin-top: 3rem;
  width: 100%;
  border: 1px solid #51a995;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.jobs form i {
  padding-left: 1rem;
  font-size: 1.1rem;
  font-weight: bold;
}

.jobs form input {
  width: 100%;
  border: none;
  outline: none;
  padding: 1rem 0.5rem;
  font-size: 1.1rem;
}

/* Job Details Page */
.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8fcfa;
  border: 1px solid #51a995;
  border-radius: 38px;
  padding: 2rem;
}

.job-img-row {
  display: flex;
  align-items: center;
}

.job-header img {
  width: 100px;
  background: #fff;
  padding: 1rem;
  border-radius: 15px;
  margin-right: 2rem;
}

.job-description p {
  padding-bottom: 2rem;
}

/* Contact Section */
.contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.contact-img {
  width: 50%;
}

.contact-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact form {
  max-width: 400px;
}

.contact input,
.contact textarea {
  width: 100%;
  margin: 0.5rem 0 1rem 0;
  border: 1px solid #51a995;
  box-shadow: none;
  outline: none;
  padding: 0.8rem 0.5rem;
  font-size: 1.1rem;
}

/* test pricing section css */ 

.pricing {
  text-align: center;
}

.pricing-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: nowrap;
  margin-top: 30px;
}

.pricing-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 30px 20px;
  width: 300px;
  transition: 0.3s;
  background: #fff;
}

.pricing-card.popular {
  border: 2px solid #1f4a40;
  transform: scale(1.05);
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.pricing-card .price {
  font-size: 2rem;
  color: #1f4a40;
  margin-bottom: 20px;
}

.pricing-card .price span {
  font-size: 1rem;
  color: #333;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.pricing-card ul li {
  margin: 10px 0;
  position: relative;
  padding-left: 20px;
}

.pricing-card ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #1f4a40;
}

.btn-pricing {
  display: inline-block;
  padding: 10px 25px;
  background: #1f4a40;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-pricing:hover {
  background: #0056b3;
}

@media (max-width: 1024px) {
  .pricing-card {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .pricing-card {
    width: 100%;
  }
}
✅ Features of

/* test Pricing section css */ 




/* Top Mini Header */
.top-header-section {
  background-color: #1f4a40; /* light gray background */
  padding: 5px 0;
  font-size: 14px;
  border-bottom: 1px solid #e0e0e0;
}

.top-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-left a.btn-pricing-mini {
  background-color: #1f4a40; /* primary blue */
  color: #fff;
  text-decoration: none;
  padding: 5px 12px;
  border-radius: 5px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.top-left a.btn-pricing-mini:hover {
  background-color: #0056b3; /* darker blue on hover */
}
/* Top Mini Header */


/* test job-listing updated in style */

/* Job Section Alignment Fix */
.jobs-container {
  margin-top: 3rem;
}

/* Apply flex to UL for full-width rows */
.jobs .job-list ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

/* Each job card full width */
.jobs .job-list ul li {
  Height:250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ddd;
  border-radius: 15px;
  background: #fff;
  padding: 1.2rem 2rem;
  transition: 0.3s ease;
  width: 100%;             /* full container width */
  box-sizing: border-box;  /* prevents overflow */
}

.jobs .job-list ul li:hover {
  background: #ecf1ee;
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Image and text alignment */
.jobs .job-list ul li img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-right: 20px;
}

.jobs .job-list ul li h3 {
  flex: 1;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f4a40;
  text-align: left;
}

.jobs .job-list ul li p {
  color: #555;
  font-size: 0.95rem;
  margin: 0 20px;
  flex-shrink: 0;
  white-space: nowrap;
}

/* "View Profile" button */
.jobs .job-list ul li .key a {
  text-decoration: none;
  background-color: #51a995;
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.jobs .job-list ul li .key a:hover {
  background-color: #1f4a40;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .jobs .job-list ul li {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1rem;
  }

  .jobs .job-list ul li img {
    margin: 0 0 10px 0;
  }

  .jobs .job-list ul li h3,
  .jobs .job-list ul li p {
    margin: 5px 0;
    text-align: center;
  }

  .jobs .job-list ul li p {
    margin-bottom: 10px;
  }
}

.card-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px;
    gap: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
}

.card-content {
    flex: 1;
}

.card-content .key {
    margin-top: 10px;
    display: flex;
    justify-content: flex-end;   /* ⭐ moves button to right */
}

.card-content .key a {
    padding: 6px 14px;
    background: #007bff;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
}


/* test job-listing updated in style */



/* test 2 job-listing updated in style */

/* Jobs Section */
.jobss .jobss-id {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
}

.jobss .jobss-id li {
  padding: 20px 40px;
  cursor: pointer;
  color: #000;
}

.jobss .jobss-id li.actives {
  background: #51a995;
  color: #fff;
}

.jobs .jobs-list{
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #ccc;
  align-items: center;
  justify-items: start;
  cursor: pointer;
  color: #000;
  padding: 2rem 2rem;
}

.jobss .jobs-list.delete {
  display: none;
}

.jobss .jobs-list:hover {
  background: #ecf1ee;
}

.jobss .jobs-list img {
  width: 150px;
}

.jobss .jobs-list h3 {
  padding-bottom: 0;
}




/* Job Section Alignment Fix */
.jobss-container {
  margin-top: 3rem;
}

/* Apply flex to UL for full-width rows */
.jobss .jobs-list ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

/* Each job card full width */
.jobss .jobs-list ul li {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ddd;
  border-radius: 15px;
  background: #fff;
  padding: 1.2rem 2rem;
  transition: 0.3s ease;
  width: 100%;             /* full container width */
  box-sizing: border-box;  /* prevents overflow */
}

.jobss .jobs-list ul li:hover {
  background: #ecf1ee;
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Image and text alignment */
.jobss .jobs-list ul li img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-right: 20px;
}

.jobss .jobs-list ul li h3 {
  flex: 1;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f4a40;
  text-align: left;
}

.jobss .jobs-list ul li p {
  color: #555;
  font-size: 0.95rem;
  margin: 0 20px;
  flex-shrink: 0;
  white-space: nowrap;
}

/* "View Profile" button */
.jobss .jobs-list ul li .key a {
  text-decoration: none;
  background-color: #51a995;
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  transition background: 0.3s ease;
  white-space: nowrap;
}

.jobss .jobs-list ul li .key a:hover {
  background-color: #1f4a40;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .jobss .jobs-list ul li {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1rem;
  }

  .jobss .jobs-list ul li img {
    margin: 0 0 10px 0;
  }

  .jobss .jobs-list ul li h3,
  .jobss .jobs-list ul li p {
    margin: 5px 0;
    text-align: center;
  }

  .jobss .jobs-list ul li p {
    margin-bottom: 10px;
  }
}

/* test 2 job-listing updated in style */



/* test search list*/
.search-results {
    position: absolute;
    background: #fff;
    width: 350px;
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 5px;
    display: none;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.search-results div {
    padding: 10px;
    border-bottom: 1px solid #f1f1f1;
    cursor: pointer;
    font-size: 14px;
}

.search-results div:hover {
    background: #f0f0f0;
  
}


.header-search {
    position: relative;
}

.search-results {
    position: absolute;
    top: 100%;           /* Show below input */
    left: 0;
    width: 100%;
    background: #fff;
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 6px;
    display: none;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.search-results div {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.search-results div:hover {
    background: #f7f7f7;
}

/* test search list*/

/* FINAL JOB LISTING GRID (for browse listing page) */
#jobListingContainer {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

/* Each job card */
.job-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e6e6e6;
    transition: 0.25s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.job-card img {
    width: 100%;
    height: 140px;
    object-fit: contain;
    margin-bottom: 15px;
}

.job-card h3 {
    font-size: 18px;
    color: #1f4a40;
    margin-bottom: 8px;
}

.job-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
}

/* View Profile Button */
.job-card a {
    padding: 10px 16px;
    background: ;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
}

.job-card a:hover {
    background: ;
}


/*test  show more btn*/
/* STYLISH "VIEW MORE" BUTTONS */
.show-more,
.sshow-more {
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 119, 182, 0.3);
}

/* Hover Effect */
.show-more:hover,
.sshow-more:hover {
    background: linear-gradient(135deg, #0096c7, #023e8a);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(2, 62, 138, 0.35);
}

/* Active/Click effect */
.show-more:active,
.sshow-more:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}

/* Center the "VIEW MORE" buttons */
.show-more-container,
.sshow-more-container {
    text-align: center; /* Center content inside container */
    margin-top: 20px;   /* Optional spacing from the list */
}

.show-more,
.sshow-more {
    display: inline-block;  /* Keep button inline for centering */
    padding: 10px 25px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background-color: #ff7f50; /* Your button color */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.show-more:hover,
.sshow-more:hover {
    background-color: #e06b3b; /* Hover color */
}


/*test  show more btn*/


/* test new listing style demo */

/* ---------- Column Listing Container ---------- */
.list-column-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px;
    height: 250px;
}

/* ---------- Individual Listing Card ---------- */
.list-column-card {
    display: flex;
    gap: 15px;
    background: #ffffff;
    border: 1px solid #e4e4e4;
    padding: 15px;
    border-radius: 10px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

/* Hover effect */
.list-column-card:hover {
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

/* ---------- Image ---------- */
.list-img {
    width: 150px;
    height: 110px;
    object-fit: cover;
    border-radius: 8px;
}

/* ---------- Text Content ---------- */
.list-content {
    flex: 1;
}

.list-title {
    font-size: 18px;
    margin: 0;
    font-weight: 600;
    color: #333;
}

.list-desc {
    font-size: 14px;
    color: #666;
    margin: 6px 0 10px;
    line-height: 1.4;
}

/* ---------- Meta Section ---------- */
.list-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.list-price {
    font-size: 16px;
    font-weight: 700;
    color: #0077b6;
}

.list-tag {
    background: #eef6ff;
    color: #0a59a3;
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 13px;
}

/* ---------- Button ---------- */
.list-btn {
    display: inline-block;
    padding: 8px 16px;
    background: #0077b6;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: 0.3s;
}

.list-btn:hover {
    background: #005f89;
}


/*test location listing */
.search-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.search-row select {
    padding: 10px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.search-box {
    position: relative;
    flex: 1;
}

.search-box input {
    width: 100%;
    padding: 10px 10px 10px 35px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.search-box i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
}

.suggestions {
    position: absolute;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 5px;
    padding: 0;
    list-style: none;
    display: none;
    max-height: 200px;
    overflow-y: auto;
    z-index: 999;
}

.suggestions li {
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.suggestions li:hover {
    background: #f5f5f5;
}
         /*use my location */
.use-location-btn {
    padding: 8px 14px;
    border: none;
    background: #2b7cff;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    margin-left: 10px;
}

.use-location-btn:hover {
    background: #1a63d6;
}


.job-buttons button {
    padding: 8px 15px;
    margin-left: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.job-buttons .view-profile {
    background-color: #4CAF50;
    color: white;
}

.job-buttons .call-now {
    background-color: #2196F3;
    color: white;
}

doctor-details.html


                /*use my location */
/*test location listing */

   /*CATEGORY + SLIDES SECTION */

/* CATEGORY + SLIDE SECTION */
.category-slide {
    margin-top: 60px;
}

.cat-slide-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.category-menu {
    width: 220px;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #ddd;
}

.category-menu h3 {
    margin-bottom: 15px;
}

.category-menu ul {
    list-style: none;
    padding: 0;
}

.category-menu li {
    padding: 10px;
    margin: 5px 0;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s;
}

.category-menu li:hover,
.category-menu li.active {
    background: #007bff;
    color: #fff;
}

.slides-box {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #ddd;
}

.slide {
    display: none;
}

.slide.show {
    display: block;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.logo-grid img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 10px;
    background: #fafafa;
    transition: 0.3s;
}

.logo-grid img:hover {
    transform: scale(1.05);
    background: #fff;
}
.slide {
    display: none;
}
.slide.show {
    display: block;
}
/*CATEGORY + SLIDES SECTION */


/* -------------------- style categorymenu -------------------- */

        /* -------------------- BUTTON ALIGNMENT FIX -------------------- */
        .action-wrap {
            display: flex;
            flex-direction: column;
            gap: 8px;
            width: 150px; /* consistent width */
        }

        .action-btn {
            width: 100%;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }

        /* Fix <a> wrapped buttons */
        .action-wrap a {
            width: 100%;
        }

        .action-wrap a button {
            width: 100%;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }
    </style>
    

/* -------------------- style categorymenu -------------------- */

 /* ------------------ make responsive ------------------ */ 


 /* ------------------ BUTTONS STYLING ------------------ */
.action-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.action-btn {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    color: #fff;
    background: #1f4a40; /* Primary blue */
}

.action-btn:hover {
    background: #0b5ed7; /* Darker blue on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Optional: differentiate buttons with colors */
.action-btn.show-doctors {
    background: #6c757d; /* Gray */
}

.action-btn.show-doctors:hover {
    background: #5a6268;
}

.action-btn.show-hospital {
    background: #17a2b8; /* Cyan */
}

.action-btn.show-hospital:hover {
    background: #138496;
}

.action-btn.view-profile {
    background: #28a745; /* Green */
}

.action-btn.view-profile:hover {
    background: #218838;
}

.action-btn.call-btn {
    background: #dc3545; /* Red */
}

.action-btn.call-btn:hover {
    background: #c82333;
}

/* Make buttons responsive */
@media (max-width: 768px) {
    .action-btn {
        width: 100%;
        font-size: 13px;
        height: 38px;
    }
}

/* Make buttons responsive  */











@media (max-width: 480px) {
    .list-column-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .list-img {
        width: 90%;
        height: auto;
    }

    .list-meta {
        justify-content: center;
        gap: 15px;
    }
}

.card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-call,
.btn-profile {
    display: block;      /* Forces each button to a new line */
    margin-top: 6px;     /* Space between buttons */
    padding: 6px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.btn-call {
    background: #28a745;
    color: #fff;
}

.btn-profile {
    background: #007bff;
    color: #fff;
}

.card-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.list-img {
    width: 120px; /* adjust image size */
    height: auto;
    border-radius: 6px;
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.action-buttons {
    display: flex;
    flex-direction: column; /* stack buttons vertically */
    position: absolute;
    right: 0; /* right corner */
    top: 0; /* align to top of content */
    gap: 8px; /* spacing between buttons */
}

.btn-call,
.btn-profile {
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    border: 1px solid #333;
    text-align: center;
    display: inline-block;
}

.btn-call {
    background-color: #28a745;
    color: #fff;
}

.btn-profile {
    background-color: #007bff;
    color: #fff;
}

/* test new listing style demo */

/* test joblist */
/* Job Listing Cards */
.jobs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.jList {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.jList:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.jList img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
}

.jList h3 {
    font-size: 18px;
    margin: 10px 0 5px 0;
    color: #333;
}

.jList p {
    font-size: 14px;
    color: #777;
    margin-bottom: 5px;
}

.jList .job-type {
    display: inline-block;
    background-color: #f0f0f0;
    color: #555;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
}

/* test joblisting */

/* Media Queries */
@media(max-width: 1200px) {
  .obj-width {
    width: 95%;
  }
}

@media(max-width: 699px) {
  #menu {
    background-color: aqua;
    display: block;
    width: 280px;
    height: auto;
    position: absolute;
    top: 80px;
    right: -100%;
    padding: 30px 0;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
    border-radius: 13px;
    opacity: 0;
    transition: all 0.3s ease;
  }

  #menu.active {
    right: 10px;
    opacity: 1;
  }

  #menu li {
    padding: 1rem;
  }

  #menu li a {
    color: #1f4a40;
  }

  #bar {
    display: block;
    font-size: 1.7rem;
    cursor: pointer;
  }

  #w-btn {
    margin: 20px 0 0 50px;
    background: #1f4a40;
    color: #fff;
  }

  .hero-box {
    flex-direction: column-reverse;
    justify-content: space-between;
    height: auto;
    align-items: flex-start;
    padding: 8rem 0;
  }

  .h-left {
    width: 100%;
  }

  .h-right {
    display: none;
  }

  .features .fe-box div {
    width: 40%;
  }

  .jobs .jobs-id {
    position: relative;
    width: 100%;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .jobs .jobs-id::-webkit-scrollbar {
    display: none;
  }

  .jobs-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 2rem;
  }

  .jobs .job-list {
    width: 48%;
    margin-top: 1rem;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 15px;
    padding: 2rem 1rem;
    text-align: center;
    justify-items: center;
  }

  .team-container .f1-box {
    width: 48%;
    text-align: center;
    border-radius: 10px;
    margin-top: 1rem;
  }

  .skill {
    padding-bottom: 1rem;
  }

  .top i {
    margin: 1rem 1rem 0 0;
  }

  .bottom div {
    width: 50%;
    margin-bottom: 50px;
  }

  .job-header {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    border-radius: 15px;
    padding: 1rem;
  }

  .job-img-row {
    margin-bottom: 1.5rem;
  }

  .job-header img {
    border-radius: 10px;
    padding: 0rem;
  }

  .contact {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-img {
    width: 70%;
    height: auto;
  }
}
