html, body {
  overflow-x: hidden;
}

body{
  margin: 0;
  padding: 0;
}

#abt-img2 {
  position: absolute;
  width: 200px;
}

.flexja{
  display: flex;
  justify-content: center;
  align-items: center;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  /* background-color: white; */
}




.dlyt-container {
max-width: 100%;
overflow-x: hidden;
background-color: white;
/* min-height: 70vh; */
margin-top: 4vw;
padding: 3vw 0 3vw 0;
}

.dlyt-hero {
display: flex;
padding: 0 5% 0 5%; /* Removed top padding, kept others */
align-items: flex-start; /* Changed from center to flex-start to align at top */
background-color : white;
min-height: 50vh;
position: relative;
margin-top: 0;
}

.dlyt-hero-content {
flex: 1;
padding-right: 2rem;
animation: fadeInLeft 1s ease;
margin-top: 0;
padding-top: 5rem; /* Small padding to prevent content from being flush against the very top */
}
.dlyt-subtitle {
  color: #333;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeIn 1s ease 0.2s forwards;
}
.dlyt-hero-image img{
  width: 40vw;
}

.dlyt-title {
  font-size: 3rem;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  opacity: 0;
  animation: fadeIn 1s ease 0.4s forwards;
}

.dlyt-description {
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0;
  animation: fadeIn 1s ease 0.6s forwards;
}

.dlyt-cta-buttons {
  display: flex;
  gap: 1rem;
  opacity: 0;
  animation: fadeIn 1s ease 0.8s forwards;
}

.dlyt-btn {
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.dlyt-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  z-index: -1;
}

.dlyt-btn:hover::before {
  left: 0;
}

.dlyt-btn-primary {
  background-color: #39cfca;
  color: white;
  border: 2px solid #39cfca;
  box-shadow: 0 5px 15px rgba(57, 207, 202, 0.3);
}

.dlyt-btn-primary:hover {
  background-color: transparent;
  color: #39cfca;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(57, 207, 202, 0.4);
}

.dlyt-btn-secondary {
  background-color: transparent;
  color: #333;
  border: 2px solid #333;
}

.dlyt-btn-secondary:hover {
  background-color: #333;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(51, 51, 51, 0.2);
}

.dlyt-hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dlyt-hero-image{
  margin-top: 4vw;
}



/* New styles for bottom image */
.dlyt-bottom-image-container {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  z-index: 2;
}

.dlyt-bottom-image {
  width: 100%;
  height: auto;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp 2.5s ease 1s forwards;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes laptopAnimation {
  0% {
    opacity: 0;
    transform: translateY(100px) rotateY(0deg);
  }
  50% {
    opacity: 0.8;
    transform: translateY(20px) rotateY(180deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateY(360deg);
  }
}

/* New animation for bottom image */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Tablets (landscape) */
@media (max-width: 1024px) {
  .dlyt-hero {
    flex-direction: column;
    text-align: center;
    padding: 3rem 5%;
  }
  
  .dlyt-hero-content {
    padding-right: 0;
    margin-bottom: 2rem;
    padding-top: 3rem;
  }
  
  .dlyt-cta-buttons {
    justify-content: center;
  }
  
  .dlyt-title {
    font-size: 2.8rem;
  }
  
  .dlyt-hero-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2vw;
  }
  
  .dlyt-hero-image img {
    width: 60vw;
    max-width: 500px;
  }
  
  .dlyt-bottom-image-container {
    width: 220px;
  }
}

/* Tablets (portrait) */
@media (max-width: 768px) {
  .dlyt-container {
    margin-top: 2vw;
    padding: 2vw 0;
  }
  
  .dlyt-hero-content {
    padding-top: 2rem;
  }
  
  .dlyt-title {
    padding-top: 20vw;
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  
  .dlyt-subtitle {
    font-size: 1.1rem;
  }
  
  .dlyt-description {
    font-size: 0.95rem;
  }
  
  .dlyt-hero-image {
    margin-top: 1vw;
  }
  
  .dlyt-hero-image img {
    width: 70vw;
  }
  
  .dlyt-bottom-image-container {
    width: 180px;
    bottom: 10px;
  }
}

/* Large Phones */
@media (max-width: 576px) {
  .dlyt-hero {
    padding: 2rem 5% 4rem;
  }
  
  .dlyt-hero-content {
    padding-top: 1rem;
  }
  
  .dlyt-title {
    padding-top: 20vw;
    font-size: 1.9rem;
  }
  
  .dlyt-subtitle {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }
  
  .dlyt-description {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
  }
  
  .dlyt-btn {
    padding: 0.7rem 1.3rem;
    font-size: 0.9rem;
  }
  
  .dlyt-hero-image {
    padding: 4vw 0;
  }
  
  .dlyt-hero-image img {
    width: 80vw;
  }
  
  .dlyt-bottom-image-container {
    width: 160px;
    bottom: 5px;
  }
}

/* Small Phones */
@media (max-width: 480px) {
  .dlyt-container {
    margin-top: 1vw;
  }
  
  .dlyt-hero {
    padding: 1.5rem 4% 3.5rem;
  }
  
  .dlyt-title {
    padding-top: 20vw;
    font-size: 1.7rem;
  }
  
  .dlyt-cta-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .dlyt-btn {
    width: 100%;
    text-align: center;
    padding: 0.6rem 1rem;
  }
  
  .dlyt-hero-image {
    padding: 3vw 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .dlyt-hero-image img {
    width: 90vw;
  }
  
  .dlyt-bottom-image-container {
    width: 140px;
    bottom: 0;
  }
}

/* Extra Small Phones */
@media (max-width: 360px) {
  .dlyt-hero-content {
    padding-top: 0.5rem;
  }
  
  .dlyt-title {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
  }
  
  .dlyt-subtitle {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
  }
  
  .dlyt-description {
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
  }
  
  .dlyt-btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
  }
  
  .dlyt-hero-image {
    padding: 2vw 0;
  }
  
  .dlyt-bottom-image-container {
    width: 120px;
  }
}


/* Logo Styles */
.jbh-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #000000, #39cfca);
    color: #fff;
    font-weight: bold;
    font-size: 2vw;
    text-align: center;
    position: relative;
    width: 22vw;
    height: 6vw;
    clip-path: polygon(0% 0%, 100% 0, 70% 100%, 30% 100%);
    border-radius: 1vw;
    box-shadow: 0.3vw 0.3vw 1vw rgba(0, 0, 0, 0.5),
        inset 0.2vw 0.2vw 0.5vw rgba(255, 255, 255, 0.2),
        inset -0.2vw -0.2vw 0.5vw rgba(8, 8, 8, 0.5);
    transition: all 0.3s ease-in-out;
}

.jbh-logo img {
    width: 4vw;
    height: 4vw;
    border-radius: 50%;
    object-fit: cover;
    outline: 0.2vw solid rgba(57, 207, 202, 0.8);
    outline-offset: 0.5vw;
    box-shadow: 0 0 1vw rgba(57, 207, 202, 0.8),
        0 0 2vw rgba(57, 207, 202, 0.6),
        0 0 3vw rgba(57, 207, 202, 0.4);
    transition: all 0.3s ease;
}

.jbh-logo img:hover {
    transform: scale(1.1);
    outline: 2px solid rgba(57, 207, 202, 1);
    box-shadow: 0 0 20px rgba(57, 207, 202, 0.8),
        0 0 40px rgba(57, 207, 202, 0.6),
        0 0 60px rgba(57, 207, 202, 0.4);
    filter: brightness(1.2);
}

/* Menu items */
.jbh-menu-items {
    display: flex;
}

.jbh-nav-item {
    position: relative;
    padding: 15px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.jbh-nav-item a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.jbh-nav-item a:hover {
    color: #39cfca;
}

.jbh-nav-item:hover > a {
    color: white;
}

/* First level dropdown */
.jbh-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background-color: #39cfca;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    border-radius: 0 0 4px 4px;
}

.jbh-nav-item:hover > .jbh-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Second level dropdown */
.jbh-dropdown-item {
    position: relative;
    display: block;
}

.jbh-dropdown-item a {
    color: white;
    padding: 12px 20px;
    display: block;
    transition: background-color 0.3s ease;
}

.jbh-dropdown-item a:hover {
    background-color: #2ab8b4;
}

.jbh-dropdown-item-with-children > a::after {
    content: "▶";
    position: absolute;
    right: 15px;
    transition: transform 0.3s ease;
}

.jbh-dropdown-item-with-children:hover > a::after {
    transform: rotate(90deg);
}

.jbh-subdropdown {
    position: absolute;
    top: 0;
    left: 100%;
    width: 220px;
    background-color: #2ab8b4;
    box-shadow: 8px 0 16px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    z-index: 101;
    border-radius: 0 4px 4px 0;
}

.jbh-dropdown-item-with-children:hover > .jbh-subdropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.jbh-subdropdown-item a {
    padding: 12px 20px;
    color: white;
    display: block;
}

.jbh-subdropdown-item a:hover {
    background-color: #1e9e9a;
}

/* Mobile menu styles */
.jbh-menu-toggle {
    display: none;
    font-size: 24px;
    padding: 15px;
    cursor: pointer;
    color: #39cfca;
}

/* Card Styles */
.jbh-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 40px 20px;
}

.jbh-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 300px;
    transition: all 0.3s ease;
    position: relative;
}

.jbh-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(57, 207, 202, 0.2),
                0 0 20px rgba(57, 207, 202, 0.3);
}

.jbh-card:hover::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    background: linear-gradient(45deg, transparent, #39cfca, transparent);
    z-index: -1;
    animation: jbh-border-animation 2s linear infinite;
}

@keyframes jbh-border-animation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.jbh-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.jbh-card-content {
    padding: 20px;
}

.jbh-card-title {
    color: #333;
    font-size: 18px;
    margin-bottom: 10px;
}

.jbh-card-text {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.jbh-card-btn {
    display: inline-block;
    background-color: #39cfca;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.jbh-card-btn:hover {
    background-color: #2ab8b4;
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(57, 207, 202, 0.5);
}

/* Responsive styles */
@media (max-width: 768px) {
    .jbh-nav-container {
      margin-top: 6vw;
        flex-direction: column;
        align-items: flex-start;
        padding: 0 0 0 0;
    }

    .jbh-logo {
        width: 50vw;
        height: 12vw;
        font-size: 4vw;
        margin-bottom: 10px;
    }

    .jbh-logo img {
        width: 8vw;
        height: 8vw;
    }
    

    .jbh-menu-items {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    
    .jbh-menu-items.jbh-active {
        display: flex;
    }
    
    .jbh-menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
    }
    
    .jbh-nav-item {
        width: 100%;
    }
    
    /* Mobile dropdown adjustments */
    .jbh-dropdown {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        transition: max-height 0.5s ease;
        box-shadow: none;
    }
    
    .jbh-nav-item:hover > .jbh-dropdown {
        visibility: visible;
        max-height: 2000px;
    }
    
    .jbh-dropdown-item-with-children > a::after {
        content: "▼";
        transform: rotate(0);
    }
    
    .jbh-dropdown-item-with-children:hover > a::after {
        transform: rotate(180deg);
    }
    
    .jbh-subdropdown {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        box-shadow: none;
        transition: max-height 0.5s ease;
        background-color: #1e9e9a;
        padding-left: 15px;
    }
    
    .jbh-dropdown-item-with-children:hover > .jbh-subdropdown {
        visibility: visible;
        max-height: 1000px;
    }

    .jbh-cards-container {
        padding: 20px 10px;
    }

    .jbh-card {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .jbh-logo {
        width: 70vw;
        height: 15vw;
        font-size: 5vw;
    }

    .jbh-logo img {
        width: 10vw;
        height: 10vw;
    }
}

.jbh-container {margin-top: 6vw;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: white;
}


.jbh-reset {
  
  position: fixed;
  z-index: 999;
  width: 100vw;
  /* top: 0; */

    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Navigation styles */
.jbh-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.jbh-nav-container {
    display: flex;
    /* max-width: 1200px; */
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    padding: 0 16% 0 5%;
}

/* Logo Styles */
.jbh-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #000000, #39cfca);
    color: #fff;
    font-weight: bold;
    font-size: 2vw;
    text-align: center;
    position: relative;
    width: 22vw;
    height: 6vw;
    clip-path: polygon(0% 0%, 100% 0, 70% 100%, 30% 100%);
    border-radius: 1vw;
    box-shadow: 0.3vw 0.3vw 1vw rgba(0, 0, 0, 0.5),
        inset 0.2vw 0.2vw 0.5vw rgba(255, 255, 255, 0.2),
        inset -0.2vw -0.2vw 0.5vw rgba(8, 8, 8, 0.5);
    transition: all 0.3s ease-in-out;
}

.jbh-logo img {
    width: 4vw;
    height: 4vw;
    border-radius: 50%;
    object-fit: cover;
    outline: 0.2vw solid rgba(57, 207, 202, 0.8);
    outline-offset: 0.5vw;
    box-shadow: 0 0 1vw rgba(57, 207, 202, 0.8),
        0 0 2vw rgba(57, 207, 202, 0.6),
        0 0 3vw rgba(57, 207, 202, 0.4);
    transition: all 0.3s ease;
}

.jbh-logo img:hover {
    transform: scale(1.1);
    outline: 2px solid rgba(57, 207, 202, 1);
    box-shadow: 0 0 20px rgba(57, 207, 202, 0.8),
        0 0 40px rgba(57, 207, 202, 0.6),
        0 0 60px rgba(57, 207, 202, 0.4);
    filter: brightness(1.2);
}

/* Menu items */
.jbh-menu-items {
    display: flex;
}

.jbh-nav-item {
    position: relative;
    padding: 15px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.jbh-nav-item a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}



.jbh-nav-item:hover > a {
    color:#39cfca;
}

/* First level dropdown */
.jbh-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background-color: #39cfca;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    border-radius: 0 0 4px 4px;
}

.jbh-nav-item:hover > .jbh-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Second level dropdown */
.jbh-dropdown-item {
    position: relative;
    display: block;
}

.jbh-dropdown-item a {
    color: white;
    padding: 12px 20px;
    display: block;
    transition: background-color 0.3s ease;
}

.jbh-dropdown-item a:hover {
    background-color: #2ab8b4;
    
}

.jbh-dropdown-item-with-children > a::after {
    content: "▶";
    position: absolute;
    right: 15px;
    transition: transform 0.3s ease;
}

.jbh-dropdown-item-with-children:hover > a::after {
    transform: rotate(90deg);
}

.jbh-subdropdown {
    position: absolute;
    top: 0;
    left: 100%;
    width: 220px;
    background-color: #2ab8b4;
    box-shadow: 8px 0 16px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    z-index: 101;
    border-radius: 0 4px 4px 0;
}

.jbh-dropdown-item-with-children:hover > .jbh-subdropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.jbh-subdropdown-item a {
    padding: 12px 20px;
    color: white;
    display: block;
}

.jbh-subdropdown-item a:hover {
    background-color: #1e9e9a;
}

/* Mobile menu styles */
.jbh-menu-toggle {
    display: none;
    font-size: 24px;
    padding: 15px;
    cursor: pointer;
    color: #39cfca;
}


.jbh-hero {
  display: flex;
  flex-wrap: wrap;
  padding: 0 5%;
  align-items: center;
  background-color: #fff;
  }
  
  .jbh-hero-text {
  flex: 1;
  min-width: 300px;
  padding-right: 2rem;
  }
  
  .jbh-hero-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  }
  
  .jbh-hero-image img {
  max-width: 100%;
  border-radius: 10px;
  scale: 0.7;
  /* box-shadow: 0 10px 30px rgba(57, 207, 202, 0.2) */
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  }
  
  
  .jbh-hero-image img:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(57, 207, 202, 0.4);
  }
  
  .jbh-subtitle {
  color: #000000;
  font-size: 3rem;
  margin-bottom: 0.5rem;  padding-top: 4vw;
  font-weight: 600;
  }
  
  .jbh-title {
  font-size: 2.5rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: #333;
  }
  
  .jbh-title span {
  color: #39cfca;
  }
  .jbh-title2 {
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: #333;
  }
  
  .jbh-title3 {
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 1.2rem;
  color: #333;
  width: 60vw;
  margin: 0 auto;
  text-align: center;
  }
  .jbh-title5 {
    font-size: 2.4rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #333;
    }
    .jbh-title5 span {
      color: #39cfca;}
      
  
  .jbh-title4 {
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 1.2rem;
  color: #333;
  width: 60vw;
  margin: 0 auto;
  text-align: center;
  }
  .jbh-title4 span {
  color: #39cfca;}
  
  .jbh-title span {
  color: #39cfca;
  }
  
  .jbh-title2 span {
  color: #39cfca;
  }
  
  .jbh-title3 span {
  color: #39cfca;
  }
  
  
  
  .jbh-description {
  color: #555;
  line-height: 1.6;
  margin-bottom: 2rem;
  }
  
  .jbh-services {
  padding: 4rem 5%;
  background-color: #f8f8f8;
  }
  
  .jbh-services-title {
  text-align: center;
  margin-bottom: 3rem;
  }
  
  .jbh-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  }
  
  .jbh-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 2rem;
  width: calc(33.333% - 2rem);
  min-width: 250px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  }
  
  .jbh-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(57, 207, 202, 0.1) 0%, rgba(57, 207, 202, 0) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  }
  
  .jbh-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(57, 207, 202, 0.2);
  }
  
  .jbh-card:hover::before {
  opacity: 1;
  }
  
  .jbh-card-icon {
  font-size: 2.5rem;
  color: #39cfca;
  margin-bottom: 1.5rem;
  }
  
  .jbh-card-title {
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 1rem;
  color: #333;
  }
  
  .jbh-card-description {
  color: #666;
  line-height: 1.6;
  }
  
  .jbh-expertise {
  padding: 4rem 5%;
  background-color: #fff;
  }
  
  .jbh-expertise-title {
  text-align: center;
  margin-bottom: 3rem;
  }
  
  .jbh-expertise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  }
  
  .jbh-expertise-item {
  background: #f8f8f8;
  border-radius: 10px;
  padding: 1.5rem;
  width: calc(33.333% - 1.5rem);
  min-width: 250px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  }
  
  .jbh-expertise-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(57, 207, 202, 0.2);
  background-color: #39cfca;
  color: white;
  }
  
  .jbh-expertise-icon {
  margin-right: 1rem;
  font-size: 1.5rem;
  color: #39cfca;
  transition: color 0.3s ease;
  }
  
  .jbh-expertise-item:hover .jbh-expertise-icon {
  color: white;
  }
  
  .jbh-expertise-text {
  font-weight: 500;
  }
  
  .jbh-contact {
  padding: 1rem 5%;
  background-color: white;
  text-align: center;
  }
  
  .jbh-contact-title {
  margin-bottom: 2rem;
  }
  
  .jbh-contact-phone {
  display: inline-block;
  /* background-color: #39cfca; */
  /* color: white; */
  padding: 1rem 1rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px #0000004d; 
  }
  
  .jbh-contact-phone:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(57, 207, 202, 0.5);
  }
  
  .jbh-footer {
  background-color: #292929;
  color: #f5f5f5;
  padding: 2rem 5%;
  text-align: center;
  }
  
  .jbh-footer-text {
  margin: 0;
  font-size: 0.9rem;
  }
  
  /* Animations */
  @keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  
  to {
    opacity: 1;
    transform: translateY(0);
  }
  }
  
  .jbh-hero,
  .jbh-card,
  .jbh-expertise-item {
  animation: fadeIn 0.8s ease forwards;
  }
  
  .jbh-card:nth-child(2) {
  animation-delay: 0.2s;
  }
  
  .jbh-card:nth-child(3) {
  animation-delay: 0.4s;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
  .jbh-navbar {
    flex-direction: column;
    padding: 1rem;
  }
  
  .jbh-logo {
    margin-bottom: 1rem;
  }
  
  .jbh-nav-items {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .jbh-hero {
    flex-direction: column;
    padding: 2rem 1rem;
  }
  
  .jbh-hero-text {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .jbh-title {
    font-size: 2rem;
  }
  
  .jbh-card,
  .jbh-expertise-item {
    width: 100%;
  }
  }
  
  .jbh-hero-text li {
  margin-left: 20px;
  }

  .custom-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background-color: #ffffff;
}

.custom-card {
    background: #39cfca;
    color: white;
    font-family: Arial, sans-serif;
    padding: 20px;
    width: 250px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* 
.custom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(57, 207, 202, 0.6);
}

.custom-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-card:hover::before {
    opacity: 1;
} */

@media (max-width: 768px) {
    .custom-container {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 1024px) {
.tp-card {
width: calc(50% - 20px);
}
.tp-heading {
font-size: 2.2rem;
}
.tp-description {
padding: 0 5%;
}
.tp-section{
padding: 0 4vw;
}
}

@media (max-width: 768px) {
.tp-container {
padding-top: 6vw;
}
.tp-services {
padding: 3rem 5%;
}
.tp-heading {
font-size: 1.8rem;
line-height: 1.3;
}
.tp-subtitle-text {
font-size: 1.1rem;
}
.tp-description {
font-size: 0.95rem;
margin: 1rem auto;
}
.tp-card {
width: 100%;
margin: 0 auto;
}
.tp-card-image {
height: 220px;
}
.tp-program-title {
font-size: 1.3rem;
}
.tp-program-count {
font-size: 0.9rem;
}
.tp-contact {
font-size: 1rem;
margin-top: 2rem;
}
.tp-section{
padding: 0 4vw;
}
}

@media (max-width: 480px) {
.tp-container {
padding-top: 8vw;
margin-top: 2rem;
}
.tp-header {
margin-bottom: 2rem;
}
.tp-heading {
font-size: 1.6rem;
}
.tp-subtitle-text {
font-size: 1rem;
}
.tp-divider {
width: 80px;
height: 3px;
}
.tp-card-image {
height: 200px;
}
.tp-card-content {
padding: 15px;
}
.tp-program-title {
font-size: 1.2rem;
}
.tp-program-count {
font-size: 0.85rem;
margin-bottom: 8px;
}
.tp-contact {
font-size: 0.95rem;
}
.tp-section{
padding: 0 4vw;
}
}

@media (max-width: 360px) {
.tp-heading {
font-size: 1.4rem;
}
.tp-section{
padding: 0 4vw;
}
.tp-description {
font-size: 0.9rem;
}
.tp-card-image {
height: 180px;
}
}

/* Base styles */
.cta-container {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  margin: 0% auto;
  /* padding: 2rem; */
  max-width: 900px;
  background: white;
  border-radius: 12px;
  /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05); */
}

.cta-heading {
  color: #2c3e50;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
  animation: fadeInDown 1s ease-out;
}

.cta-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #39cfca;
  border-radius: 2px;
  animation: expandWidth 1.5s ease-out forwards;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.8rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  position: relative;
  overflow: hidden;
  color: white;
  z-index: 1;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  animation: fadeInUp 1s ease-out forwards;
}

.cta-button:nth-child(1) {
  background: linear-gradient(45deg, #3498db, #2980b9);
  animation-delay: 0.2s;
}

.cta-button:nth-child(2) {
  background: linear-gradient(45deg, #39cfca, #2ab9b4);
  animation-delay: 0.4s;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-30deg);
  transition: all 0.5s ease;
  z-index: -1;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button i {
  font-size: 1.2rem;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandWidth {
  from {
    width: 0;
  }

  to {
    width: 80px;
  }
}

/* Responsive styles */
@media (max-width: 768px) {
  .cta-heading {
    font-size: 1.8rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .cta-button {
    width: 100%;
    max-width: 260px;
  }
}

@media (max-width: 480px) {
  .cta-container {
    padding: 1.5rem;
    margin: 2rem auto;
  }

  .cta-heading {
    font-size: 1.5rem;
  }
}

/* <!-- course2 --> */
.tp-container {
  padding-top: 4vw;
  border-top: 4px solid #39cfca;
}

.tp-container {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-top: 4vw;
  box-sizing: border-box;
  background-color: white;
}

.tp-services {
  padding: 4rem 5%;
  background-color: white;
}

.tp-services-title {
  text-align: center;
  margin-bottom: 3rem;
}

.tp-title3 {
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 1.2rem;
  color: #333;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.tp-subtitle {
  color: #39cfca;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;  padding-top: 4vw;
  font-weight: 600;
  text-align: center;
}

.tp-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.tp-section {
  max-width: 1200px;
  margin: 0 auto 5vw; 
}

.tp-header {
  text-align: center;
  margin-bottom: 3rem;
}

.tp-subtitle-text {
  color: #000000;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;  padding-top: 4vw;
}

.tp-heading {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 0.5rem;  padding-top: 4vw;
}

.tp-heading span {
  color: #39cfca;
}

.tp-divider {
  width: 120px;
  height: 4px;
  background-color: #39cfca;
  margin: 1rem auto;
  transition: all 0.4s ease;
}

.tp-container:hover .tp-divider {
  width: 150px;
  background-color: #2a9d99;
}

.tp-description {
  color: #555;
  line-height: 1.6;
  max-width: 800px;
  margin: 1.5rem auto;
  text-align: center;
}

.tp-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
 justify-content: center;

}
.tp-container {
  padding-top: 4vw;
  border-top: 4px solid #39cfca;
}

.tp-container {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-top: 4vw;
  box-sizing: border-box;
  background-color: white;
}

.tp-services {
  padding: 4rem 5%;
  background-color: white;
}

.tp-services-title {
  text-align: center;
  margin-bottom: 3rem;
}

.tp-title3 {
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 1.2rem;
  color: #333;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.tp-subtitle {
  color: #39cfca;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;  padding-top: 4vw;
  font-weight: 600;
  text-align: center;
}

.tp-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.tp-section {
  max-width: 1200px;
  margin: 0 auto 5vw; 
}

.tp-header {
  text-align: center;
  margin-bottom: 3rem;
}

.tp-subtitle-text {
  color: #000000;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;  padding-top: 4vw;
}

.tp-heading {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 0.5rem;  padding-top: 4vw;
}

.tp-heading span {
  color: #39cfca;
}

.tp-divider {
  width: 120px;
  height: 4px;
  background-color: #39cfca;
  margin: 1rem auto;
  transition: all 0.4s ease;
}

.tp-container:hover .tp-divider {
  width: 150px;
  background-color: #2a9d99;
}

.tp-description {
  color: #555;
  line-height: 1.6;
  max-width: 800px;
  margin: 1.5rem auto;
  text-align: center;
}

.tp-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  /* justify-content: space-between; */
}

.tp-card {
  width: calc(25% - 20px);
  max-width: 380px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transform: translateY(0);
}


.tp-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(57, 207, 202, 0.3);
}

.tp-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.tp-card:hover .tp-card-image {
  transform: scale(1.1);
}

.tp-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  opacity: 1;
  transition: all 0.4s ease;
}

.tp-card:hover .tp-card-overlay {
  background: linear-gradient(to top, rgba(57, 207, 202, 0.8), rgba(57, 207, 202, 0.4));
}

.tp-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  color: white;
  transform: translateY(0);
  transition: all 0.4s ease;
}

.tp-card:hover .tp-card-content {
  transform: translateY(-10px);
}

.tp-program-count {
  display: inline-block;
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 500;
  opacity: 0.8;
  transition: all 0.4s ease;
}

.tp-card:hover .tp-program-count {
  opacity: 1;
  color: #fff;
  transform: translateY(-5px);
}

.tp-program-title {
  font-size: 1.4rem;
  margin: 0;
  font-weight: 700;
  transition: all 0.4s ease;
}

.tp-card:hover .tp-program-title {
  transform: translateY(-5px);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.tp-contact {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.2rem;
}

.tp-contact-link {
  color: #39cfca;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.tp-contact-link:hover {
  color: #2a9d99;
}

.tp-contact-link:after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #2a9d99;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.tp-contact-link:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .tp-card {
    width: calc(33.33% - 20px);
  }
}

@media (max-width: 768px) {
  .tp-card {
    width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .tp-card {
    width: 100%;
  }
  
  .tp-subtitle-text {
    font-size: 2.2rem;
  }
}
/* Responsive adjustments */
@media (max-width: 1024px) {
  .tp-card {
    width: calc(33.33% - 20px);
  }
}

@media (max-width: 768px) {
  .tp-card {
    width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .tp-card {
    width: 100%;
  }
  
  .tp-subtitle-text {
    font-size: 2.2rem;
  }
}
@media (max-width: 1024px) {
  .tp-card {
    width: calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .tp-card {
    width: 100%;
  }

  .tp-heading {
    font-size: 2rem;
  }
}

@media (max-width: 1024px) {
  .tp-card {
  width: calc(50% - 20px);
  }
  .tp-heading {
  font-size: 2.2rem;
  }
  .tp-description {
  padding: 0 5%;
  }
  .tp-section{
  padding: 0 4vw;
  
  }
  }
  
  @media (max-width: 768px) {
  .tp-container {
  padding-top: 6vw;
  
  }
  .tp-services {
  padding: 3rem 5%;
  }
  .tp-heading {
  font-size: 1.8rem;
  line-height: 1.3;
  }
  .tp-subtitle-text {
  font-size: 1.1rem;
  }
  .tp-description {
  font-size: 0.95rem;
  margin: 1rem auto;
  }
  .tp-card {
  width: 100%;
  margin: 0 auto;
  }
  .tp-card-image {
  height: 220px;
  }
  .tp-program-title {
  font-size: 1.3rem;
  }
  .tp-program-count {
  font-size: 0.9rem;
  }
  .tp-contact {
  font-size: 1rem;
  margin-top: 2rem;
  }
  .tp-section{
  padding: 0 4vw;
  }
  }
  
  @media (max-width: 480px) {
  .tp-container {
  padding-top: 8vw;
  margin-top: 2rem;
  }
  .tp-header {
  margin-bottom: 2rem;
  }
  .tp-heading {
  font-size: 1.6rem;
  }
  .tp-subtitle-text {
  font-size: 1rem;
  }
  .tp-divider {
  width: 80px;
  height: 3px;
  }
  .tp-card-image {
  height: 200px;
  }
  .tp-card-content {
  padding: 15px;
  }
  .tp-program-title {
  font-size: 1.2rem;
  }
  .tp-program-count {
  font-size: 0.85rem;
  margin-bottom: 8px;
  }
  .tp-contact {
  font-size: 0.95rem;
  }
  .tp-section{
  padding: 0 4vw;
  }
  }
  
  @media (max-width: 360px) {
  .tp-heading {
  font-size: 1.4rem;
  }
  .tp-section{
  padding: 0 4vw;
  }
  .tp-description {
  font-size: 0.9rem;
  }
  .tp-card-image {
  height: 180px;
  }
  }
  

  
/* <!-- blogss --> */


  .tech-container {
    background-color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1200px;
    margin: 4vw auto 0 auto;
    padding: 70px 20px;
    border-top: 4px solid  #39cfca;
  }

  .tech-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .tech-title {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 10px;
  }

  .tech-subtitle {
    color: #39cfca;
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .tech-divider {
    width: 80px;
    height: 4px;
    background-color: #39cfca;
    margin: 0 auto;
  }

  .tech-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    
  }

  .tech-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
  }

  .tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(57, 207, 202, 0.3);
  }

  .tech-card:hover::before {
    opacity: 1;
  }

  .tech-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    scale: 1.5;
    background: linear-gradient(45deg, #39cfca, #39cfca, #2ab5b1);
    z-index: -1;
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .tech-card-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
  }

  .tech-card-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #39cfca;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
  }

  .tech-card-content {
    padding: 20px;
  }

  .tech-card-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: bold;
  }

  .tech-card-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .tech-card-link {
    display: inline-block;
    text-decoration: none;
    color: #39cfca;
    font-weight: bold;
    transition: color 0.3s ease;
  }

  .tech-card-link:hover {
    color: #2ab5b1;
  }

  .tech-footer {
    text-align: center;
    margin-top: 60px;
  }
  .tech-cta-container{
    margin: 3vw 0 0vw;
  }

  .tech-cta {
    display: inline-block;
    margin: 0 10px;
    padding: 10px 25px;
    background-color: #39cfca;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #39cfca;
  }

  .tech-cta:hover {
    background-color: transparent;
    color: #39cfca;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .tech-card {
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
  }

  .tech-card:nth-child(1) {
    animation-delay: 0.1s;
  }

  .tech-card:nth-child(2) {
    animation-delay: 0.3s;
  }

  .tech-card:nth-child(3) {
    animation-delay: 0.5s;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .tech-cards-container {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .tech-title {
      font-size: 2rem;
    }

    .tech-subtitle {
      font-size: 1.5rem;
    }
  }

  @media (max-width: 480px) {
    .tech-cards-container {
      grid-template-columns: 1fr;
    }

    .tech-title {
      font-size: 1.8rem;
    }

    .tech-subtitle {
      font-size: 1.2rem;
    }

    .tech-footer {
      display: flex;
      flex-direction: column;
    }

    .tech-cta {
      margin: 10px 0;
    }
  }

/* <!-- whyus --> */

  .why-choose-section-alt {
    border-top: 4px solid  #39cfca;
    background: white;
    padding: 65px 0;
 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .container-alt {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .section-header-alt {
    text-align: center;
    margin-bottom: 60px;
  }

  .section-title-alt {
    color: #333;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
  }

  .section-title-alt span {
    background: linear-gradient(to right, #39cfca, #2ba8a4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .feature-grid-alt {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }

  .feature-card-alt {
    background:#f1f9ff;
    /* border-radius: 10px; */
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #f0f0f0;
    /* box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03); */
  }

  .feature-card-alt:hover {
    scale: 1.03;
    background-color: white;
    border-color: rgba(57, 207, 202, 0.2);
    box-shadow: 0 45px 35px rgba(0, 0, 0, 0.1);
  }

  .feature-icon-alt {
    font-size: 1.8rem;
    margin-bottom: 20px;
    background: #f1f9ff;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .feature-card-alt:hover .feature-icon-alt {
    background: linear-gradient(135deg, #39cfca, #2ba8a4);
    color: white;
  }

  .feature-title-alt {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 2px solid transparent;
    display: inline-block;
    padding-bottom: 5px;
    transition: all 0.3s ease;
  }

  .feature-card-alt:hover .feature-title-alt {
    border-color: rgba(57, 207, 202, 0.3);
    color: #2ba8a4;
  }

  .feature-description-alt {
    color: #666;
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .feature-grid-alt {
      grid-template-columns: 1fr;
    }

    .section-title-alt {
      font-size: 2rem;
    }
  }

  /* footer */
  .jbh-footer-v1 {
    
    background: white;
    color: #333;
    padding: 0 0 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .jbh-container-v1 {
    border-top: 4px solid  #39cfca;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 10px;
  }

  .jbh-content-v1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* gap: 30px; */
    /* margin-bottom: 40px; */
  }

  .jbh-card-v1 {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 10px 20px 10px 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }



  .jbh-heading-v1 {
    color: #2ba8a4;
    font-size: 1.7rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
  }

  .jbh-heading-v1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #39cfca, rgba(57, 207, 202, 0.3));
    border-radius: 3px;
  }

  .jbh-text-v1 {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
  }

  .jbh-highlight-v1 {
    color: #2ba8a4;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .jbh-contact-v1 p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #555;
  }

  .jbh-contact-v1 span {
    color: #39cfca;
    margin-right: 10px;
    font-weight: bold;
    display: inline-block;
  }

  .jbh-button-v1 {
    display: inline-block;
    background: linear-gradient(90deg, #39cfca, #2ba8a4);
    color: white;
    text-decoration: none;
    padding: 13px 35px;
    border-radius: 50px;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(57, 207, 202, 0.3);
    margin-top: 15px;
  }

  .jbh-button-v1:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(57, 207, 202, 0.5);
  }

  .jbh-social-v1 {
    display: flex;
    gap: 15px;
    margin-top: 25px;
  }

  .jbh-social-v1 a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #f1f1f1;
    color: #2ba8a4;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.4s ease;
  }

  .jbh-social-v1 a:hover {
    background: #39cfca;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(57, 207, 202, 0.3);
  }

  .jbh-copyright-v1 {
    border-top: 1px solid #eee;
    padding-top: 25px;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
  }

  .explore-section {
    padding: 10px 20px 10px 50px;
    background: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }

  .explore-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .explore-section li {
    margin-bottom: 15px;
  }

  .explore-section h3 {
    color: #2ba8a4;
    font-size: 1.7rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
  }

  .explore-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #39cfca, rgba(57, 207, 202, 0.3));
    border-radius: 3px;
  }

  .explore-section a {
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-block;
    padding: 5px 0;
  }

  .explore-section a:hover {
    color: #39cfca;
    transform: translateX(5px);
  }

  @media (max-width: 768px) {
    .jbh-content-v1 {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .jbh-heading-v1,
    .explore-section h3 {
      font-size: 1.5rem;
    }

    .jbh-card-v1,
    .explore-section {
      padding: 25px;
    }
  }



  /* sidebarrrr */
  
  * {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

*::-webkit-scrollbar {
    display: none;  /* Chrome, Safari, and Opera */
}

 
@media screen and (max-width: 768px) {
    .jbh-nav-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
    }

    .jbh-logo {
        width: 50vw;
        height: 12vw;
        margin: 10px auto;
    }

    .jbh-logo img {
        width: 8vw;
        height: 8vw;
    }

    .jbh-menu-toggle {
        display: block;
        position: absolute;
        top: 15px;
        right: 15px;
        z-index: 200;
    }

    .jbh-menu-items {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        padding-bottom: 10px;
    }

    .jbh-menu-items.active {
        display: flex;
    }

    .jbh-nav-item {
        width: 100%;
        padding: 12px 15px;
        border-bottom: 1px solid #eee;
    }

    .jbh-dropdown {
        position: static;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        transition: max-height 0.3s ease;
        border-radius: 0;
    }

    .jbh-nav-item.active > .jbh-dropdown {
        max-height: 1000px;
    }

    .jbh-dropdown-item-with-children > a::after {
        transform: rotate(90deg);
    }

    .jbh-dropdown-item-with-children.active > a::after {
        transform: rotate(-90deg);
    }

    .jbh-subdropdown {
        position: static;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: #1e9e9a;
        transition: max-height 0.3s ease;
        border-radius: 0;
    }

    .jbh-dropdown-item-with-children.active > .jbh-subdropdown {
        max-height: 1000px;
    }

    /* Sidebar specific styling */
    .jbh-sidebar {
        position: fixed;
        top: 0;
        left: -250px;
        width: 250px;
        height: 100%;
        background-color: #fff;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }

    .jbh-sidebar.active {
        left: 0;
    }

    .jbh-sidebar-close {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 24px;
        cursor: pointer;
        color: #39cfca;
    }

    .jbh-sidebar .jbh-logo {
        margin: 20px auto;
    }

    .jbh-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }

    .jbh-overlay.active {
        display: block;
    }
}

/* For even smaller screens */
@media screen and (max-width: 480px) {
    .jbh-logo {
        width: 60vw;
        height: 15vw;
    }

    .jbh-logo img {
        width: 10vw;
        height: 10vw;
    }
}
  

.register{
  padding:  5vw 10vw 0 10vw;
  border-top: 4px solid  #39cfca;
}

@media (max-width: 768px) {
  .register object{
   height: 1450px;
  }
}

@media (max-width: 950px) {
  .register {
    padding: 0 0 0 0;
  }
}

  
.c1h {
text-align: center;
padding-top: 4vw;
padding-bottom: 4vw;
border-top: 4px solid #39cfca;
}

@media only screen and (max-width: 599px) {
  .c1h {
    font-size: 10vw;
    text-align: center;
    padding-top: 4vw;
    padding-bottom: 4vw;
    border-top: 4px solid #39cfca;
    }
}

/* Navigation Menu */
.tab-navigation {
  display: flex;
  justify-content: center;
  background-color: #e6f2ff;
  border-radius: 10px;
  padding: 10px 20px;
  margin-bottom: 30px;
  gap: 50px;
}

.tab-button {
  padding: 10px 20px;
  border: none;
  background-color: transparent;
  color: #39cfca;
  font-weight: 500;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
}

.tab-button.active {
  background-color: #39cfca;
  color: white;
}

/* Card Slider Container */
.R-card-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.R-card-slider-list {
  display: flex;
  transition: transform 0.4s ease;
  list-style: none;
}

.R-card-slider-card {
  flex: 0 0 auto;
  width: 350px;
  margin: 0 15px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.R-card-slider-card.R-active {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Card Content */
.card-image {
  height: 222px;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin-top: 13px; */
  /* padding: 0 13px; */
}

.card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.card-content {
  padding: 20px;
}

.card-level {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 14px;
  margin-bottom: 15px;
}

.level-all {
  background-color: #e6fff5;
  color: #39cfca;
}

.level-beginner {
  background-color: #e6fff5;
  color: #39cfca;
}

.card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
  line-height: 1.3;
}

.card-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}

.card-details {
  margin-bottom: 15px;
}

.card-details ul {
  list-style: none;
  padding-left: 5px;
}

.card-details li {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
  position: relative;
  padding-left: 15px;
}

.card-details li:before {
  content: "•";
  color: #39cfca;
  position: absolute;
  left: 0;
}

/* Course Button */
.course-details-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #39cfca;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: background-color 0.3s;
}

.course-details-btn:hover {
  background-color: #2fb6b0;
}

/* Controls */
.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.control_prev, .control_next {
  background-color: #39cfca;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0 10px;
  border: none;
  font-size: 18px;
}

/* Pagination */
.slider-pagination {
  display: flex;
  justify-content: center;
  margin: 0 20px;
}

.pagination-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ddd;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.pagination-dot.active {
  background-color: #39cfca;
}




.R-card-slider,
.R-card-slider-list {

  max-width: 100vw;
}

.R-card-slider-card {
  max-width: 100%;
}