
   
    /* Unique prefixes and custom styling */
    .jbh-container * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
    }
    
    .jbh-container {
    
        position: relative;
        overflow-x: hidden;
    }
    
    .banner { height: 45vh;
        background: linear-gradient(135deg, #39cfca 0%, #2a9c98 100%);
        padding: 40px 20px;
        margin-bottom: 30px;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(57, 207, 202, 0.2);
        text-align: center;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        
    }

    .banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="rgba(255,255,255,0.1)" x="0" y="0" width="100" height="100"/></svg>') repeat;
        opacity: 0.1;
    }

    .banner h2 {
        color: white;
        font-size: 2.2rem;
        font-weight: 600;
        margin: 0;
        text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        position: relative;
    }

    /*@media (max-width: 768px) {*/
    /*    .banner {*/
    /*        padding: 30px 15px;*/
    /*        margin-bottom: 20px;*/
    /*    }*/
        
    /*    .banner h2 {*/
    /*        font-size: 1.8rem;*/
    /*    }*/
    /*}*/
    
    .jbh-header {
        text-align: center;
        margin-bottom: 40px;
        position: relative;
    }
    
    .jbh-header__logo {
        /* max-width: 180px; */
        margin-bottom: 15px;
        filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
        transition: transform 0.5s ease;
    }
    

    .jbh-header__title {
        width: 60vw;
    }
    
    .jbh-header__title {
        font-size: 2.5rem;
        display: flex;
        flex-direction: column;
        color: #2a3b4c;
        margin-bottom: 10px;
        background: linear-gradient(90deg, #39cfca, #2a9c98);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        position: relative;
        margin: 0 auto;
       
    }
    
    .jbh-header__subtitle {
        font-size: 1.2rem;
        color: #5a6a7a;
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.6;
       }
    
    .jbh-content {
      margin: auto;
    width: 80%;
        display: grid;
        gap: 30px;
        position: relative;
    }
    
    .jbh-section {
        background: rgba(255, 255, 255, 0.9);
        border-radius: 15px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        overflow: hidden;
     }
    
    .jbh-section:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }
    
    .jbh-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, #39cfca, #2a9c98);
        opacity: 0.1;
    }
    
    .jbh-section__icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #39cfca 0%, #2a9c98 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        color: white;
        font-size: 1.5rem;
        position: relative;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(42, 59, 76, 0.3);
    }
    
    .jbh-section__icon::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 50%);
        top: -50%;
        left: -50%;
        transform: rotate(35deg);
        transition: all 0.6s ease;
    }
    
    .jbh-section:hover .jbh-section__icon::after {
        top: 100%;
        left: 100%;
    }
    
    .jbh-section__title {
        font-size: 1.8rem;
        color: #2a3b4c;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }
    
    .jbh-section__title::after {
        content: '';
        position: absolute;
        width: 0;
        height: 3px;
        bottom: -5px;
        left: 0;
        background: linear-gradient(90deg, #39cfca, #2a9c98);
        transition: width 0.3s ease;
    }
    
    .jbh-section:hover .jbh-section__title::after {
        width: 100%;
    }
    
    .jbh-section__content {
        color: #5a6a7a;
        line-height: 1.7;
        font-size: 1.05rem;
    }
    
    .jbh-list {
        list-style: none;
        margin: 20px 0;
    }
    
    .jbh-list__item {
        margin-bottom: 15px;
        padding-left: 30px;
        position: relative;
       }
    
    .jbh-list__item::before {
        content: '✅';
        position: absolute;
        left: 0;
        color: #39cfca;
        font-weight: bold;
    }
    
    .jbh-career-card {
        background: white;
        border-radius: 10px;
        padding: 25px;
        margin-bottom: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        border-left: 4px solid #39cfca;
    }
    
    .jbh-career-card:hover {
        transform: translateY(-5px) scale(1.01);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        border-left: 4px solid #ff6b6b;
    }
    
    .jbh-career-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 100px;
        height: 100px;
        background: radial-gradient(circle, rgba(74, 100, 145, 0.1) 0%, rgba(255,255,255,0) 70%);
        border-radius: 50%;
        transition: all 0.5s ease;
        z-index: 0;
    }
    
    .jbh-career-card:hover::after {
        transform: scale(2);
        opacity: 0.1;
    }
    
    .jbh-career-card__title {
        font-size: 1.4rem;
        color: #2a3b4c;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        font-weight: 600;
    }
    
    .jbh-career-card__title i {
        margin-right: 10px;
        color: #39cfca;
        transition: all 0.3s ease;
    }
    
    .jbh-career-card:hover .jbh-career-card__title i {
        transform: rotate(10deg);
        color: #ff6b6b;
    }
    
    .jbh-career-card__role {
        font-weight: 500;
        color: #39cfca;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
        padding-bottom: 5px;
    }
    
    .jbh-career-card__role::after {
        content: '';
        position: absolute;
        width: 50%;
        height: 2px;
        bottom: 0;
        left: 0;
        background: #39cfca;
        transition: width 0.3s ease;
    }
    
    .jbh-career-card:hover .jbh-career-card__role::after {
        width: 100%;
    }
    
    .jbh-career-card__details {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-top: 15px;
    }
    
    .jbh-career-card__detail {
        display: flex;
        align-items: center;
    }
    
    .jbh-career-card__detail i {
        color: #39cfca;
        margin-right: 8px;
        font-size: 0.9rem;
    }
    
    .jbh-career-card__skills {
        margin: 15px 0;
    }
    
    .jbh-career-card__skill-title {
        font-weight: 600;
        color: #2a3b4c;
        margin-bottom: 8px;
    }
    
    .jbh-skill-tag {
        display: inline-block;
        background: #f0f4fa;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.9rem;
        color: #39cfca;
        margin-right: 8px;
        margin-bottom: 8px;
        transition: all 0.3s ease;
    }
    
    .jbh-skill-tag:hover {
        background: #39cfca;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 3px 10px rgba(74, 100, 145, 0.3);
    }
    
    .jbh-cta {
        background: linear-gradient(135deg, #39cfca 0%, #2a9c98 100%);
        color: white;
        padding: 40px;
        border-radius: 15px;
        text-align: center;
        margin-top: 50px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 15px 35px rgba(42, 59, 76, 0.25);
    }
    
    .jbh-cta::before {
        content: '';
        position: absolute;
        top: -30px;
        right: -30px;
        width: 150px;
        height: 150px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }
    
    .jbh-cta::after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: -20px;
        width: 100px;
        height: 100px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
    }
    
    .jbh-cta__title {
        font-size: 2rem;
        margin-bottom: 15px;
        position: relative;
        z-index: 1;
    }
    
    .jbh-cta__text {
        font-size: 1.1rem;
        margin-bottom: 25px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
        position: relative;
        z-index: 1;
    }
    
    .jbh-btn {
        display: inline-block;
        background: white;
        color: #2a3b4c;
        padding: 12px 30px;
        border-radius: 30px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 2px solid white;
        position: relative;
        z-index: 1;
        overflow: hidden;
    }
    
    .jbh-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
        transition: all 0.4s ease;
        z-index: -1;
    }
    
    .jbh-btn:hover {
        color: white;
        background: transparent;
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    
    .jbh-btn:hover::before {
        left: 100%;
    }
    
    .jbh-footer {
        text-align: center;
        margin-top: 50px;
        padding-top: 30px;
        border-top: 1px solid rgba(90, 106, 122, 0.1);
        color: #5a6a7a;
    }
    
    .jbh-footer__social {
        margin: 20px 0;
    }
    
    .jbh-social-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: white;
        margin: 0 5px;
        border-radius: 50%;
        color: #39cfca;
        font-size: 1.2rem;
        transition: all 0.3s ease;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    }
    
    .jbh-social-icon:hover {
        background: #39cfca;
        color: white;
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(74, 100, 145, 0.3);
    }
    
    /* Floating elements */
    .jbh-float {
        position: absolute;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(74, 100, 145, 0.2) 0%, rgba(42, 59, 76, 0.1) 100%);
        z-index: -1;
      
    }
    
    .jbh-float--1 {
        width: 150px;
        height: 150px;
        top: 10%;
        right: -50px;
        
    }
    
    .jbh-float--2 {
        width: 100px;
        height: 100px;
        bottom: 20%;
        left: -30px;
       
    }
    
    .jbh-float--3 {
        width: 80px;
        height: 80px;
        top: 40%;
        left: 10%;
      
    }
    

  .skt-container * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }
  
  .skt-section {
      font-family: 'Poppins', sans-serif;
      padding: 4rem 2rem;
      background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
      position: relative;
      overflow: hidden;
  }
  
  .skt-section__background {
      position: absolute;
      background-color: white;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
  }
  
  .skt-section__content {
      position: relative;
      z-index: 1;
      max-width: 1200px;
      margin: 0 auto;
  }
  
  .skt-section__header {
      text-align: center;
      margin-bottom: 4rem;

  }
  
  .skt-section__icon {
      background: #39cfca;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      box-shadow: 0 10px 20px rgba(57, 207, 202, 0.3);
  }
  
  .skt-section__icon i {
      font-size: 2.5rem;
      color: white;
  }
  
  .skt-section__title {
      color: #333;
      font-size: 2.5rem;
      margin-bottom: 1rem;
      position: relative;
      display: inline-block;
  }
  
  .skt-section__title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: #39cfca;
      border-radius: 2px;
  }
  
  .skt-cards-container {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
      gap: 2rem;
  }
  
  .skt-card {
      background: linear-gradient(135deg, #ffffff, #f9f9f9);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      transition: all 0.4s ease;
      position: relative;
      height: 100%;
      display: flex;
      flex-direction: column;
  }
  
  .skt-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }
  
  .skt-card__image {
      height: 200px;
      overflow: hidden;
      position: relative;
  }
  
  .skt-card__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
  }
  
  .skt-card:hover .skt-card__image img {
      transform: scale(1.1);
  }
  
  .skt-card__content {
      padding: 1.5rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
  }
  
  .skt-card__title {
      font-size: 1.6rem;
      color: #333;
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
  }
  
  .skt-card__title i {
      color: #39cfca;
      font-size: 1.4rem;
  }
  
  .skt-card__role {
      color: #666;
      font-size: 1rem;
      margin-bottom: 1rem;
      font-weight: 500;
  }
  
  .skt-card__skills {
      margin-bottom: 1rem;
  }
  
  .skt-card__skill-title {
      font-size: 0.9rem;
      font-weight: 600;
      color: #555;
      margin-bottom: 0.5rem;
  }
  
  .skt-skill-tag {
      display: inline-block;
      background: rgba(57, 207, 202, 0.1);
      color: #39cfca;
      font-size: 0.85rem;
      padding: 0.4rem 0.8rem;
      border-radius: 15px;
      margin: 0 0.3rem 0.5rem 0;
      transition: all 0.3s ease;
  }
  
  .skt-skill-tag:hover {
      background: #39cfca;
      color: white;
      transform: translateY(-3px);
  }
  
  .skt-card__details {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 1rem;
  }
  
  .skt-card__detail {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.9rem;
      color: #555;
  }
  
  .skt-card__detail i {
      color: #39cfca;
  }
  
  .skt-card__footer {
      font-size: 0.9rem;
      color: #777;
      font-style: italic;
      text-align: center;
      margin-top: 1rem;
  }
  
  .skt-card:hover .skt-card__footer {
      color: #39cfca;
  }
  
  .skt-pulse {
      position: absolute;
      right: 1.5rem;
      top: 1.5rem;
      width: 12px;
      height: 12px;
  }
  
  .skt-pulse::before {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background-color: #39cfca;
      animation: skt-pulse 2s infinite;
  }
  
  .skt-pulse::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background-color: #39cfca;
  }
  
 /* Mobile First Approach - Core Media Queries */

/* Small phones (up to 480px) */
@media only screen and (max-width: 480px) {
    .jbh-header__title {
        font-size: 1.3rem;
        width: 90vw;
    }
    
    .jbh-header__subtitle {
        font-size: 0.9rem;
    }
    
    .jbh-content {
        width: 95%;
    }
    
    .jbh-section {
        padding: 15px;
    }
    
    .jbh-section__title {
        font-size: 1.3rem;
    }
    
    .jbh-section__content {
        font-size: 0.95rem;
    }
    
    .jbh-career-card__title {
        font-size: 1.2rem;
    }
    
    .jbh-cta {
        padding: 25px 15px;
    }
    
    .jbh-cta__title {
        font-size: 1.6rem;
    }
    
    .jbh-cta__text {
        font-size: 0.95rem;
    }
    
    .jbh-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .banner {
        height: 30vh;
        padding: 20px 10px;
    }
    
    .banner h2 {
        font-size: 1.6rem;
    }
    
    /* Skills Cards */
    .skt-cards-container {
        grid-template-columns: 1fr;
    }
    
    .skt-section__title {
        font-size: 1.6rem;
    }
    
    .skt-card__title {
        font-size: 1.3rem;
    }
}

/* Medium phones and small tablets (480px - 767px) */
@media only screen and (min-width: 481px) and (max-width: 767px) {
    .jbh-header__title {
        font-size: 1.6rem;
        width: 85vw;
    }
    
    .jbh-content {
        width: 90%;
    }
    
    .jbh-section {
        padding: 20px;
    }
    
    .jbh-section__title {
        font-size: 1.5rem;
    }
    
    .banner {
        height: 35vh;
        padding: 30px 15px;
    }
    
    .banner h2 {
        font-size: 1.8rem;
    }
    
    /* Skills Cards */
    .skt-cards-container {
        grid-template-columns: 1fr;
    }
    
    .skt-section__title {
        font-size: 1.8rem;
    }
}

/* Large phones and tablets (768px - 991px) */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .jbh-header__title {
        font-size: 2rem;
        width: 75vw;
    }
    
    .jbh-content {
        width: 85%;
    }
    
    .jbh-career-card__details {
        grid-template-columns: 1fr;
    }
    
    .banner {
        height: 40vh;
    }
    
    /* Skills Cards */
    .skt-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Medium tablets and small laptops (992px - 1199px) */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .jbh-content {
        width: 80%;
    }
    
    .jbh-career-card__details {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Skills Cards */
    .skt-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Orientation specific adjustments */
@media only screen and (orientation: landscape) and (max-height: 600px) {
    .banner {
        height: 60vh; /* Taller in landscape mode on short screens */
    }
    
    .jbh-header {
        margin-bottom: 20px;
    }
}

/* High-DPI Screens */
@media only screen and (-webkit-min-device-pixel-ratio: 2),
       only screen and (min--moz-device-pixel-ratio: 2),
       only screen and (min-resolution: 192dpi),
       only screen and (min-resolution: 2dppx) {
    /* Optimizations for high-resolution displays if needed */
    .jbh-header__logo, .skt-card__image img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Ensure touch targets are large enough on mobile */
@media only screen and (max-width: 767px) {
    .jbh-btn, .jbh-social-icon, .skt-skill-tag {
        padding: 12px 25px; /* Larger touch area */
        margin-bottom: 10px;
    }
    
    .jbh-social-icon {
        width: 45px;
        height: 45px;
        margin: 0 8px;
    }
    
    .skt-skill-tag {
        padding: 6px 12px;
        margin: 0 5px 8px 0;
    }
    
    .jbh-list__item {
        padding-bottom: 10px; /* More space between items */
    }
}

/* Font size adjustments for different screens */
@media only screen and (max-width: 360px) {
    /* Extra small phones */
    html {
        font-size: 14px; /* Base font size reduction */
    }
}

/* Fix for specific container layouts on different screens */
@media only screen and (max-width: 991px) {
    .jbh-float {
        display: none; /* Hide floating elements on smaller screens for better performance */
    }
}

/* For larger screens to keep container from getting too wide */
@media only screen and (min-width: 1400px) {
    .jbh-content {
        max-width: 1200px;
    }
}