/* // first section design *********************************** */


    /* // first section design *********************************** */

    :root {
      --primarycr: #8cc739;
      --primary-darkcr: #7ab832;
      --primary-lightcr: #e8f5d8;
      --darkcr: #1a1a1a;
      --lightcr: #f4f7fc;
      --accentcr: #ff6b6b;
    }
    
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }


  /* ----------Start Footer(copyright  area css)
 */
  .blog-center {
    text-align: center;
  }

  .r-contact-address {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 10px;
    border-radius: 15px;
  }


  .blog-upload-details {
    margin-bottom: 12px !important;
  }

  .blog-upload-details {
    margin-left: 9px;
  }


  .blog-upload-details span {
    font-size: 12px;
    color: #959595;
  }

  .blog-btn {
    display: inline-block;
    color: #fff;
    background-color: #8CC739;
   
    border: none;
    font-size: 14.5px;
    margin-left: 10px;
    margin-bottom: 6px !important;
    border-radius: 2px;
    width: 125px;
    text-align: center;
    border-radius: 25px;
  }

  .blog-btn-link {
    color: #8CC739;

  }

  .blog-btn:active {

    outline: none;
    border: none;
  }

  .blog-btn:hover {

    cursor: pointer;
  }

  .blog-btn:focus {
    cursor: pointer;
    outline: none;
    border: none;
  }

  .blog-btn-link:active {

    outline: none;
    border: none;
  }

  .blog-btn-link:hover {
    cursor: pointer;

    border: none;
  }

  .blog-btn-link:visited {
    outline: none;
    border: none;
  }

  .blog-btn-link:focus {
    outline: none;
    border: none;
  }

  .r-contact-part {
    padding: 50px 0 50px;
  }


   
    .main-containercr {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 70px 60px;
      min-height: 100vh;
      position: relative;
      overflow: hidden;
      font-family: 'Inter', sans-serif;
      background: linear-gradient(135deg, #ffffff, #ffffff);  
      color: #333;
      margin: 90px auto auto auto;
    
    
    }

    .left-contentcr {
      flex: 1;
      z-index: 2;
      padding-right: 40px;
      position: relative;
    }

    .logo-containercr {
      display: inline-block;
      position: relative;
      margin-bottom: 30px;
    }

    .logo-containercr img {
      width: 100%;
      height: auto;
      transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    }

    .logo-containercr::after {
      content: "";
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 100%;
      height: 3px;
      background: var(--primarycr);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s ease;
    }

    .logo-containercr:hover img {
      transform: rotate(15deg) scale(1.1);
    }

    .logo-containercr:hover::after {
      transform: scaleX(1);
    }

    .left-contentcr h1 {
      font-size: 64px;
      font-weight: 400;
      line-height: 1.3;
      color: var(--darkcr);
      margin-bottom: 25px;
      text-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

    .left-contentcr h1 span {
      font-weight: 800;
      color: var(--primarycr);
      display: block;
      text-transform: uppercase;
      letter-spacing: 3px;
      position: relative;
      display: inline-block;
      margin-top: 10px;
    }

    .left-contentcr h1 span::after {
      content: "";
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 100%;
      height: 8px;
      background: rgba(140, 199, 57, 0.3);
      z-index: -1;
      border-radius: 4px;
      transform-origin: left;
      transition: transform 0.5s ease;
    }

    .left-contentcr h1:hover span::after {
      transform: scaleX(1.1);
    }

    .left-contentcr p {
      font-size: 18px;
      line-height: 1.6;
      color: #555;
      max-width: 500px;
      margin-bottom: 30px;
      position: relative;
      padding-left: 20px;
    }

    .left-contentcr p::before {
      content: "";
      position: absolute;
      left: 0;
      top: 8px;
      height: 60%;
      width: 4px;
      background: var(--primarycr);
      border-radius: 2px;
    }

    .cta-buttoncr {
      display: inline-flex;
      align-items: center;
      margin-top: 30px;
      padding: 18px 45px;
      background: var(--darkcr);
      color: white;
      font-weight: 600;
      text-decoration: none;
      border-radius: 50px;
      transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      position: relative;
      overflow: hidden;
    }

    .cta-buttoncr:hover {
      color: white;

      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .cta-buttoncr::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: 0.5s;
    }

    .cta-buttoncr:hover::before {
      left: 100%;
    }

    .cta-buttoncr i {
      margin-left: 10px;
      transition: transform 0.3s ease;
    }

    .cta-buttoncr:hover i {
      transform: translateX(5px);
    }

    .right-contentcr {
      position: relative;
      width: 50%;
      height: 100%;
      min-height: 600px;
    }

    .green-shapecr {
      position: absolute;
      right: -200px;
      top: 50%;
      transform: translateY(-50%);
      width: 800px;
      height: 800px;
      /* background: rgba(0, 0, 0, 1); */
      z-index: 1;
      border-radius: 50%;
      border: 20px solid #8cc739;
      box-shadow: -30px 30px 60px #8cc7398b;
      animation: floatccc 6s ease-in-out infinite;
    }

    .green-shapecr::after {
      content: "";
      position: absolute;
      top: -10px;
      left: -10px;
      right: -10px;
      bottom: -10px;
      border-radius: 50%;
      border: 3px dashed rgba(255,255,255,0.4);
      animation: rotateccc 30s linear infinite;
    }

    .profile-wrappercr {
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      height: 100%;
      padding-right: 100px;
    }

    .rotating-borderce {
      position: relative;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      animation: pulsecr 2s infinite alternate;
    }

    .rotating-borderce::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: conic-gradient(
        var(--darkcr) 0deg, 
        var(--darkcr) 60deg, 
        transparent 60deg, 
        transparent 120deg, 
        var(--darkcr) 120deg, 
        var(--darkcr) 180deg, 
        transparent 180deg, 
        transparent 240deg, 
        var(--darkcr) 240deg, 
        var(--darkcr) 300deg, 
        transparent 300deg, 
        transparent 360deg
      );
      animation: rotateBordercr 6s linear infinite;
      z-index: 0;
    }

    .profile-imagecr {
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: white;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1;
      position: relative;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
      transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      /* overflow: hidden; */
    }

    .profile-imagecr:hover {
      transform: scale(1.05);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    }

    .profile-imagecr img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      position: relative;
      z-index: 2;
      transition: transform 0.5s ease;
    }

    .profile-imagecr:hover img {
      transform: scale(1.1);
    }

    .floating-iconcrscr {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      pointer-events: none;
    }

    .floating-iconcr {
      position: absolute;
      width: 50px;
      height: 50px;
      background: white;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      color: var(--primarycr);
      font-weight: bold;
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
      animation: floatccc 4s ease-in-out infinite;
      font-size: 20px;
      border: 2px solid var(--primarycr);
    }

    .floating-iconcr:nth-child(1) {
      top: 10%;
      left: 15%;
      animation-delay: 0s;
      width: 40px;
      height: 40px;
    }

    .floating-iconcr:nth-child(2) {
      top: 20%;
      right: 10%;
      animation-delay: 0.5s;
      width: 35px;
      height: 35px;
    }

    .floating-iconcr:nth-child(3) {
      bottom: 15%;
      left: 20%;
      animation-delay: 1s;
      background: white;
      color: white;
    }

    .floating-iconcr:nth-child(4) {
      bottom: 25%;
      right: 15%;
      animation-delay: 1.5s;
      width: 45px;
      height: 45px;
    }

    .search-textcr {
      position: absolute;
      bottom: 0px;
      right: 20px;
      z-index: 1;
      user-select: none;
     
      animation: fadeInRight 1s ease-out;
    }

    .job-countcr {
      position: absolute;
      top: 50px;
      right: 50px;
      background: var(--darkcr);
      color: white;
      padding: 15px 30px;
      border-radius: 50px;
      font-weight: 600;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      z-index: 3;
      animation: bouncecr 2s infinite;
      display: flex;
      align-items: center;
    }

    .job-countcr span {
      color: var(--primarycr);
      font-weight: 800;
      margin-right: 5px;
      font-size: 24px;
    }

    .job-countcr::after {
      content: "";
      position: absolute;
      top: -5px;
      left: -5px;
      right: -5px;
      bottom: -5px;
      border: 2px dashed var(--primarycr);
      border-radius: 50px;
      animation: rotateccc 20s linear infinite;
      pointer-events: none;
    }

    .particlescr {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
    }

    .particlecr {
      position: absolute;
      background: var(--primary-lightcr);
      border-radius: 50%;
      animation: floatccc 8s ease-in-out infinite;
    }

    @keyframes rotateBordercr {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    @keyframes floatccc {
      0% { transform: translateY(0px) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(5deg); }
      100% { transform: translateY(0px) rotate(0deg); }
    }

    @keyframes pulsecr {
      0% { transform: scale(1); }
      100% { transform: scale(1.05); }
    }

    @keyframes bouncecr {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    @keyframes rotateccc {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    @media screen and (max-width: 1200px) {
      .left-contentcr h1 {
        font-size: 54px;
      }
      
      .rotating-borderce {
        width: 380px;
        height: 380px;
      }
      
      .profile-imagecr {
        width: 340px;
        height: 340px;
      }

      .green-shapecr {
        right: -250px;
        width: 700px;
        height: 700px;
      }
    }

    @media screen and (max-width: 991px) {
      .main-containercr {
        flex-direction: column;
        text-align: center;
        padding: 60px 30px;
      }

      .left-contentcr {
        padding-right: 0;
        margin-bottom: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .left-contentcr p {
        padding-left: 0;
        text-align: center;
      }

      .left-contentcr p::before {
        display: none;
      }

      .right-contentcr {
        width: 100%;
        margin-top: 30px;
        min-height: 500px;
      }

      .green-shapecr {
        /* right: 50%; */
        transform: translate(50%, -50%);
        width: 600px;
        height: 600px;
      }

      .profile-wrappercr {
        justify-content: center;
        padding-right: 0;
      }

      .search-textcr {
        font-size: 80px;
        right: 20px;
        bottom: 0px;
      }
      
      .job-countcr {
        top: 20px;
        right: 20px;
        position: relative;
        margin-bottom: 30px;
        align-self: center;
      }
    }

    @media screen and (max-width: 768px) {
      .left-contentcr h1 {
        font-size: 42px;
      }
      
      .rotating-borderce {
        width: 320px;
        height: 320px;
      }
      
      .profile-imagecr {
        width: 280px;
        height: 280px;
      }
      
     .green-shapecr {
        width: 900px;
        height: 900px;
       
     }

      .search-textcr {
        width: 100%;
        bottom: 0px;
      }
    }
     @media screen and (max-width: 576px) {
       .search-textcr {
        width: 100%;
        left: 0;
        right: 0;
        bottom: 0px;
        padding: 10px 10px 0px 10px;
      }
       .search-textcr img{
        max-width: 55vh;
      
      }
     }
/* // first section design *********************************** */
     .wow-dividerr44 {
            position: relative;
            height: 150px;
            width: 100%;
            overflow: hidden;
            margin: 0px 0;
            
        }
        
        .waver44 {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 200%;
            height: 100%;
           background: linear-gradient(90deg, #8cc739 0%, #8cc739 50%, #70a22b 100%);
            clip-path: polygon(100% 0, 0 0, 100% 57%);
        }
         
        
        @keyframes waveAnimationr44 {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        
        /* Optional hover effect */
        .wow-dividerr44:hover .waver44 {
            animation-duration: 30s;
        }
 
/* <!-- second section****************************************** --> */

    :root {
      --primary10: #8cc739;
      --primary-light10: #e8f5d5;
      --primary-dark10: #6da52d;
      --text10: #2d3748;
      --text-light10: #4a5568;
      --bg10: #f8fafc;
    }
      * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    .how-it-works2{
      display: flex;
    justify-content: center;
    padding-top: 80px;
    /* padding-bottom: 100px; */
   
    }
    
    .how-it-works {
      font-family: 'Inter', sans-serif;
      display: flex;
      color: var(--text10);
      background-color: transparent;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 60px;
      padding: 90px 40px;
      max-width: 1600px;
      margin:  0;
      overflow: hidden;
    }

    .how-it-works .left {
      flex: 1;
      min-width: 300px;
      position: relative;
    }

    .how-it-works .left::before {
      content: '';
      position: absolute;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, transparent 50%,rgba(187, 228, 83, 0.59) 50%);
      top: -80px;
      left: -80px;
      z-index: -1;
      opacity: 0.6;
      animation: pulse10 8s infinite alternate;
    }

    .how-it-works .left h5 {
      color: var(--primary10);
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 16px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      position: relative;
      display: inline-block;
    }

    .how-it-works .left h5::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 50px;
      height: 3px;
      background: var(--primary10);
      border-radius: 3px;
    }

    .how-it-works .left h2 {
      font-size: 48px;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 30px;
      background: linear-gradient(90deg, #2d3748 0%, #4a5568 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .featurescrrrr {
      list-style: none;
      margin-top: 40px;
    }

    .featurescrrrr li {
      font-size: 18px;
      margin-bottom: 22px;
      display: flex;
      align-items: center;
      gap: 16px;
      font-weight: 600;
      color: var(--text-light10);
      transition: all 0.3s ease;
      padding: 12px 20px;
      border-radius: 50px;
      background: rgba(255,255,255,0.7);
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    .featurescrrrr li:hover {
      transform: translateX(10px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }

    .featurescrrrr li::before {
      content: '';
      color: #fff;
      background-color: var(--primary10);
      font-size: 14px;
      padding: 6px;
      border-radius: 50%;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      width: 30px;
      height: 30px;
      flex-shrink: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425a.247.247 0 0 1 .02-.022Z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
      background-size: 16px;
    }

    .cardscrrrr {
      flex: 1.5;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      position: relative;
    }

    .cardscrrrr::before {
      content: '';
      position: absolute;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: var(--primary-light10);
      bottom: 100px;
      right: 100px;
      z-index: 1;
      opacity: 0.4;
      animation: pulse10 6s infinite alternate-reverse;
    }

    .cardcr10 {
  position: relative;
  background-color: white;
  border-radius: 24px;
  padding: 40px 30px 30px 40px;
  color: var(--text10);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: visible; /* Keep this as visible for the icon */
  z-index: 1;
    }

    .cardcr10::after {
      content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 18px;
  background: #4a5568;
  top: 0px;
  right: 0px;
  z-index: 2;
  opacity: 0.3;
  transition: all 0.4s ease;
  clip-path: circle(50% at 96% 2%);
      transform: scale(1.2);

    }

    .cardcr10:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    }

    .cardcr10:hover::after {
      transform: scale(1.2);
      opacity: 0.4;
    }

    .cardcr10:nth-child(1) { border-top: 4px solid #4b9ff6; }
    .cardcr10:nth-child(2) { border-top: 4px solid #f4c443; }
    .cardcr10:nth-child(3) { border-top: 4px solid #b37cc5; }
    .cardcr10:nth-child(4) { border-top: 4px solid #3fc6b4; }

    .cardcr10 .icon {
      position: absolute;
      top: -25px;
      left: 30px;
      
      width: 80px;
      height: 80px;
      background: var(--primary10);
      border-radius: 50%;
      box-shadow: 0 15px 30px rgba(140, 199, 57, 0.3);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 2;
      transition: all 0.3s ease;
      overflow: visible !important;
    }

    .cardcr10:hover .icon {
      transform: scale(1.1) rotate(5deg);
      box-shadow: 0 20px 40px rgba(140, 199, 57, 0.4);
    }

    .cardcr10 .icon img {
      width: 36px;
      filter: brightness(0) invert(1);
    }

    .cardcr10 h3 {
      font-size: 22px;
      font-weight: 700;
      margin-top: 60px;
      margin-bottom: 16px;
      line-height: 1.4;
      background: linear-gradient(90deg, #2d3748 0%, #4a5568 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .cardcr10 p {
      font-size: 15px;
      line-height: 1.7;
      margin: 0;
      color: var(--text-light10);
    }

    .cardcr10 .number {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 60px;
      font-weight: 800;
      color: rgba(140, 199, 57, 0.9);
      transition: all 0.3s ease;
    }

    .cardcr10:hover .number {
      color: rgba(41, 41, 41, 1);
      transform: scale(1.1);
    }

    @keyframes pulse10 {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

      @media (max-width: 1200px) {
      .how-it-works {
        padding: 80px 5%;
      }
      
      .cardscrrrr {
        gap: 20px;
      }
    }

    @media (max-width: 1024px) {
      .how-it-works {
        flex-direction: column;
        gap: 40px;
      }
      
      .how-it-works .left {
        text-align: center;
      }
      
      .how-it-works .left h5::after {
        left: 50%;
        transform: translateX(-50%);
      }
      
      .featurescrrrr li {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
      }
      
      .cardscrrrr::before {
        width: 300px;
        height: 300px;
        bottom: -50px;
        right: -50px;
      }
    }

    @media (max-width: 768px) {
      .how-it-works {
        padding: 60px 10px;
      }
      
      .cardscrrrr {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
      }
      
      .how-it-works .left::before {
        width: 200px;
        height: 200px;
        top: -50px;
        left: -50px;
      }
      
      .cardcr10 {
        padding: 30px 25px 25px 30px;
      }
    }

    @media (max-width: 576px) {
      .how-it-works {
        padding: 50px 10px;
        margin: 0 10px 0 10px;
      }
      
      .featurescrrrr li {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px 20px;
      }
      
      .featurescrrrr li::before {
        margin-right: 0;
      }
      
      .cardcr10 h3 {
        margin-top: 50px;
      }
      
      .cardcr10 .icon {
        width: 70px;
        height: 70px;
        left: 20px;
      }
      
      .cardcr10 .number {
        font-size: 40px;
      }
    }

    @media (max-width: 400px) {
      .how-it-works .left::before {
        width: 150px;
        height: 150px;
        top: -30px;
        left: -30px;
      }
      
      .cardscrrrr::before {
        width: 200px;
        height: 200px;
        bottom: -30px;
        right: -30px;
      }
      
      .cardcr10 {
        padding: 25px 20px 20px 25px;
      }
      
      .cardcr10 .icon {
        width: 60px;
        height: 60px;
        top: -20px;
      }
    }


/* <!-- second section****************************************** --> */
  /* third section//////////////////////////////////////////// */
     .how-it-works3{
      display: flex;
       justify-content: center;
      font-family: 'Inter', sans-serif;
      background: linear-gradient(to right, #f6fdf2, #ffffff);
      overflow-x: hidden;
    }

    .job-sectionr4 {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1600px;
      min-height: 130vh;
      padding: 180px 60px 20px 50px;
      gap: 30px;
      overflow: hidden;
    }
    .floating-elementr44scr {
      position: absolute;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }

    .floating-elementr44 {
      position: absolute;
      border-radius: 50%;
      opacity: 0.2;
      filter: blur(1px);
    }

    .element-1r444 {
      width: 100px;
      height: 100px;
      background: radial-gradient(circle, transparent 50%,rgba(187, 228, 83, 0.59) 50%);
      opacity: 0.7;
      top: 20%;
      left: 10%;
      animation: floatr44 15s ease-in-out infinite;
    }



    .element-3r444 {
      width: 60px;
      height: 60px;
      background: #121e3b;
      top: 60%;
      left: 30%;
      animation: floatr44 18s ease-in-out infinite;
    }

    @keyframes floatr44 {
      0% {
        transform: translate(0, 0) rotate(0deg);
      }
      25% {
        transform: translate(20px, 20px) rotate(10deg);
      }
      50% {
        transform: translate(0, 40px) rotate(0deg);
      }
      75% {
        transform: translate(-20px, 20px) rotate(-10deg);
      }
      100% {
        transform: translate(0, 0) rotate(0deg);
      }
    }

    .half-circler444 {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 300px;
      height: 100%;
      background: #e5e7eb; /* light gray */
      border-top-left-radius: 300px;
      border-bottom-left-radius: 300px;
      z-index: 0;
    }

    .left-sider44 {
      flex: 1;
     
      z-index: 1;
    }

    .left-sider44 .tag {
      color: #8cc739;
      font-weight: 700;
      font-size: 16px;
      margin-bottom: 12px;
    }

    .left-sider44 .heading {
      font-size: 3.2rem;
      font-weight: 800;
      color: #121e3b;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .left-sider44 .heading .highlight {
      background: #8cc739;
      color: white;
      padding: 0 10px;
      border-radius: 6px;
    }

    .left-sider44 .description {
      font-size: 16px;
      color: #4b5563;
      line-height: 1.6;
      margin-bottom: 30px;
      max-width: 500px;
    }

    .cta-btn444 {
      background: #8cc739;
      color: #fff;
      padding: 14px 32px;
      border: none;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 8px 16px rgba(140, 199, 57, 0.3);
    }

    .cta-btn444:hover {
      background: #7cb032;
      transform: translateY(-2px);
      box-shadow: 0 12px 24px rgba(140, 199, 57, 0.35);
    }

    .right-sider44 {
      flex: 1;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    
      z-index: 1;
    }

    .framesr44 {
      position: absolute;
      width: 350px;
      height: 450px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 1;
    }

 @keyframes floatUpDownr44 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.frame-boxr44 {
  width: 100%;
  height: 100%;
  border: 30px solid #000;
  position: absolute;
  border-radius: 12px;
  animation: floatUpDownr44 3s ease-in-out infinite;
}

/* Optional: Add delay to each frame for a staggered effect */
.frame-boxr44:nth-child(1) {
  border-color: #121e3b;
    top: -10px;
    left: 140px;
  animation-delay: 0s;
}

.frame-boxr44:nth-child(2) {
  border-color: #000;
top: -80px;
    left: 70px;
  animation-delay: 0.2s;
}

.frame-boxr44:nth-child(3) {
  border-color: #8cc739;
  top: -150px;
  left: 0;
  animation-delay: 0.4s;
}


    .main-imager44 {
      position: relative;
      width: 100%;
      z-index: 2;
      bottom: 0;
    
    }

    @media (max-width: 960px) {
      .job-sectionr4 {
        flex-direction: column;
        padding: 20px;
      }
      .left-sider44 {
    z-index: 1;
    padding-top: 50px;
    width: 80%;
}
.right-sider44 {
    padding-top: 150px;
}
      .left-sider44 .heading {
        font-size: 2.4rem;
      }
      .main-imager44 {
        /* width: 250px; */
        margin-top: 20px;
      }
         .framesr44 {
        width: 280px;
        height: 530px;
    }
      .frame-boxr44 {
    
    border: 20px solid
      }
      .frame-boxr44:nth-child(3) {   
           top: -100px;
        left: 15px;
}
.frame-boxr44:nth-child(2) {
           top: -40px;
        left: 70px;  
}
.frame-boxr44:nth-child(1) {   
          top: 20px;
        left: 130px;
        height: 290px;
    
}
    }
    @media (max-width: 640px) {
       .framesr44 {
               width: 280px;
        height: 440px;
     }
      .frame-boxr44 {
    
       border: 20px solid
      }
      .frame-boxr44:nth-child(3) {   
                top: -80px;
        left: 15px;
      }
      .frame-boxr44:nth-child(2) {
           top: -20px;
        left: 80px;  
     }
      .frame-boxr44:nth-child(1) {   
       top: 20px;
        left: 130px;
        height: 290px;
        border-radius: 25rem;
    
     }
    }

      @media (max-width: 540px) {
       .framesr44 {
       width: 280px;
        height: 400px;
     }
      .frame-boxr44 {
    
       border: 20px solid
      }
      .frame-boxr44:nth-child(3) {   
        top: -75px;
        left: 15px;
      }
      .frame-boxr44:nth-child(2) {
        top: -20px;
        left: 70px;
     }
      .frame-boxr44:nth-child(1) {   
              top: 20px;
        left: 110px;
        height: 200px;
        width: 200px;
        border-radius: 25rem;
    
     }
    }
          @media (max-width: 430px) {
       .framesr44 {
             width: 280px;
        height: 340px;
     }
      .frame-boxr44 {
    
       border: 20px solid
      }
      .frame-boxr44:nth-child(3) {   
        top: -75px;
        left: 15px;
      }
      .frame-boxr44:nth-child(2) {
        top: 0px;
        left: 70px;
     }
      .frame-boxr44:nth-child(1) {   
                   top: 50px;
        left: 125px;
        height: 160px;
        width: 160px;
        border: 15px solid #121e3b;
        border-radius: 25rem;
    
     }
    }

         @media (max-width: 380px) {
       .framesr44 {
        width: 280px;
        height: 350px;
     }
      .frame-boxr44 {
    
       border: 20px solid
      }
      .frame-boxr44:nth-child(3) {   
       top: -25px;
        left: 0px
      }
      .frame-boxr44:nth-child(2) {
        top: 20px;
        left: 50px;
     }
      .frame-boxr44:nth-child(1) {   
         top: 70px;
        left: 110px;
        height: 160px;
        width: 160px;
        border: 15px solid #121e3b;
        border-radius: 25rem;
    
     }
    }


  /* third section//////////////////////////////////////////// */


  /* // four section design *********************************** */

    :root {
      --primary77: #8cc739;
      --primary-light77: #bff475ff;
      --secondary77: #4d4d4dff;
      --accent77: #fd79a8;
      --dark77: #2d3436;
      --light77: #f5f6fa;
      --gradient77: linear-gradient(135deg, #8cc739 0%, #6e9c2eff 100%);
    }

    /* * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    } */
  
    .hpkl{
      font-family: 'Inter', sans-serif;
      color: var(--dark77);
      line-height: 1.6;
    }

    /* Animated Background Elements */
    .bg-elementr55s {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      overflow: hidden;
    }

    .bg-elementr55 {
      position: absolute;
      border-radius: 50%;
      opacity: 0.2;
      animation: floatr55 15s infinite linear;
    }

    @keyframes floatr55 {
      0% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(180deg); }
      100% { transform: translateY(0) rotate(360deg); }
    }

    /* Main Container */
    .job-sectionr55 {
      max-width: 1400px;
      margin: 0 auto;
      padding: 40px 20px 100px 20px;
      position: relative;
    }

    /* Header Styles */
    .job-headerr55 {
      text-align: center;
      margin-bottom: 60px;
      position: relative;
    }

    .job-headerr55 h5 {
      color: var(--secondary77);
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
    }

    .job-headerr55 h5::after {
      content: '';
      position: absolute;
      width: 60%;
      height: 3px;
      background: var(--gradient77);
      bottom: -8px;
      left: 20%;
      border-radius: 3px;
    }

    .job-headerr55 h1 {
      font-size: 3.5rem;
      font-weight: 800;
      margin: 20px 0;
      color: var(--dark77);
      line-height: 1.2;
      background: var(--gradient77);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      animation: gradientShiftr55 8s ease infinite;
      background-size: 200% 200%;
    }

    @keyframes gradientShiftr55 {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .job-headerr55 p {
      max-width: 700px;
      margin: 0 auto 30px;
      font-size: 1.1rem;
      color: #636e72;
    }
    
      .job-grid-wrapper {
  display: flex;
  justify-content: center;
}

    /* Job Grid */
    .job-gridr55 {
      display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 per row on large screens */
  gap: 30px;
  perspective: 1000px;
   justify-content: center;
    }

    /* Job Card */
    .job-carr55d {
      background: white;
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0px 10px 13px 1px rgb(0 0 0 / 41%);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      display: flex;
      flex-direction: column;
       justify-content: space-between;
      height: 100%;
      transform-style: preserve-3d;
      z-index: 1;
    }

    .job-carr55d::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 8px;
      background: var(--gradient77);
    }

    .job-carr55d:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0px 10px 0px 1px rgb(0 0 0 / 72%);
    }

    .job-carr55d:hover .company-logor55 {
      transform: scale(1.1) translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .company-logor55 {
      width: 80px;
      height: 80px;
      background: #000000;
      border-radius: 20px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: -40px;
      left: 30px;
      transition: all 0.3s ease;
      z-index: 2;
    }

    .company-logor55 img {
      max-width: 60%;
      filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
    }

    .job-typer55 {
      position: absolute;
      top: 25px;
      right: 25px;
      background: var(--gradient77);
      color: white;
      padding: 6px 16px;
      font-size: 0.75rem;
      font-weight: 700;
      border-radius: 30px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .job-typer55.part {
      background: linear-gradient(135deg, #fdcb6e 0%, #e17055 100%);
    }

    .job-titler55 {
      font-size: 1.5rem;
      font-weight: 800;
      margin: 50px 0 10px;
      color: var(--dark77);
    }

    .job-metar55 {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      margin-bottom: 20px;
    }

    .meta-itemr55 {
      display: flex;
      align-items: center;
      font-size: 0.9rem;
      color: #636e72;
    }

    .meta-itemr55 i {
      margin-right: 8px;
      color: var(--primary77);
      font-size: 1rem;
    }

    .job-salaryr55 {
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--secondary77);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
    }

    .job-salaryr55 i {
      margin-right: 8px;
    }

        .job-descriptionr55 {
      margin-top: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
    }
    .share-btn-wrapper {
  margin-top: auto;
  text-align: right;
}

.btn-share-job {
  background-color: #f1f1f1;
  color: #333;
  border: 1px solid #ccc;
  font-size: 14px;
  padding: 6px 12px;
  transition: 0.3s ease;
  gap: 7px
}
.job-imgr55 {
  display: none; /* Hidden by default */
}

.show-img .job-imgr55 {
  display: block;
  margin-bottom: 10px;
  text-align: center;
}

.job-imgr55 img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
}

.btn-share-job:hover {
  background-color: #8cc739;
  color: white;
  border-color: #8cc739;
}
    .job-actionsr55 {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: auto;
      border-top: 1px dashed #dfe6e9;
      padding-top: 20px;
    }

    .btnr55 {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 24px;
      border-radius: 50px;
      font-size: 0.9rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      cursor: pointer;
      border: none;
      outline: none;
    }

    .btn-primaryr55 {
      background: var(--gradient77);
      color: white;
      box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
      gap: 10px;
    }

    .btn-primaryr55:hover {
      color: white;

      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
    }

    .btn-outliner55 {
      background: transparent;
      color: var(--primary77);
      border: 2px solid var(--primary77);
      gap: 10px;
    }

    .btn-outliner55:hover {
      background: var(--primary77);
      color: white;
    }

    /* Modal Styles */
    .modal55 {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(45, 52, 54, 0.9);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      backdrop-filter: blur(5px);
    }

    .modal-contentr55 {
      background: white;
      padding: 40px;
      border-radius: 25px;
      max-width: 800px;
      width: 90%;
      position: relative;
      box-shadow: 0 25px 50px rgba(0,0,0,0.2);
      max-height: 90vh;
      overflow-y: auto;
      transform: scale(0.9);
      opacity: 0;
      transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .modal55.active .modal-contentr55 {
      transform: scale(1);
      opacity: 1;
    }

    .close-modalr55 {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #f1f2f6;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      z-index: 10;
    }

    .close-modalr55:hover {
      background: var(--primary77);
      color: white;
      transform: rotate(90deg);
    }

    .modal-headerr55 {
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 20px;
    }

    .modal-headerr55::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100px;
      height: 4px;
      background: var(--gradient77);
      border-radius: 2px;
    }

    .modal-titler55 {
      font-size: 2rem;
      font-weight: 800;
      color: var(--dark77);
      margin-bottom: 10px;
    }

    .modal-subtitler55 {
      color: #636e72;
      font-size: 1rem;
    }

    .modal-bodyr55 {
      margin-top: 20px;
      scroll-behavior: smooth;
    }

    .detail-groupr55 {
      margin-bottom: 25px;
    }

    .detail-labelr55 {
      font-weight: 700;
      color: var(--primary77);
      margin-bottom: 8px;
      display: flex;
      align-items: center;
    }

    .detail-labelr55 i {
      margin-right: 10px;
      font-size: 1.1rem;
    }

    .detail-contentr55 {
      padding-left: 25px;
      color: #2d3436;
    }

    .detail-contentr55 ul {
      list-style-type: none;
    }

    .detail-contentr55 ul li {
      position: relative;
      padding-left: 25px;
      margin-bottom: 8px;
    }

    .detail-contentr55 ul li::before {
      content: '\f00c';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      left: 0;
      color: var(--secondary77);
    }

    .modal-footerr55 {
      margin-top: 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 15px;
    }

    .apply-btnr55 {
      padding: 15px 30px;
      font-size: 1rem;
      background: var(--gradient77);
      color: white;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 700;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      box-shadow: 0 5px 20px rgba(108, 92, 231, 0.3);
    }

    .apply-btnr55 i {
      margin-left: 8px;
      transition: transform 0.3s ease;
    }

    .apply-btnr55:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
    }

    .apply-btnr55:hover i {
      transform: translateX(5px);
    }

    .email-linkr55 {
      color: #636e72;
      transition: color 0.3s ease;
    }

    .email-linkr55:hover {
      color: var(--primary77);
    }

    /* floatingr55 Animation */
    @keyframes floatingr55 {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-15px); }
      100% { transform: translateY(0px); }
    }

    .floatingr55 {
      animation: floatingr55 3s ease-in-out infinite;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
      .job-headerr55 h1 {
        font-size: 2.8rem;
      }
    }

    @media (max-width: 768px) {
      .job-headerr55 h1 {
        font-size: 2.2rem;
      }
      
      .job-headerr55 p {
        font-size: 1rem;
      }
      
      .job-gridr55 {
        grid-template-columns: 1fr;
        gap: 50px;
      }
      
      .modal-contentr55 {
        padding: 30px 20px;
      }
      
      .modal-titler55 {
        font-size: 1.5rem;
      }
    }

    @media (max-width: 480px) {
      .job-headerr55 h1 {
        font-size: 1.8rem;
      }
      
      .job-carr55d {
        padding: 25px 20px;
      }
      
      .job-actionsr55 {
        flex-direction: column;
        gap: 15px;
      }
      
      .btnr55 {
        width: 100%;
      }
    }
 
/* // four section design *********************************** */



/* // last section/.................................................... */

        
        :root {
            --primaryoo: #8cc739;
            --primary-darkoo: #7cb62d;
            --primary-lightoo: #d8f5a2;
            --darkoo: #2d3748;
            --lightoo: #f8fafc;
            --grayoo: #e2e8f0;
            --dark-grayoo: #94a3b8;
            --shadow-smoo: 4px 4px 8px rgba(0, 0, 0, 0.1), -4px -4px 8px rgba(255, 255, 255, 0.8);
            --shadow-mdoo: 6px 6px 12px rgba(0, 0, 0, 0.1), -6px -6px 12px rgba(255, 255, 255, 0.8);
            --shadow-lgoo: 8px 8px 16px rgba(0, 0, 0, 0.1), -8px -8px 16px rgba(255, 255, 255, 0.8);
            --shadow-insetoo: inset 3px 3px 6px rgba(0, 0, 0, 0.1), inset -3px -3px 6px rgba(255, 255, 255, 0.8);
            --transitionoo: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .containeroooo2 {
            background: transparent;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            color: #333;
            font-family: 'Inter', sans-serif;
        }

      

        .containeroooo {
            display: flex;
            width: 100%;
            max-width: 1200px;
                margin-right: 350px;
        }

        .photo-sectionooooo {
            flex: 1;
           
            overflow: hidden;
          
            position: relative;
           
        }

        .photo-sectionooooo img {
           
          height: 100%;
   background-size:cover;
   background-repeat:no-repeat;
    display: block;
    position: relative;
    left: -22px;
    /* z-index: 5; */
        }

   

        .form-containeroooo {
            flex: 1;
            background: radial-gradient(circle at 20% 30%, #eef1f6, #d4dbe4);
            padding: 50px 40px;
            border-radius: 35px;
            box-shadow:
                20px 20px 45px rgba(0, 0, 0, 0.15),
                -15px -15px 35px rgba(255, 255, 255, 0.8),
                inset -2px -2px 5px rgba(255, 255, 255, 0.7),
                inset 2px 2px 5px rgba(0, 0, 0, 0.1);
            position: relative;
            transition: all 0.4s ease;
        }

        .form-containeroooo:hover {
            transform: scale(1.01);
            box-shadow:
                24px 24px 48px rgba(0, 0, 0, 0.18),
                -16px -16px 38px rgba(255, 255, 255, 0.9),
                inset -2px -2px 4px rgba(255, 255, 255, 0.65),
                inset 2px 2px 4px rgba(0, 0, 0, 0.12);
        }

        /* Header section */
        .form-headeroooo {
            text-align: center;
            margin-bottom: 2.5rem;
            position: relative;
        }

        .logo-containeroooo {
            position: relative;
            width: 100px;
            height: 100px;
            margin: 0 auto 1.5rem;
            perspective: 1000px;
        }

        .logoll {
            width: 100%;
            height: 100%;
            background:transparent;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-smoo), 0 0 0 8px rgba(140, 199, 57, 0.1);
            transform-style: preserve-3d;
            animation: rotateLogolllo 20s infinite linear;
            transition: var(--transitionoo);
        }

        .logoll i {
            color: white;
            font-size: 2.5rem;
            transform: translateZ(20px);
        }

        .logo-pulselolo {
            position: absolute;
            top: -15px;
            left: -15px;
            right: -15px;
            bottom: -15px;
            border: 2px solid var(--primaryoo);
            border-radius: 50%;
            animation: pulseoo 3s infinite ease-out;
            opacity: 0;
        }

        .hjk {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--darkoo);
            position: relative;
            display: inline-block;
            background: linear-gradient(to right, var(--darkoo), var(--primary-darkoo));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .subtitlelolo {
            font-size: 1.1rem;
            color: var(--dark-grayoo);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .form-gridlolo {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 25px;
        }

        .form-groupllo {
            margin-bottom: 15px;
        }

        .full-widthllo {
            grid-column: span 2;
        }

        .input-boxllo {
            background: #dde1e7;
            box-shadow: inset 6px 6px 10px #c8ccd1, inset -6px -6px 10px #f2f6fa;
            border-radius: 20px;
            padding: 12px 18px 12px 45px;
            display: flex;
            align-items: center;
            transition: 0.2s;
            position: relative;
        }

        .input-boxllo:focus-within {
            box-shadow: inset 2px 2px 6px #c1c5ca, inset -2px -2px 6px #f5f9fd;
        }

        .input-boxllo i {
            position: absolute;
            left: 15px;
            color: #7a7f87;
            font-size: 1.1rem;
        }

        .input-boxllo input,
        .input-boxllo select,
        .input-boxllo textarea {
            border: none;
            background: none;
            outline: none;
            width: 100%;
            font-size: 0.95rem;
            color: #333;
            padding: 2px 0;
        }

        .input-boxllo textarea {
            min-height: 100px;
            resize: vertical;
        }

        .input-boxllo select {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 8px center;
            background-size: 1rem;
        }

        .submit-btnllo {
            width: 100%;
            padding: 14px;
            border: none;
            border-radius: 25px;
            background: linear-gradient(135deg, #8cc739, #7cb62d);
            color: white;
            font-weight: 600;
            font-size: 1.05rem;
            cursor: pointer;
            box-shadow: 
                8px 8px 16px rgba(0, 0, 0, 0.15),
                -6px -6px 14px rgba(255, 255, 255, 0.8);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .submit-btnllo:hover {
            background: linear-gradient(135deg, #7cb62d, #6ca822);
            box-shadow: 
                10px 10px 20px rgba(0, 0, 0, 0.2),
                -8px -8px 14px rgba(255, 255, 255, 0.9);
        }

        .dividerllo {
            display: flex;
            align-items: center;
            margin: 25px 0;
            color: #777;
            font-size: 0.9rem;
        }

        .dividerllo::before,
        .dividerllo::after {
            content: "";
            flex: 1;
            height: 1px;
            background: linear-gradient(to right, transparent, #c8ccd1, transparent);
        }

        .dividerllo span {
            padding: 0 12px;
        }

        .email-optionllo {
            text-align: center;
            font-size: 0.9rem;
            color: #555;
        }

        .email-linkllo {
            color: #8cc739;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s;
        }

        .email-linkllo:hover {
            text-decoration: underline;
        }

        .form-statusllo {
            text-align: center;
            margin-top: 20px;
            min-height: 40px;
        }

        .loadingoo {
            display: none;
            justify-content: center;
        }

        .loading-spinnerllo {
            width: 24px;
            height: 24px;
            border: 3px solid rgba(140, 199, 57, 0.2);
            border-top-color: #8cc739;
            border-radius: 50%;
            animation: spinoo 1s linear infinite;
        }

        .status-messagello {
            display: none;
            padding: 10px 15px;
            border-radius: 15px;
            background: rgba(140, 199, 57, 0.1);
            color: #5a8e1b;
            font-size: 0.9rem;
            box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.05);
        }

       

        @keyframes pulseoo {
            0% { transform: scale(0.95); opacity: 0.7; }
            70% { transform: scale(1.1); opacity: 0; }
            100% { transform: scale(1.1); opacity: 0; }
        }

        @keyframes rotateLogolllo {
            from { transform: rotateY(0); }
            to { transform: rotateY(360deg); }
        }

    

        @keyframes spinoo {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

       

    @media (max-width: 1200px) {
    .containeroooo {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin-right: 0px;
}
             .photo-sectionooooo {
           display: none;
           
        }
    }

        @media (max-width: 992px) {
            
            .containeroooo {
                flex-direction: column;
            }
            
            .photo-sectionooooo {
                display: none; /* Hide photo section on smaller screens */
            }
        }

        @media (max-width: 768px) {
            
            
            .form-gridlolo {
                grid-template-columns: 1fr;
            }

            .full-widthllo {
                grid-column: span 1;
            }

            .form-containeroooo {
                padding: 40px 30px;
            }
            
        }
        
         @media (max-width: 600px) {
           .containeroooo2 {
            width: 100%;
           padding: 10px;
   
         }
         }

        @media (max-width: 480px) {
            .form-containeroooo {
                padding: 30px 20px;
                border-radius: 25px;
            }
             .logo-containeroooo {
                width: 80px;
                height: 80px;
            }

           .logoll i {
                font-size: 2rem;
            }

            .hjk {
                font-size: 1.8rem;
            }

            .subtitlelolo {
                font-size: 1rem;
            }
        }
  
/* // last section/.................................................... */




/* <!-- faq first section *************************************************** --> */
    .faq-herofaq {
      position: relative;
      font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #111827;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 120px 80px 80px 80px;
      min-height: 90vh;
      background: transparent;
      overflow: hidden;
      margin-top:100px;
    }

.faq-herofaq::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: -1;
 
  background: linear-gradient(135deg, #000000e2 0%, #121b0717 100%);

clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
}

    .faq-herofaq .content {
      max-width: 600px;
      z-index: 2;
      
    }

    .faq-herofaq .content small {
      display: inline-block;
      font-size: 0.9rem;
      font-weight: 600;
      color: #0f1506c6;
      background: rgba(140, 199, 57, 0.1);
      padding: 8px 16px;
      border-radius: 50px;
      margin-bottom: 20px;
      
    }

    .faq-herofaq .content h1 {
      font-size: 3.5rem;
      font-weight: 800;
      line-height: 1.2;
      color: #111827;
      margin-bottom: 20px;
      background: linear-gradient(90deg, #111827 0%, #8cc739 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
     
    }

    .faq-herofaq .content h1 span {
      color: #8cc739;
      display: inline-block;
     
    }

    .faq-herofaq .content p {
      font-size: 1.1rem;
      color: #4b5563;
      margin-bottom: 30px;
     
    }

    .faq-herofaq .content .buttonsgggg {
      display: flex;
      gap: 20px;
     
    }

    .faq-herofaq .content .buttonsgggg a {
      padding: 14px 28px;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    }

    .faq-herofaq .content .buttonsgggg .primaryfaq {
      background: linear-gradient(135deg, #8cc739 0%, #6da82d 100%);
      color: white;
      position: relative;
      overflow: hidden;
    }

    .faq-herofaq .content .buttonsgggg .primaryfaq::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: 0.5s;
    }

    .faq-herofaq .content .buttonsgggg .primaryfaq:hover::before {
      left: 100%;
    }

    .faq-herofaq .content .buttonsgggg .primaryfaq:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(140, 199, 57, 0.3);
    }

    .faq-herofaq .content .buttonsgggg .secondaryfaq {
      background-color: transparent;
      color: #111827;
      border: 2px solid #111827;
    }

    .faq-herofaq .content .buttonsgggg .secondaryfaq:hover {
      background-color: #111827;
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .faq-herofaq .imageffff {
      position: relative;
      width: 500px;
      height: auto;
      z-index: 2;
     
    }

    .faq-herofaq .imageffff img {
      width: 100%;
      height: auto;
      filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
     transition:all 0.5s ease;
    }

 
    .shape-bggggggg {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: 0;
      overflow: hidden;
      background: linear-gradient(135deg, rgba(248, 250, 243, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
    }

    .shape-bggggggg::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle, rgba(140, 199, 57, 0.1) 0%, transparent 70%);
      border-radius: 50%;
      
    }

    .shape-bggggggg::after {
      content: '';
      position: absolute;
      bottom: -20%;
      left: -20%;
      width: 60%;
      height: 60%;
      background: radial-gradient(circle, rgba(140, 199, 57, 0.1) 0%, transparent 70%);
      border-radius: 50%;
     
    }



    .floating-iconghgfys {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 1;
    }

    .floating-iconghgfys i {
      position: absolute;
      color: rgba(140, 199, 57, 0.2);
      font-size: 1.5rem;
      animation: float 5s ease-in-out infinite;
    }

    .floating-iconghgfys i:nth-child(1) {
      top: 20%;
      left: 15%;
     
    }

    .floating-iconghgfys i:nth-child(2) {
      top: 60%;
      left: 25%;
     
    }

    .floating-iconghgfys i:nth-child(3) {
      top: 30%;
      right: 20%;
     
    }

    .floating-iconghgfys i:nth-child(4) {
      bottom: 20%;
      right: 25%;
     
    }

    
    /* Responsive adjustments */
    @media (max-width: 1200px) {
      .faq-herofaq {
        flex-direction: column;
        text-align: center;
        padding: 60px 40px;
      }
      
      .faq-herofaq .content {
        max-width: 100%;
        margin-bottom: 40px;
      }
      
      .faq-herofaq .content .buttonsgggg {
        justify-content: center;
      }
      
      .faq-herofaq .imageffff {
        width: 80%;
        max-width: 400px;
      }
      
     
    }

    @media (max-width: 768px) {
      .faq-herofaq {
        padding: 120px 20px 40px 20px;
      }
      
      .faq-herofaq::before {
      background: linear-gradient(135deg, #0000003b 0%, #121b0717 100%);

     }
      
      .faq-herofaq .content h1 {
        font-size: 2.5rem;
      }
      
      .faq-herofaq .content .buttonsgggg {
        flex-direction: column;
        gap: 15px;
      }
      
      .faq-herofaq .content .buttonsgggg a {
        justify-content: center;
      }
     
    }

/* <!-- faq first section *************************************************** --> */


/* <!-- faq second section *************************************************** --> */
    .r-faq-sectionghjk {
        background: transparent;
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    
    .headshapeghhh {
      content: "";
      position: absolute;
      top: 0px;
      right: 0px;
      left:0px;
      width: 100%;
      height: 50%;
     background: #8CC739;
   clip-path: polygon(100% 0, 0 14%, 0 46%);
     
      z-index: -1;
    }

    
    .r-faq-sectionghjkimg {
      content: "";
      position: absolute;
      bottom: 0px;
      left: 0px;
      width:700px;
      height:700px;
   
     background-size:cover;
     background-repeat:no-repeat;
    z-index: 1;
    }
    
    .r-faq-headerghyjt-wrappergghh {
      margin-bottom: 60px;
      text-align: center;
    }
    
    .r-faq-headerghyjt h2 {
      font-size: 50px;
      font-weight: 300;
      color: #21300e;
      margin-bottom: 20px;
      font-weight: 700;
  font-family: "Poppins", sans-serif;
      position: relative;
      display: inline-block;
    }
    
    .r-faq-headerghyjt h2 strong {
      font-weight: 700;
      color: rgba(0, 0, 0, 0.547);
    }
    
    .r-faq-headerghyjt h2:after {
      content: "";
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #8cc739;
      border-radius: 2px;
    }
    
    .r-accordionhjyui {
       background: transparent !important;
            box-shadow: inset 6px 6px 10px #c3d3b2ff, inset -6px -6px 10px #ebf8d5ff !important;
      border-radius: 20px !important;
      margin-bottom: 20px !important;
    
      overflow: hidden !important;
      transition: all 0.3s ease !important;
      position: relative !important;
      z-index: 1 !important;
    }
    
    .r-accordionhjyui:hover {
      box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
      transform: translateY(-3px) !important;
    }
    
    .r-accordionhjyui-heading {
      padding: 20px 25px !important;
      font-size: 18px !important;
      font-weight: 600 !important;
      color: #333 !important;
      cursor: pointer !important;
      display: flex !important;
      justify-content: space-between !important;
      align-items: center !important;
      transition: all 0.3s ease !important;
      position: relative !important;
    }
    
    .r-accordionhjyui-heading:after {
      content: "+" !important;
      font-size: 24px !important;
      color: #8cc739 !important;
      font-weight: bold !important;
      transition: all 0.3s ease !important;
    }
    
    .r-accordionhjyui.activeghjj .r-accordionhjyui-heading:after {
      content: "-" !important;
      color: #fff !important;
    }
    
    .r-accordionhjyui.activeghjj .r-accordionhjyui-heading {
      background-color: #8cc739 !important;
      color: white !important;
    }
    
    .r-accordionhjyui-body {
      padding: 0 25px !important;
      max-height: 0 !important;
      overflow: hidden !important;
      background-color: #f4fee5ff !important;
      box-shadow: inset -1px -5px 10px 0px #0000006b !important;
      transition: all 0.3s ease !important;
    }
    
    .r-accordionhjyui.activeghjj .r-accordionhjyui-body {
      padding: 0 25px 25px !important;
      max-height: 500px !important;
    }
    
    .r-accordionhjyui-body h3 {
      color: #8cc739 !important;
      font-size: 18px !important;
      margin-bottom: 10px !important;
    }
    
    .r-accordionhjyui-body p {
      color: #666 !important;
      line-height: 1.6 !important;
      margin-bottom: 0 !important;
    }
    
    .r-accordionhjyui-icon {
      width: 24px !important;
      height: 24px !important;
      transition: all 0.3s ease !important;
    }
    
    .r-accordionhjyui.activeghjj .r-accordionhjyui-icon {
      filter: brightness(0) invert(1) !important;
    }
    
    /* New layout styles */
    .r-faq-content-wrapperhjhh {
      display: flex;
      flex-wrap: wrap;
     justify-content: center;
     align-items: start;
  
    }
    
    .r-faq-image-colhhhh {
      flex: 0 0 40%;
      max-width: 40%;
      padding-right: 30px;
      position: relative;
      z-index: 2;
    }
    
    .r-faq-image-colhhhh img {
      width: 100%;
      height: 100%;
     
    }
    
    .r-faq-accordion-coltyyy {
      flex: 0 0 50%;
      max-width: 60%;
    }
    
    /* Responsive adjustments */
    @media (max-width: 991px) {
      .r-faq-headerghyjt h2 {
        font-size: 36px;
      }
      
      .r-faq-image-colhhhh,
      .r-faq-accordion-coltyyy {
        flex: 0 0 100%;
        max-width: 100%;
      }
      
      .r-faq-image-colhhhh {
        padding-right: 0;
        margin-bottom: 30px;
      }
    }
    
    @media (max-width: 767px) {
      .r-faq-sectionghjk {
        padding: 60px 0;
      }
      
      .r-faq-headerghyjt h2 {
        font-size: 30px;
      }
      
      .r-accordionhjyui-heading {
        font-size: 16px;
        padding: 15px 20px;
      }
      
      .r-accordionhjyui-body {
        padding: 0 20px;
      }
      
      .r-accordionhjyui.activeghjj .r-accordionhjyui-body {
        padding: 0 20px 20px;
      }
    }
    
    @media (max-width: 575px) {
      .r-faq-headerghyjt h2 {
        font-size: 26px;
      }
    }

/* <!-- faq second section *************************************************** --> */