.site-logo .text {
    font-family: "Rubik", sans-serif;
    font-size: 35px;
    font-weight: 600;
    fill: #222;
  }
  .responsibilities {
    text-align: left;
}
.responsibilities li{
    line-height: 30px;
}


			/* Portfolio Details Popup Styles */
		/* Portfolio Modal Styles (Slide from Right Animation) */
    .portfolio-modal {
      position: fixed;
      top: 0;
      right:0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      z-index: 9999;
      overflow-y: auto;
      padding: 50px 0;
      display: flex;
      justify-content: center;
      visibility: hidden;
      opacity: 0;
      transition: visibility 1.5s ease, opacity 0.1.5s ease;
      /* background-color: white; */
    }
    
    .portfolio-modal.show {
      visibility: visible;
      opacity: 1;
    }
    
    .portfolio-modal-content {
      background-color: #fff;
      max-width: 1200px;
      width: 95%;
      margin-right: -100%;
      padding: 40px;
      border-radius: 10px;
      position: relative;
      transition: margin-right 1.5s ease;
      height: fit-content;
      justify-self: 'center';
     /* border: 1px solid red; */
     display: flex;
     flex-direction: column;
     justify-content: center;
     padding-right: ;
    
    }
    
    .portfolio-modal.show .portfolio-modal-content {
      margin-right: 0;
    }
    
    .portfolio-modal-close {
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 30px;
      cursor: pointer;
      background: none;
      border: none;
      z-index: 10;
    }
    
          
          /* Banner section styles */
          .portfolio-modal-banner {
            position: relative;
            margin-bottom: 40px;
            /* border: 3px solid yellow; */
            background-color: #1C3F39;
            padding: 20px;
            color: #fff;
            margin-top: 30px;
            border-radius: 8px;
          }
          
          .portfolio-modal-banner .main_banner_content {
            /* padding: 0; */
            /* border: 3px solid yellow; */
            width: 100%;
            color: white;
            
          }
    
          .ban-head{
            /* border: 3px solid rgb(17, 0, 255); */
            height: 120px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            margin-top: 30px;
            color: white;
    
    
          }
          
          .portfolio-modal-banner .main_banner_content h4 {
            font-size: 36px;
            /* margin-bottom: 20px; */
    margin-top: 25px;
          }
          
          .bameta.pmeta {
            display: flex;
            gap: 30px;
            margin-bottom: 30px;
          }
          
          .bameta.pmeta span h4 {
            font-size: 16px;
            margin-bottom: 5px;
            color: white;
          }
          
          .bameta.pmeta span p {
            font-size: 18px;
            margin: 0;
          }
          
          /* Content section styles */
          .portf-content {
            margin-bottom: 40px;
          }
          
          .portf-content p {
            margin-bottom: 20px;
            line-height: 1.8;
          }
          
          .live-demo-btn {
            margin: 30px 0;
          }
          
          .yellow_btn.yb2 {
            background-color: #FFC107;
            color: #1C3F39;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            display: inline-block;
          }
          
          .pchecklist {
            margin: 40px 0;
          }
          
          .pchecklist h2 {
            font-size: 28px;
            margin-bottom: 20px;
            color: #1C3F39;
          }
          
          .pchecklist ul {
            list-style: none;
            padding: 0;
          }
          
          .pchecklist ul li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 10px;
          }
          
          .pchecklist ul li:before {
            content: "";
            position: absolute;
            left: 0;
            top: 8px;
            width: 10px;
            height: 10px;
            background-color: #1C3F39;
            border-radius: 50%;
          }
          
          .pdimage {
            margin-bottom: 30px;
          }
          
          .pdimage img {
            width: 100%;
            border-radius: 5px;
          }
          
          /* Navigation styles */
          .pnavigation {
            display: flex;
            justify-content: space-between;
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid #eee;
          }
          
          .prev-pro, .next-pro {
            display: flex;
            align-items: center;
            color: #1C3F39;
            font-weight: 600;
          }
          
          .prev-pro svg, .next-pro svg {
            margin: 0 10px;
          }
    
          @media screen and (max-width: 768px) {
      .portfolio-modal-banner {
        flex-direction: column;
        align-items: center;
        padding: 15px;
        text-align: center;
      }
    
      .portfolio-modal-banner .main_banner_content {
        width: 100%;
        margin-bottom: 20px;
      padding: 0%;
      }
    
      .ban-head {
        margin-top: 20px;
        height: auto;
      }
    
      .bameta.pmeta {
        flex-direction: column;
        gap: 15px;
      margin-top: 30px;
      }
      .bameta span {
    
    margin-right: 0%;
      }
    
      .ban-head span{
    
      margin-bottom: 15px;
      }
    
      .ba_shape1 {
        display: none; /* optional, hides the SVG on mobile if it interferes with readability */
      }
    
      .bashape_1,
      .bashape_2,
      .bashape_3 {
        position: static;
        margin: 10px auto;
      }
    
      .portfolio-modal-banner img {
        max-width: 100%;
        height: auto;
      }
    }
    .portfolio-modal-trigger{
      cursor: pointer;
    }