/*
Theme Name: Jennys Worknet Services
*/

* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Roboto', sans-serif;
    }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 5px 20px;
      background: #fff;
      border-bottom: 1px solid #eee;
      position: relative;
      z-index: 1000;
    }

    /* Logo section */
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }
.logo img {
    height: 80px;
}
    .logo-box {
      background: #adda5b;
      color: white;
      font-weight: 700;
      padding: 12px 16px;
      border-radius: 2px;
    }

    .logo span {
      font-size: 14px;
      font-weight: 500;
      color: #333;
    }

    /* Navigation */
    nav ul {
      display: flex;
      list-style: none;
      gap: 54px;
    }

    nav ul li a {
      text-decoration: none;
      color: #333;
      font-size: 15px;
      font-weight: 500;
      transition: 0.3s;
    }

    nav ul li a:hover {
      color: #adda5b;
    }

    /* Buttons (desktop) */
    .header-buttons {
      display: flex;
      gap: 15px;
    }

    .btn {
      padding: 8px 18px;
      border-radius: 4px;
      font-size: 14px;
      font-weight: 500;
      border: 1px solid transparent;
      cursor: pointer;
      transition: 0.3s;
      text-decoration: none;
    }

    .btn-green {
      background: #adda5b;
      color: #fff;
      border: none;
    }

    .btn-green:hover {
      background: #007a52;
    }

    .btn-outline {
      background: #fff;
      color: #333;
      border: 1px solid #999;
    }

    .btn-outline:hover {
      background: #f4f4f4;
    }

    /* Mobile menu button */
    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 4px;
    }

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

    /* Right slide menu (mobile) */
    .mobile-menu {
      position: fixed;
      top: 0;
      right: -70vh; /* hidden by default */
      height: 100vh;
      width: 70vh;
      background: #fff;
      box-shadow: -2px 0 8px rgba(0,0,0,0.1);
      display: flex;
      flex-direction: column;
      padding: 40px 20px;
      gap: 20px;
      transition: right 0.3s ease-in-out;
      z-index: 999;
    }

    .mobile-menu.active {
      right: 0;
    }

    .mobile-menu ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .mobile-menu ul li a {
      text-decoration: none;
      font-size: 16px;
      color: #333;
      font-weight: 500;
    }

    .mobile-menu .header-buttons {
      flex-direction: column;
      gap: 15px;
      width: 100%;
    }

    .mobile-menu .btn {
      width: 100%;
      text-align: left;
    }


    /* Responsive */
    @media (max-width: 768px) {
      nav,
      .header-buttons {
        display: none; /* hide desktop nav + buttons */
      }

      .menu-toggle {
        display: flex;
      }
      .mobile-menu .header-buttons {
      display: flex;
  }
  .mobile-menu {
      width: 240px;
      padding: 140px 20px 40px 20px;
  }
 }
 /*Close Header*/
  /* Top Images */
    .top-images {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    justify-content: center;
}

  .top-images img {
  width: 100%;
  max-width: max-content;
  height: 244px;
  object-fit: cover;
  border-radius: 6px;
}

    /* Staff Section */
    .staff-section {
      background: #adda5b; /* green background */
      color: white;
      padding: 40px 20px;
    }

    .staff-content {
      text-align: center;
    }

    .staff-section h2 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .staff-section p {
      font-size: 15px;
      font-weight: 400;
      margin-bottom: 28px;
      color: #e9f9f0;
    }

    /* Buttons */
   .staff-section  .button-group {
      display: flex;
      justify-content: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .staff-section .btn {
      padding: 12px 30px;
      border-radius: 4px;
      font-size: 15px;
      font-weight: 500;
      border: 2px solid transparent;
      cursor: pointer;
      transition: 0.3s;
      text-decoration: none;
    }

    .staff-section .btn-white {
      background: #fff;
      color: #000;
      border: 2px solid #fff;
    }

    .staff-section .btn-white:hover {
      background: #f2f2f2;
    }

    .staff-section .btn-outline {
      background: transparent;
      color: #fff;
      border: 2px solid #fff;
      text-decoration: none;
    }

    .staff-section .btn-outline:hover {
      background: #fff;
      color: #adda5b;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .top-images img {
        max-width: 100%;
        height: 180px;
      }
      .staff-section h2 {
        font-size: 20px;
      }
      .staff-section p {
        font-size: 14px;
      }
      .staff-section .btn {
        padding: 10px 24px;
        font-size: 14px;
      }
      .top-images {
          flex-wrap: wrap;
      }
    }

/*Wht Choose*/
    .whyChoose {
      padding: 50px 0;
      background: linear-gradient(to bottom, #ffffff, #f5f7fa);
    }

    .whyChoose h2 {
      text-align: center;
      font-size: 2.1rem;
      font-weight: 700;
      margin-bottom: 50px;
      color: #1a202c;
      position: relative;
      padding-bottom: 15px;
    }

    .whyChoose h2:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(to right, #adda5b, #00cc88);
      border-radius: 2px;
    }

    .whyChoose h2 span {
      color: #adda5b;
      position: relative;
    }

    .why-items {
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .why-item {
      flex: 1 1 250px;
      max-width: 270px;
      background: white;
      border-radius: 12px;
      padding: 30px 25px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      opacity: 0;
      transform: translateY(20px);
    }

    .why-item.animate {
      opacity: 1;
      transform: translateY(0);
    }

    .why-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 153, 102, 0.1);
    }

    .whyChoose .icon-wrapper {
      width: 70px;
      height: 70px;
      margin: 0 auto 20px;
      background: rgba(0, 153, 102, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .why-item:hover .icon-wrapper {
      background: #adda5b;
      transform: scale(1.1);
    }

    .why-item i {
      font-size: 28px;
      color: #adda5b;
      transition: all 0.3s ease;
    }

    .why-item:hover i {
      color: white;
    }

    .why-item h3 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 15px;
      color: #1a202c;
    }

    .why-item p {
      font-size: 15px;
      line-height: 1.6;
      color: #64748b;
    }

    /* Animation delays for sequential loading */
    .why-item:nth-child(1) { transition-delay: 0.1s; }
    .why-item:nth-child(2) { transition-delay: 0.2s; }
    .why-item:nth-child(3) { transition-delay: 0.3s; }
    .why-item:nth-child(4) { transition-delay: 0.4s; }

    /* Responsive */
    @media (max-width: 992px) {
      .why-items {
        gap: 20px;
      }
      
      .why-item {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
      }
    }

    @media (max-width: 768px) {
      .whyChoose {
        padding: 40px 0 40px 0;
      }
      
      .whyChoose h2 {
        font-size: 2rem;
        margin-bottom: 40px;
      }
      
      .why-item {
        flex: 1 1 100%;
        max-width: 100%;
        margin-bottom: 20px;
      }
    }

    /*What Support*/
    .whatSuprt {
      padding: 50px 0 60px 0;
      background: linear-gradient(to bottom, #ffffff, #f8fafc);
    }

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

   .whatSuprt .section-header h2 {
          text-align: center;
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a202c;
    position: relative;
    padding-bottom: 15px;
    }

    .whatSuprt .section-header h2:after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(to right, #adda5b, #00cc88);
      border-radius: 2px;
    }

    .whatSuprt .section-header p {
      font-size: 1.1rem;
      color: #6b7280;
      max-width: 600px;
      margin: 0 auto 0;
    }

    .supply-items {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
    }

    .supply-item {
      flex: 1 1 320px;
      max-width: 360px;
      background: white;
      border-radius: 12px;
      padding: 35px 30px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .supply-item:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 5px;
      height: 100%;
      background: linear-gradient(to bottom, #adda5b, #00cc88);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .supply-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 153, 102, 0.1);
    }

    .supply-item:hover:before {
      opacity: 1;
    }

    .whatSuprt .item-header {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }

   .whatSuprt .icon-wrapper {
      width: 50px;
      height: 50px;
      background: rgba(0, 153, 102, 0.1);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
    }

   .whatSuprt .icon-wrapper i {
      font-size: 20px;
      color: #adda5b;
    }

    .supply-item h3 {
      font-size: 1.35rem;
      font-weight: 600;
      color: #1f2937;
    }

    .supply-item ul {
      list-style: none;
      padding-left: 0;
    }

    .supply-item ul li {
      font-size: 1rem;
      margin-bottom: 12px;
      padding-left: 25px;
      position: relative;
      color: #4b5563;
      transition: color 0.2s ease;
    }

    .supply-item ul li:before {
      content: '✓';
      position: absolute;
      left: 0;
      color: #adda5b;
      font-weight: bold;
    }

    .supply-item ul li:hover {
      color: #adda5b;
    }

    /* Animation for list items */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateX(-10px); }
      to { opacity: 1; transform: translateX(0); }
    }

    .supply-item ul li {
      opacity: 0;
      animation: fadeIn 0.5s ease forwards;
    }

    .supply-item ul li:nth-child(1) { animation-delay: 0.1s; }
    .supply-item ul li:nth-child(2) { animation-delay: 0.2s; }
    .supply-item ul li:nth-child(3) { animation-delay: 0.3s; }

    /* Responsive */
    @media (max-width: 992px) {
      .supply-items {
        gap: 25px;
      }
      
      .supply-item {
        flex: 1 1 calc(50% - 25px);
        max-width: calc(50% - 25px);
      }
    }

    @media (max-width: 768px) {
      .whatSuprt {
        padding: 40px 0;
      }
      
      .whatSuprt .section-header h2 {
        font-size: 2rem;
      }
      
      .supply-item {
        flex: 1 1 100%;
        max-width: 100%;
        margin-bottom: 10px;
      }
    }

/*Covrage*/

    .covrgeSec {
      padding: 40px 0 45px 0;
      text-align: center;
      width: 100%;
    }

    .covrgeSec h2 {
      font-size: 2.1rem;
      font-weight: 700;
      margin-bottom: 50px;
      color: #1f2937;
      position: relative;
      display: inline-block;
    }

    .covrgeSec h2:after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background: #adda5b;
      border-radius: 2px;
    }

    .coverage-items {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 25px;
    }

    .coverage-item {
      width: 144px;
      height: 144px;
      border: 2px solid #adda5b;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 40px;
      font-weight: 700;
      color: #adda5b;
      background: #ffffff;
      flex-shrink: 0;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      position: relative;
      overflow: hidden;
    }

    .coverage-item:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(0, 153, 102, 0.1), rgba(0, 153, 102, 0.05));
      opacity: 0;
      transition: opacity 0.3s ease;
      border-radius: 50%;
    }

    .coverage-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 153, 102, 0.15);
      color: #ffffff;
      background: #adda5b;
      border-color: #adda5b;
    }

    .coverage-item:hover:before {
      opacity: 1;
    }

    /* Animation for items */
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .coverage-item {
      opacity: 0;
      animation: fadeIn 0.6s ease forwards;
    }

    .coverage-item:nth-child(1) { animation-delay: 0.1s; }
    .coverage-item:nth-child(2) { animation-delay: 0.2s; }
    .coverage-item:nth-child(3) { animation-delay: 0.3s; }
    .coverage-item:nth-child(4) { animation-delay: 0.4s; }
    .coverage-item:nth-child(5) { animation-delay: 0.5s; }
    .coverage-item:nth-child(6) { animation-delay: 0.6s; }

    /* Responsive */
    @media (max-width: 768px) {
      .covrgeSec {
        padding: 40px 0;
      }
      
      .covrgeSec h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
      }
      
      .coverage-items {
        gap: 20px;
      }
      
      .coverage-item {
        width: 85px;
        height: 85px;
        font-size: 18px;
      }
    }

    @media (max-width: 480px) {
      .coverage-items {
        gap: 15px;
      }
      
      .coverage-item {
        width: 75px;
        height: 75px;
        font-size: 16px;
      }
    }

/*Tell Us What*/
.tellUssc {
      background: linear-gradient(135deg, #89c858 0%, #adda5b 100%);
      color: #fff;
      padding: 40px 0;
      border-radius: 0;
      box-shadow: 0 10px 30px rgba(0, 134, 75, 0.2);
      margin-top: 15px;
    }

    .tellUssc .content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 30px;
    }

    .tellUssc .text {
      flex: 1;
      min-width: 300px;
    }

    .tellUssc h2 {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .tellUssc p {
      font-size: 16px;
      font-weight: 400;
      margin: 0;
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.6;
    }

    .tellUssc .buttons {
      display: flex;
      gap: 15px;
      flex-shrink: 0;
    }

    .tellUssc .btn {
      padding: 14px 28px;
      font-size: 16px;
      font-weight: 600;
      border-radius: 6px;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
		text-decoration: none;
    }

    .tellUssc .btn-order {
      background: #fff;
      color: #89c858;
      border: 2px solid #fff;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    
    .tellUssc .btn-order:hover {
      background: #f8f9fa;
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .tellUssc .btn-apply {
      background: transparent;
      color: #fff;
      border: 2px solid rgba(255, 255, 255, 0.8);
    }
    
    .tellUssc .btn-apply:hover {
      background: rgba(255, 255, 255, 0.1);
      border: 2px solid #fff;
      transform: translateY(-2px);
    }

    /* Animation for the section */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .tellUssc {
      animation: fadeInUp 0.6s ease-out;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .tellUssc {
        padding: 40px 20px;
      }
      
      .tellUssc .content {
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
      }
      
      .tellUssc .buttons {
        width: 100%;
        justify-content: center;
      }
      
      .tellUssc h2 {
        font-size: 24px;
      }
    }

    @media (max-width: 480px) {
      .tellUssc .buttons {
        flex-direction: column;
      }
      
      .tellUssc .btn {
        width: 100%;
      }
    }

/*Footer*/
    .footr {
      background: #ffffff;
      color: #1a202c;
      padding: 60px 0 20px;
      border-top: 1px solid #e2e8f0;
      margin-top: auto;
    }

    .footr .footer-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
    padding: 0 60px;
}

    .footr .logo-sec {
      flex: 1 1 300px;
    }

    .footr .logo-sec img {
      width: 85px;
      height: auto;
      margin-bottom: 15px;
    }

    .footr .logo-sec h4 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 10px;
      color: #1a202c;
    }

    .footr .logo-sec p {
      font-size: 15px;
      color: #64748b;
      line-height: 1.6;
      max-width: 300px;
    }

    .footr .contact,
    .footr .links {
      flex: 1 1 200px;
    }

    .footr h5 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 20px;
      color: #1a202c;
      position: relative;
      padding-bottom: 8px;
    }

    .footr h5:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 30px;
      height: 2px;
      background: #adda5b;
    }

    .footr .contact p {
      font-size: 15px;
      color: #64748b;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
.footr .contact p a {
    color: #64748b;
    text-decoration: none;
}
.footr .contact p a:hover {
    text-decoration: underline;
}
    .footr .contact i {
      color: #adda5b;
      width: 20px;
    }

    .footr .links a {
      font-size: 15px;
      color: #64748b;
      margin-bottom: 12px;
      display: block;
      text-decoration: none;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .footr .links a i {
      color: #adda5b;
      font-size: 14px;
      transition: transform 0.3s ease;
    }

    .footr .links a:hover {
      color: #adda5b;
    }

    .footr .links a:hover i {
      transform: translateX(3px);
    }

    .footr .bottom {
      border-top: 1px solid #e2e8f0;
      padding: 0 60px;
      padding-top: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 15px;
      font-size: 14px;
      color: #94a3b8;
    }

    .footr .bottom a {
      color: #64748b;
      text-decoration: none;
      transition: color 0.3s ease;
      margin-left: 20px;
    }

    .footr .bottom a:hover {
      color: #adda5b;
    }

    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 15px;
    }

    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      background: #f1f5f9;
      color: #64748b;
      border-radius: 50%;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .social-links a:hover {
      background: #adda5b;
      color: white;
      transform: translateY(-2px);
    }

    /* Responsive */
    @media (max-width: 992px) {
      .footr .footer-main {
        gap: 30px;
      }
    }

    @media (max-width: 768px) {
      .footr {
        padding: 40px 0 20px;
      }
      
      .footr .footer-main {
        flex-direction: column;
        gap: 30px;
      }
      
      .footr .bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
      }
      
      .footr .bottom > div {
        display: flex;
        gap: 10px;
        justify-content: center;
        width: 100%;
    }
    .footr .bottom p {
        width: 100%;
        text-align: center;
    }
      
      .footr .bottom a {
        margin-left: 0;
        margin-right: 20px;
      }
      .footr .contact, .footr .links,
      .footr .logo-sec {
          flex: 1 1 auto;
      }
      .footr .bottom,
      .footr .footer-main {
          padding: 0 15px;
      }
      .footr .bottom{
        padding-top: 15px;
      }

    }

    .empyPgtM {
      background: #adda5b;
      color: #fff;
      padding: 130px 20px;
      background-image: url(https://jennysworknet.com.au/wp-content/uploads/2025/09/emplyBanner.jpg);
      background-size: cover;
      background-position: center;
      position: relative;
    }
    .empyPgtM:before {
      content: '';
        background: #adda5b;
        position: absolute;
        height: 100%;
        width: 100%;
        left: 0;
        top: 0;
        opacity: 0.8;
    }

    .empyPgtM .container {
      position: relative;
    }

    .empyPgtM h2 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 10px;
      line-height: 1.4;
    }

    .empyPgtM p {
      font-size: 16px;
      font-weight: 400;
      color: #f1f1f1;
    }

    .empyPgtM a {
      color: #fff;
      text-decoration: underline;
    }
    .empyPgtM a:hover {
      color: #ccebd8;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .empyPgtM h2 {
        font-size: 20px;
      }
      .empyPgtM p {
        font-size: 14px;
      }
    }

/*Employer Page*/
.stapMain {
    background-color: #f8fafc;
    display: inline-block;
    width: 100%;
    padding: 20px 0;
}
.orderStafs {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 30px;
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
    }

    /* Left side boxes */
    .orderStafs .info-box {
      background: #ffffff;
      border-radius: 12px;
      padding: 25px;
      margin-bottom: 25px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      border-left: 4px solid #adda5b;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .orderStafs .info-box:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    }

    .orderStafs .info-box h3 {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 15px;
      color: #1e293b;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .orderStafs .info-box h3 i {
      color: #adda5b;
    }

    .orderStafs .info-box ol {
      padding-left: 20px;
    }

    .orderStafs .info-box li {
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 10px;
      color: #475569;
    }

    .orderStafs .info-box li b {
      color: #1e293b;
    }

    .orderStafs .info-box li i {
      color: #adda5b;
      font-weight: 500;
    }

    .orderStafs .info-box p {
      font-size: 15px;
      color: #475569;
      line-height: 1.6;
    }

    /* Right side form */
    .orderStafs .form-box {
      background: #ffffff;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      position: relative;
    }

    .orderStafs .form-box h2 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 8px;
      color: #1e293b;
    }

    .orderStafs .form-box > p {
      font-size: 15px;
      color: #64748b;
      margin-bottom: 25px;
      padding-bottom: 20px;
      border-bottom: 1px solid #e2e8f0;
    }

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

    .orderStafs form .full-width {
      grid-column: 1 / -1;
    }

    .orderStafs form label {
      display: block;
      font-weight: 500;
      margin-bottom: 8px;
      margin-top: 18px;
      color: #374151;
      font-size: 14px;
    }

    .orderStafs form input,
    .orderStafs form select,
    .orderStafs form textarea {
      width: 100%;
      padding: 12px 15px;
      font-size: 15px;
      border: 1px solid #d1d5db;
      border-radius: 8px;
      background: #f9fafb;
      transition: all 0.3s ease;
    }

    .orderStafs form input:focus,
    .orderStafs form select:focus,
    .orderStafs form textarea:focus {
      outline: none;
      border-color: #adda5b;
      box-shadow: 0 0 0 3px rgba(0, 153, 102, 0.1);
      background: #ffffff;
    }

    .orderStafs form textarea {
      min-height: 100px;
      resize: vertical;
    }

    /* Submit button */
    .orderStafs .submit-btn {
      background: #adda5b;
      color: #ffffff;
      border: none;
      padding: 14px 30px;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      margin-top: 25px;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      grid-column: 1 / -1;
      justify-self: start;
    }

    .orderStafs .submit-btn:hover {
      background: #008055;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 153, 102, 0.2);
    }

    /* Form validation styling */
    .orderStafs input:required, .orderStafs select:required {
      border-left: 2px solid #adda5b;
    }

    .orderStafs select option:disabled {
      color: #94a3b8;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .orderStafs {
        grid-template-columns: 1fr;
        gap: 25px;
      }
      
      .orderStafs form {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 576px) {
      .orderStafs {
        margin: 20px auto;
        padding: 0 15px;
      }
      
      .orderStafs .info-box,
      .orderStafs .form-box {
        padding: 20px;
      }
    }
/* Thank you section */
    .thank-you-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    background: #f8fafc;
}

    .thank-you-card {
      background: #ffffff;
      border-radius: 16px;
      padding: 50px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      max-width: 700px;
      width: 100%;
      position: relative;
      overflow: hidden;
    }

    .thank-you-card:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(to right, #adda5b, #00cc88);
    }

    .thank-you-section .checkmark-circle {
      width: 80px;
      height: 80px;
      background: rgba(0, 153, 102, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 25px;
    }

    .thank-you-section .checkmark {
      color: #adda5b;
      font-size: 40px;
    }

    .thank-you-card h1 {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 15px;
      color: #1e293b;
    }

    .thank-you-card p {
      font-size: 18px;
      color: #64748b;
      margin-bottom: 30px;
      line-height: 1.6;
    }

    .thank-you-card .highlight {
      color: #adda5b;
      font-weight: 500;
    }

    .thank-you-section .next-steps {
      background: #f1f5f9;
      border-radius: 12px;
      padding: 25px;
      margin: 30px 0;
      text-align: left;
    }

    .thank-you-section .next-steps h3 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 15px;
      color: #1e293b;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .thank-you-section .next-steps h3 i {
      color: #adda5b;
    }

    .thank-you-section .next-steps ol {
      padding-left: 20px;
      color: #475569;
    }

    .thank-you-section .next-steps li {
      margin-bottom: 10px;
      line-height: 1.6;
    }

    .thank-you-section .action-buttons {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: 30px;
      flex-wrap: wrap;
    }

    .thank-you-section .btn {
      padding: 14px 28px;
      font-size: 16px;
      font-weight: 600;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      text-decoration: none;
    }

    .thank-you-section .btn-primary {
      background: #adda5b;
      color: #ffffff;
      border: none;
    }

    .thank-you-section .btn-primary:hover {
      background: #008055;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 153, 102, 0.2);
    }

    .thank-you-section .btn-secondary {
      background: transparent;
      color: #adda5b;
      border: 2px solid #adda5b;
    }

    .thank-you-section .btn-secondary:hover {
      background: rgba(0, 153, 102, 0.05);
      transform: translateY(-2px);
    }


    /* Responsive design */
    @media (max-width: 768px) {
		    .logo img {
        width: auto;
        height: 60px;
    }
		.empyPgtM {
			padding: 30px 20px;
		}
		
      .thank-you-card {
        padding: 30px;
        margin: 0 20px;
      }
      
      .thank-you-card h1 {
        font-size: 28px;
      }
      
      .thank-you-card p {
        font-size: 16px;
      }
      
      .thank-you-section .action-buttons {
        flex-direction: column;
      }
      
      .thank-you-section .btn {
        width: 100%;
      }
    }

    @media (max-width: 480px) {
          .thank-you-card {
            padding: 25px 20px;
            margin: 0;
        }
      
      .checkmark-circle {
        width: 70px;
        height: 70px;
      }
      
      .thank-you-card h1 {
        font-size: 24px;
      }
    }

    /*Apply for Work*/
    .myWods{
      background-color: #f8fafc;
      display: inline-block;
      width: 100%;
      padding: 20px 0;
    }

    .applyWork {
      display: grid;
      grid-template-columns: 1fr 1.8fr;
      gap: 30px;
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
    }

    /* Left Column */
    .applyWork .left-box {
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .applyWork .info-box {
      background: #ffffff;
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      border-left: 4px solid #adda5b;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .applyWork .info-box:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    }

    .applyWork .info-box h3 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 15px;
      color: #1e293b;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .applyWork .info-box h3 i {
      color: #adda5b;
    }

    .applyWork .info-box p {
      font-size: 15px;
      color: #475569;
      line-height: 1.6;
      margin-bottom: 10px;
    }

    .applyWork .info-box b {
      color: #1e293b;
      font-weight: 600;
    }

    /* Right Column */
    .applyWork .right-box {
      background: #ffffff;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      position: relative;
    }

    .applyWork .right-box h2 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 8px;
      color: #1e293b;
    }

    .applyWork .right-box > small {
      font-size: 15px;
      color: #64748b;
      margin-bottom: 1px;
      display: block;
      padding-bottom: 20px;
      border-bottom: 1px solid #e2e8f0;
  }

    .applyWork .right-box small b {
      color: #1e293b;
    }

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

    .applyWork form .full-width {
      grid-column: 1 / -1;
    }

    .applyWork form label {
      display: block;
      font-weight: 500;
      margin-bottom: 8px;
      margin-top: 18px;
      color: #374151;
      font-size: 14px;
    }
    .applyWork form .checkbox-item label {
          margin: 0;
      }

    .applyWork form input,
    .applyWork form select,
    .applyWork form textarea {
      width: 100%;
      padding: 12px 15px;
      font-size: 15px;
      border: 1px solid #d1d5db;
      border-radius: 8px;
      background: #f9fafb;
      transition: all 0.3s ease;
    }

    .applyWork form input:focus,
    .applyWork form select:focus,
    .applyWork form textarea:focus {
      outline: none;
      border-color: #adda5b;
      box-shadow: 0 0 0 3px rgba(0, 153, 102, 0.1);
      background: #ffffff;
    }

    .applyWork form .checkbox-group {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      margin-top: 10px;
    }

    .applyWork form .checkbox-item {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .applyWork form .checkbox-item input {
      width: auto;
    }

    .applyWork form .file-upload {
      padding: 15px;
      border: 2px dashed #d1d5db;
      border-radius: 8px;
      text-align: center;
      background: #f9fafb;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .applyWork form .file-upload:hover {
      border-color: #adda5b;
      background: #f0fdf4;
    }

    .applyWork form .file-upload i {
      font-size: 24px;
      color: #adda5b;
      margin-bottom: 10px;
    }

    .applyWork form .file-info {
      font-size: 13px;
      color: #64748b;
      margin-top: 5px;
    }

    /* Tooltip for QLD */
    .tooltip {
      position: relative;
      display: inline-block;
      cursor: help;
    }

    .tooltip .tooltiptext {
      visibility: hidden;
      width: 180px;
      background-color: #1e293b;
      color: #fff;
      text-align: center;
      border-radius: 6px;
      padding: 8px;
      position: absolute;
      z-index: 1;
      bottom: 125%;
      left: 50%;
      transform: translateX(-50%);
      opacity: 0;
      transition: opacity 0.3s;
      font-size: 13px;
      font-weight: normal;
    }

    .tooltip:hover .tooltiptext {
      visibility: visible;
      opacity: 1;
    }

    /* Submit button */
    .applyWork .submit-btn {
      background: #adda5b;
      color: #ffffff;
      border: none;
      padding: 14px 30px;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      margin-top: 25px;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      grid-column: 1 / -1;
      justify-self: start;
    }

    .applyWork .submit-btn:hover {
      background: #008055;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 153, 102, 0.2);
    }

    /* Form validation styling */
    input:required, select:required {
      border-left: 2px solid #adda5b;
    }

    select option:disabled {
      color: #94a3b8;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .applyWork {
        grid-template-columns: 1fr;
        gap: 25px;
      }
    }

    @media (max-width: 768px) {
      .applyWork form {
        grid-template-columns: 1fr;
      }
      
      .applyWork {
        margin: 20px auto;
        padding: 0 15px;
      }
      
      .applyWork .info-box,
      .applyWork .right-box {
        padding: 20px;
      }
    }


    .industrygrs{
      background-color: #f8fafc;
      display: inline-block;
      width: 100%;
      padding: 40px 0 30px 0;
    }
    .industrygrs .section-header {
      text-align: center;
      margin-bottom: 30px;
    }

    .industrygrs .section-header h2 {
      font-size: 28px;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 10px;
    }

    .industrygrs .section-header p {
      font-size: 16px;
      color: #64748b;
      max-width: 600px;
      margin: 0 auto;
    }

    .industrygrs .indusSubtBtn {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      margin: 30px 0;
    }

    .industrygrs .industry-btn {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 25px 20px;
      background: #ffffff;
      color: #1e293b;
      text-decoration: none;
      border-radius: 12px;
      font-size: 16px;
      font-weight: 600;
      text-align: center;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      border: 1px solid #e2e8f0;
      position: relative;
      overflow: hidden;
    }

    .industrygrs .industry-btn:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: #adda5b;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
    }
.industrygrs .indusSubtBtn .mtsBx a + p {
    display: none;
}
    .industrygrs .industry-btn:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 153, 102, 0.15);
    }

    .industrygrs .industry-btn:hover:before {
      transform: scaleX(1);
    }

    .industrygrs .icon-wrapper {
      width: 60px;
      height: 60px;
      background: rgba(0, 153, 102, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 15px;
      transition: all 0.3s ease;
    }

   .industrygrs .industry-btn:hover .icon-wrapper {
      background: #adda5b;
      transform: scale(1.1);
    }

    .industrygrs .industry-btn i {
      font-size: 24px;
      color: #adda5b;
      transition: all 0.3s ease;
    }

    .industrygrs .industry-btn:hover i {
      color: #ffffff;
    }

    .industrygrs .btn-text {
      margin-top: 5px;
      font-size: 14px;
      color: #64748b;
      font-weight: 400;
    }

    /* Specific color variations for each industry */
    .industrygrs .industry-btn.meat:hover {
      box-shadow: 0 10px 25px rgba(220, 38, 38, 0.15);
    }
    .industrygrs .industry-btn.meat:before {
      background: #dc2626;
    }
    .industrygrs .industry-btn.meat:hover .icon-wrapper {
      background: #dc2626;
    }

    .industrygrs .industry-btn.aged-care:hover {
      box-shadow: 0 10px 25px rgba(79, 70, 229, 0.15);
    }
    .industrygrs .industry-btn.aged-care:before {
      background: #4f46e5;
    }
    .industrygrs .industry-btn.aged-care:hover .icon-wrapper {
      background: #4f46e5;
    }

    .industrygrs .industry-btn.mushroom:hover {
      box-shadow: 0 10px 25px rgba(234, 88, 12, 0.15);
    }
    .industrygrs .industry-btn.mushroom:before {
      background: #ea580c;
    }
    .industrygrs .industry-btn.mushroom:hover .icon-wrapper {
      background: #ea580c;
    }

    .industrygrs .industry-btn.poultry:hover {
      box-shadow: 0 10px 25px rgba(202, 138, 4, 0.15);
    }
    .industrygrs .industry-btn.poultry:before {
      background: #ca8a04;
    }
    .industrygrs .industry-btn.poultry:hover .icon-wrapper {
      background: #ca8a04;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .industrygrs .indusSubtBtn {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
      }
      
      .industrygrs .industry-btn {
        padding: 20px 15px;
      }
    }

    @media (max-width: 480px) {
      .industrygrs .section-header h2 {
        font-size: 24px;
      }
      
      .industrygrs .section-header p {
        font-size: 15px;
      }
    }

.meatIndsep {
    padding: 60px 0;
    border-bottom: 1px solid #ccc;
}

    /* Left side boxes */
    .meatIndsep .info-boxes {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 25px;
      flex: 1;
    }

    .meatIndsep .info-box {
      background: linear-gradient(135deg, #ffffff, #f0fdf4);
      border-radius: 16px;
      padding: 24px;
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .meatIndsep .info-box::before {
      content: "";
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 60%);
      transform: rotate(25deg);
    }

    .meatIndsep .info-box:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
    }

    .meatIndsep .info-box h3 {
      margin-top: 0;
      margin-bottom: 15px;
      font-size: 20px;
      font-weight: 600;
      color: #89c858;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .meatIndsep .info-box h3 i {
      color: #89c858;
      font-size: 22px;
    }

    .meatIndsep .info-box ul {
      margin: 0;
      padding-left: 18px;
      list-style: disc;
    }

    .meatIndsep .info-box ul li {
      margin-bottom: 8px;
      font-size: 15px;
      line-height: 1.6;
    }

    /* Right side button */
    .meatIndsep .order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin-top: 50px;
}

    .meatIndsep .order-btn a {
      display: inline-block;
      background: linear-gradient(135deg, #89c858 0%, #adda5b 100%);
      color: #fff;
      padding: 18px 42px;
      font-size: 18px;
      font-weight: 600;
      text-decoration: none;
      border-radius: 50px;
      box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
      transition: all 0.3s ease;
    }

    .meatIndsep .order-btn a:hover {
      background: linear-gradient(135deg, #059669, #89c858);
      box-shadow: 0 8px 20px rgba(16, 185, 129, 0.45);
      transform: scale(1.07);
    }

    @media (max-width: 768px) {
      .meatIndsep {
        flex-direction: column;
        align-items: stretch;
      }
      .meatIndsep .order-btn {
        justify-content: flex-start;
        margin-top: 25px;
      }
    }

.coverSection {
    background: linear-gradient(135deg, #f9fafb, #ffffff);
    padding: 50px 20px;
}

    /* Left Side Box */
    .coverBox {
      flex: 1;
      background: linear-gradient(135deg, #ffffff, #f0fdf4);
      border-radius: 16px;
      padding: 30px;
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .coverBox::before {
      content: "";
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(5,150,105,0.08) 0%, transparent 60%);
      transform: rotate(25deg);
    }

    .coverBox:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
    }

    .coverBox h2 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 20px;
      color: #89c858;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .coverBox h2 i {
      font-size: 22px;
      color: #89c858;
    }

    .coverBox ul {
      margin: 0;
      padding-left: 20px;
    }

    .coverBox ul li {
      margin-bottom: 12px;
      font-size: 15px;
      line-height: 1.6;
    }

    .coverBox ul li strong {
      color: #111827;
    }

    /* Right Side Button */
    .complianceBtn {
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
    }

    .complianceBtn a {
      display: inline-block;
      background: linear-gradient(135deg, #89c858 0%, #adda5b 100%);
      color: #fff;
      padding: 18px 40px;
      font-size: 18px;
      font-weight: 600;
      text-decoration: none;
      border-radius: 50px;
      box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
      transition: all 0.3s ease;
    }

    .complianceBtn a:hover {
      background: linear-gradient(135deg, #059669, #89c858);
      box-shadow: 0 8px 20px rgba(16, 185, 129, 0.45);
      transform: scale(1.07);
    }
    .coverSection .complianceBtn {
        padding-top: 40px;
    }

    @media (max-width: 768px) {
      .coverSection {
        flex-direction: column;
      }
      .complianceBtn {
        justify-content: flex-start;
        margin-top: 25px;
      }
    }

/*About us*/
.aboutUsSection {
    background: #f9fafb;
    padding: 40px 0 60px 0;
}

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

    .aboutUsHeader h2 {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 10px;
      color: #111827;
    }

    .aboutUsHeader p {
      font-size: 18px;
      color: #6b7280;
    }

    /* Top two images side by side */
    .aboutUsTop {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 40px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }

    .aboutUsTop div {
      flex: 1 1 250px;
      text-align: center;
    }

    .aboutUsTop img {
      width: 100%;
      max-width: 300px;
      border-radius: 12px;
      box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    }

    .aboutUsCaption {
      margin-top: 10px;
      font-size: 16px;
      font-weight: 500;
      color: #374151;
      text-align: center;
    }

    .aboutUsQuote {
      background: #ffffff;
      border-left: 5px solid #89c858;
      padding: 25px 30px;
      border-radius: 8px;
      font-size: 18px;
      line-height: 1.7;
      box-shadow: 0 4px 20px rgba(0,0,0,0.05);
      margin: 0 auto 25px;
      max-width: 865px;
    }

    .aboutUsQuote strong {
      font-weight: 600;
      color: #111827;
    }

    .aboutUsQuote em {
      font-style: italic;
      font-weight: 600;
      color: #374151;
    }

    .aboutUsContact {
      text-align: center;
      margin-top: 20px;
    }

    .aboutUsContact a {
      display: inline-block;
      background: #89c858;
      color: #fff;
      text-decoration: none;
      font-size: 17px;
      font-weight: 600;
      padding: 14px 36px;
      border-radius: 8px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 14px rgba(16,185,129,0.3);
    }

    .aboutUsContact a:hover {
      background: #059669;
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(16,185,129,0.4);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .aboutUsHeader h2 {
        font-size: 28px;
      }
      .aboutUsHeader p {
        font-size: 16px;
      }
      .aboutUsTop {
        flex-direction: column;
        gap: 25px;
      }
      .aboutUsQuote {
        font-size: 16px;
        padding: 20px;
      }
      .aboutUsContact a {
        width: 100%;
        max-width: 320px;
      }
    }

    @media (max-width: 480px) {
      .aboutUsSection {
        padding: 20px 15px;
      }
      .aboutUsHeader h2 {
        font-size: 24px;
      }
      .aboutUsQuote {
        font-size: 15px;
      }
    }    
  /* Header */
   .contacsPgs .contact-header {
  background: linear-gradient(135deg, #89c858 0%, #adda5b 100%);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 40px;
}

.contacsPgs .contact-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.contacsPgs .contact-header p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Info */
.contacsPgs {
    background: #f9fafb;
    padding: 0 0 10px 0;
}
.contacsPgs .contact-info {
  background: #fff;
  max-width: 900px;
  margin: -40px auto 50px;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.contacsPgs .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: #374151;
}

.contacsPgs .contact-item i {
  background: #eef2ff;
  color: #adda5b;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Forms Section */
.contacsPgs .form-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.contacsPgs .form-card {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contacsPgs .form-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.contacsPgs .form-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contacsPgs .form-card h3 i {
  background: #eef2ff;
  color: #adda5b;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contacsPgs .form-card p {
  color: #6b7280;
  margin-bottom: 25px;
  font-size: 16px;
}

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

.contacsPgs .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contacsPgs label {
  font-weight: 500;
  font-size: 14px;
  color: #374151;
}

.contacsPgs input, 
.contacsPgs select, 
.contacsPgs textarea {
  padding: 14px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 16px;
  background: #f9fafb;
  transition: all 0.3s ease;
  width: 100%;
}

.contacsPgs input:focus, 
.contacsPgs select:focus, 
.contacsPgs textarea:focus {
  border-color: #adda5b;
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

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

.contacsPgs button {
  background: #adda5b;
  color: #fff;
  padding: 16px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.contacsPgs button:hover {
  background: #666;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 900px) {
  .contacsPgs .form-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contacsPgs .contact-header {
    padding: 40px 20px;
  }
  
  .contacsPgs .contact-header h2 {
    font-size: 28px;
  }
  
  .contacsPgs .contact-info {
    flex-direction: column;
    gap: 20px;
    margin-top: -30px;
  }
  
  .contacsPgs .form-card {
    padding: 30px 25px;
  }
  
  .contacsPgs .form-card h3 {
    font-size: 22px;
  }
}
