body {
    margin: 0px;
    padding: 0px;
    font-family: "Poppins", sans-serif !important;
    color: #424242;

   
   
    
  }
  .container {
    max-width: 1230px !important;
  }
  
  @font-face {
    font-family: ProximaNova-Regular;
    src: url(../fonts/ProximaNova-Regular.ttf);
  }
  @font-face {
    font-family: ProximaNova-Bold;
    src: url(../fonts/Proxima-Nova-Bold.ttf);
  }
.img-fluid {
    max-width: 100% !important;
    height: auto;
}


  .container {
    max-width: 1230px !important;
  }
  
  @font-face {
    font-family: ProximaNova-Regular;
    src: url(../fonts/ProximaNova-Regular.ttf);
  }
  @font-face {
    font-family: ProximaNova-Bold;
    src: url(../fonts/Proxima-Nova-Bold.ttf);
  }
.img-fluid {
    max-width: 100% !important;
    height: auto;
}

    .box {
      background-color: #fff;
      border-radius: 12px;
      padding: 24px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      flex: 1 1 400px;
    }

    /* Box 1: Profile Info */
    .profile-box {
      display: flex;
      align-items: flex-start;
      
    }

    .profile-img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 20px;
    }

    .profile-details h2 {
      font-size: 1.6em;
      font-weight: bold;
      margin-bottom: 4px;
    }

    .profile-details p {
      margin: 2px 0;
      color: #444;
    }

    .contact-info {
      display: flex;
      gap: 1px;
      margin-top: 12px;
      font-size: 0.95em;
    }

    .contact-info i {
      margin-right: 6px;
      color: #007BFF;
    }

    /* Box 2: Resume Download */
    .download-box {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%;
    }

    .download-button {
      background-color: #007BFF;
      color: #fff;
      padding: 12px 20px;
      font-size: 1em;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      transition: background 0.3s ease;
    }

    .download-button i {
      font-size: 1.2em;
    }

    .download-button:hover {
      background-color: #0056b3;
    }

    /* Responsive */
    @media (max-width: 600px) {
      .profile-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .profile-img {
        margin: 0 0 16px 0;
      }

      .contact-info {
        /*flex-direction: column;*/
        /*align-items: center;*/
      }
    }

    
  
.img-fluid {
    max-width: 100% !important;
    height: auto;
}.user-profile-section {
  margin-top: 30px;
}

 .profile-card {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      background: #fff;
      padding: 24px;
      border-radius: 12px;
     
      max-width: 1200px;
      margin: auto;
    }

    .profile-left {
      display: flex;
      align-items: flex-start;
      gap: 20px;
    }

    .profile-img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid #e5e7eb;
    }

    .profile-info {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .profile-name {
      font-size: 22px;
      font-weight: 600;
      color: #111827;
    }

    .profile-role {
      font-size: 14px;
      color: #4b5563;
      display: flex;
      gap: 10px;
    }

    .profile-desc {
      font-size: 14px;
      color: #6b7280;
      max-width: 500px;
    }

    .profile-contact {
      display: flex;
      gap: 20px; /* spacing between phone and email */
      font-size: 14px;
      color: #374151;
    }

    .profile-contact div {
      display: flex;
      align-items: center;
      font-weight: bold;
    }

    .profile-contact i {
      margin-right: 10px;
      color: #2563eb;
    }

    .resume-btn {
      align-self: flex-start;
      padding: 10px 18px;
      background: #dddddd;
      color: #414141;
      text-decoration: none;
      border-radius: 100px;
      font-size: 14px;
      font-weight: 800;
      transition: background 0.3s;
    }

    .resume-btn:hover {
      background: #ac0a43;
       color: #414141;
    }

    .profilebtn {
      display: flex;
      gap: 16px;
      margin-top: 50px;
    }
/* Tablet & Mobile */
@media (max-width: 1024px) {
  .profile-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  /* Profile image on top */
  .profile-left {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
  }

  .profile-img {
    margin-bottom: 12px;
  }

  /* Details below image */
  .profile-info {
    align-items: center;
  }

  .profile-name {
    font-size: 20px;
  }

  .profile-role {
    font-size: 14px;
    flex-direction: column;
    gap: 4px;
  }

  .profile-desc {
    max-width: 100%;
    font-size: 14px;
  }

  .profile-contact {
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
    font-size: 14px;
  }

  /* Buttons center aligned below details */
  .profilebtn {
    margin-top: 20px;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .profilebtn a {
    width: 100%;
    text-align: center;
  }
}

/* Mobile specific tweaks */
@media (max-width: 600px) {
  .profile-card {
    padding: 16px;
    border-radius: 8px;
  }

  .profile-img {
    width: 90px;
    height: 90px;
    border: 3px solid #e5e7eb;
  }

  .profile-name {
    font-size: 18px;
  }

  .profile-desc {
    font-size: 13px;
  }

  .resume-btn {
    padding: 8px 14px;
    font-size: 13px;
  }

 .profilebtn a:first-child {
    margin-bottom: 12px; /* Adjust spacing as needed */
  }
  
}



    .btn {
      
      font-size: 16px;
              
      border: none;
      border-radius:100px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    /* Active button */
    .btn.active {   
      font-weight: bold;
      letter-spacing: 1px;
      border-radius:100px;
      border: 1px solid #b207b2;
      padding: 2px 40px 2px 40px;
      color: #007BFF;
      
    }

    /* Inactive button */
    .btn.inactive {
      background: #305f8e;
      color: #ffff;
      border-radius:100px;
      border: 1px solid #f2640c;
      background: linear-gradient(to right, #60327A, #F26635);
      padding: 4px 40px 4px 40px;
      font-weight: bold;
      letter-spacing: 1px;
      

      
    }

    .btn.inactive:hover {
      color: #d1d5db;

    }

    /* Cources and Certificate */
   h3.texthead{
      color: #60327A;
      font-family: ProximaNova-Regular !important;
      font-weight:-bold;
      margin-top:  50px;

    }


@media (max-width:420px){
.petclinicprofile-section{padding:1rem;border-radius:10px}
.petclinicprofile-title{font-size:1.2rem}
}

/* gradient box */
.gradient-row {
      width: 100%;
       /* row height */
      background: linear-gradient(to right, #60327A, #F26635);
      display: flex;
      align-items: center;
      /*justify-content: space-around;           */
      margin-bottom: 20px;
      padding: 30px;
    }

     

.inner-box {
      width: 350px;
      height: 120px;
      background: white;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      color: #333;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
.box-1 {
  width: 99%;
  background-color: #ffff;
  padding: 4%;
  border-radius: 2%;
}

.box-1 h3 { font-size: 14px;font-weight: 600;}
.box-1 h4 { font-size: 18px;color: #F26635; font-weight: 600;}
.box-1 h5 { font-size: 16px;font-weight: 600;}
.box-1 p { font-size: 14px;}

.box-1:hover {
 
   transition: all 0.3s ease;
   box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}



/* rolling cards */
    .rolecard {
      position: relative;
      min-width: 220px;
      border-radius: 1ch;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(12,18,31,0.06);
      margin-right: 30px;
      flex: 0 0 auto;

  width: 30%;         /* show 3 per row */
  min-width: 30%;     /* fix size */
  max-width: 30%;
    }

    .rolecard img {
      width: 100%;
      height: 160px;
      object-fit: cover;
      border-radius: 15px 15px 0 0;
    }

    .status-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      padding: 8px 12px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 6px;
      backdrop-filter: blur(3px);
    }
/* Top row (labels) */
.rolecard .d-flex:first-child span {
  color: orange;
  font-weight: 600;
  font-size: 14px;
}

/* Bottom row (values) */
.rolecard .d-flex:last-child span {
  color: #000;
  font-weight: 700;
  font-size: 14px;
}
    .status-completed { background: #60327A; }
    .status-started { background: #0ea5e9; }
    .status-middle { background: #f97316; }

    .rolecard-footer {
      background: #ff7b00;
      display: flex;
      justify-content: space-around;
      padding: 10px 0 10px 0 ;
       border-radius: 0 0 15px 15px;
       font-size: 13px;
       letter-spacing: 1px;
    }

    .rolecard-footer a {
      flex: 1;
      text-align: center;
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      padding: 8px 0;
      display: block;
    }

    .rolecard-footer a:first-child { border-right: 1px solid rgba(255,255,255,0.12); }
    

    .scroll-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: #ff7b00;
      border: none;
      color: #fff;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
    }

    .scroll-btn.prev { left: 0; }
    .scroll-btn.next { right: 0; }

    .rolecard-scroll {
      display: flex;
      overflow-x: scroll;
      scroll-behavior: smooth;
      padding: 12px 0;
      scroll-snap-type: x mandatory;
    }

    .rolecard-scroll::-webkit-scrollbar { display: none; }

    .rolecard { scroll-snap-align: start; }

.separator {
  border-top: 1px solid #dee2e6;
  margin: 12px -1rem;   /* pull line out to card edge */
}

/* Tablet view: 2 per row */
@media (max-width: 992px) {
  .rolecard {
    width: 45%;
    min-width: 45%;
    max-width: 45%;
  }
}

/* Mobile view: 1 per row */
@media (max-width: 576px) {
  .rolecard {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    margin-right: 0; /* remove right gap on mobile */
  }


  .box-1 {
  width: 100%;
  background-color: #ffff;
  padding: 8%;
  border-radius: 6%;
}
}



/* My applies table */

.table-wrap{
      max-width:1200px;
      margin:0 auto;
      background:linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.85));
      padding:18px;
      border-radius:var(--radius);
      box-shadow:0 6px 20px rgba(12,18,31,0.06);
      border:1px solid var(--border);
    }

    table{
      width:100%;
      border-collapse:collapse;
      table-layout:fixed; /* equal column widths */
    }

    thead tr{
      background:transparent;
      background-color: #e9e9e9;
    }

    th, td{
      padding:12px 14px;
      text-align:left;
      font-size:14px;
      border-bottom:1px solid var(--border);
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      
    }

    th{
      font-weight:600;
      font-size:16px;
      color:#F26635;
    }

    td:last-child{
      text-align:right; /* keep links on the right */
    }

    a.table-link{
      text-decoration:none;
      font-weight:600;
      color:var(--accent);
    }

    /* small visual cue for links */
    a.table-link::after{
      content:" ↗";
      font-size:12px;
      opacity:0.8;
    }

    /* Responsive behaviour: allow horizontal scroll on tiny screens */
    .horizontal-scroll{overflow-x:auto;}

    /* Stack rows into cards on very small screens */
    @media (max-width:520px){
      table, thead, tbody, th, td, tr{display:block;}
      thead{display:none;} /* hide header row */
      tr{
        margin-bottom:12px;
        background:var(--card);
        border-radius:10px;
        padding:10px 12px;
        box-shadow:0 4px 12px rgba(12,18,31,0.04);
      }
      td{
        border:none;
        display:flex;
        padding:8px 6px;
      }
      td::before{
        content:attr(data-label);
        flex:0 0 45%;
        font-weight:600;
        color:var(--muted);
      }
      td:last-child{justify-content:flex-end}
    }

    /*  -------------- details page ------------------ -- */

    .singleline{
      background-color: #0056b3;
      width: 100%;
      height: 1px;
      align-items: center;      
      
    }

    .tab-container {
      display: flex;
      flex-direction: row;
    }

    .tabs {
      flex: 0 0 20%;
      display: flex;
      flex-direction: column;
      border-right: 1px solid #ddd;
     
    }

    .tabs button {
      padding: 12px;
      border: none;
      background: none;
      text-align: left;
      cursor: pointer;
      font-weight: bold;
      color: #929292;
       outline: none;
  border: none;
    }
    .tabs button:focus {
  outline: none;
  box-shadow: none;
}

    .tabs button.active {
      background: #ffffff;
      color: #0c2fa1;
      border-bottom: 4px solid #e82626;
    }

    .tab-details {
      flex: 1;
      padding: 20px;
      background: #fff;
    }

    .tab-content {
      display: none;
    }

    .tab-content.active {
      display: block;
    }

    .salary-row {
      display: flex;
      justify-content: space-between;
      margin: 10px 0;
    }

    .chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 15px;
    }

    .chip {
      background:#e9ecef;
      color: #808080;
      padding: 5px 12px;
      border-radius: 20px;
      font-size: 13px;
    }

       .pet-details-section {
      background: #fff;
      padding: 20px;
      margin-bottom: 20px;
     
      
    }

    .pet-details-section h4 {
      color: #e74c3c; /* Orange-Red Heading */
      border-bottom: 2px solid #f1f1f1;
      padding-bottom: 8px;
      margin-bottom: 15px;
      font-size: 20px;
      font-weight: 700;
    }

       .pet-details-section h6 {
      color: #42e73c; /* Orange-Red Heading */
      border-bottom: 2px solid #f1f1f1;
      padding-bottom: 8px;
      margin-bottom: 15px;
      font-size: 20px;
      font-weight: 700;
    }

  

    .pet-details-field {
      display: flex;
      flex-wrap: wrap;
      margin-bottom: 10px;
    }

    .pet-details-field span {
      flex: 1 1 200px;
      margin-right: 15px;
      font-size: 14px;
      margin-bottom: 8px;
      
    }

    .pet-details-label {
      display: block;
      font-weight: bold;
      color: #e67e22; /* Orange Label */
      font-size: 13px;
      
    }

    .pet-details-value {
      font-weight: bold;
      color: #000; /* Black Value */
      
      
    }

 /* Mobile (stack items neatly with no big gaps) */
@media (max-width: 768px) {
  .pet-details-field {
    flex-direction: column;
    margin-bottom: 8px;
  }

  .pet-details-field span {
    flex: 1 1 100%;
    margin-bottom: 4px;   /* reduce gap further */
  }
}

/* Mobile/Tablet: tabs move to top */
@media (max-width: 768px) {
  .tab-container {
    flex-direction: column;
  }

  .tabs {
    flex: none;
    flex-direction: row;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid #ddd;
  }

  .tabs button {
    flex: 1;
    white-space: nowrap;
    padding: 10px 14px;
    font-size: 14px;
  }

  .tab-details {
    padding: 15px;
  }
}