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 0 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;
  max-height: 250px; /* Set maximum height */
  overflow-y: auto; /* Enable vertical scrolling */
  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;
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: #39cfca rgba(57, 207, 202, 0.1); /* Firefox */
}

/* Add custom scrollbar styles for WebKit browsers (Chrome, Safari, etc.) */
.jbh-subdropdown::-webkit-scrollbar {
  width: 6px;
}

.jbh-subdropdown::-webkit-scrollbar-track {
  background: rgba(57, 207, 202, 0.1);
  border-radius: 3px;
}

.jbh-subdropdown::-webkit-scrollbar-thumb {
  background: #39cfca;
  border-radius: 3px;
}

.jbh-subdropdown::-webkit-scrollbar-thumb:hover {
  background: #2ab1ac;
}
/* 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 6% 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;
  }
  
  .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;
  }
  }
  

  

/* <!-- 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%;
}












.reg-reg {
  background: linear-gradient(135deg, #e9f7f7, #d5f3f2, #beeeed);
  color: #333;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2vw;
}


.reg-register {
  width: 100%;
  max-width: 1000px;
  box-shadow: 0 15px 50px rgba(57, 207, 202, 0.25);
  border-radius: 15px;
  overflow: hidden;
}

.reg-register-container {
  display: flex;
  flex-direction: row;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
  .reg-register-container {
    flex-direction: column;
  }
} 

.reg-left {
  flex: 1;
  padding: 40px 30px;
  position: relative;
  z-index: 1;
}

.reg-left::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 95%;
  background: rgba(57, 207, 202, 0.85);
  z-index: -1;
}

.reg-left h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
  animation: reg-slideInLeft 0.8s ease forwards;
  color: #000000;
}

.reg-left p {
  margin-bottom: 30px;
  line-height: 1.6;
  opacity: 0;
  animation: reg-fadeIn 1s ease 0.4s forwards;
  color: #000000;
}

.reg-countdown {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  opacity: 0;
  animation: reg-fadeIn 1s ease 0.6s forwards;
}

.reg-time-box {
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid #fff;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  width: 22%;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.reg-time-box:hover {
  transform: translateY(-5px);
}

.reg-number {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

.reg-right {
  flex: 1;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  opacity: 0;
  animation: reg-zoomInUp 1s ease 0.8s forwards;
}

.reg-right h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  text-align: center;
  color: #39cfca;
}

.reg-right p {
  text-align: center;
  margin-bottom: 30px;
  font-style: italic;
  color: #555;
}

.reg-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

option {
  color: #333;
}

.reg-input,
.reg-select,
.reg-textarea {
  padding: 15px;
  border-radius: 8px;
  border: 1px solid rgba(57, 207, 202, 0.3);
  background: rgba(255, 255, 255, 0.8);
  color: #333;
  font-size: 14px;
  transition: all 0.3s ease;
}

.reg-input:focus,
.reg-select:focus,
.reg-textarea:focus {
  outline: none;
  border-color: #39cfca;
  box-shadow: 0 0 0 2px rgba(57, 207, 202, 0.3);
  transform: translateY(-2px);
}

.reg-input::placeholder,
.reg-select::placeholder,
.reg-textarea::placeholder {
  color: rgba(85, 85, 85, 0.7);
}

.reg-form-row {
  display: flex;
  gap: 15px;
}

.reg-form-row > * {
  flex: 1;
}

.reg-checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 5px;
}

.reg-checkbox-row input {
  width: 18px;
  height: 18px;
  accent-color: #39cfca;
}

.reg-button {
  margin-top: 15px;
  padding: 15px;
  border: none;
  border-radius: 8px;
  background: #39cfca;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.reg-button::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s ease;
}

.reg-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(57, 207, 202, 0.4);
}

.reg-button:hover::after {
  left: 100%;
}

@keyframes reg-slideInLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes reg-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes reg-zoomInUp {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.reg-input-animation {
  transform: translateY(10px);
  opacity: 0;
  animation: reg-fadeInUp 0.5s ease forwards;
}

@keyframes reg-fadeInUp {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.reg-floating-stars {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.reg-star {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.7;
  animation: reg-twinkle 2s infinite alternate;
}

@keyframes reg-twinkle {
  from {
    opacity: 0.2;
  }
  to {
    opacity: 0.7;
  }
}

.reg-form-label {
  margin-bottom: 5px;
  font-size: 14px;
  opacity: 0.9;
  color: #333;
  font-weight: 600;
}


  @media (max-width: 768px) {
    .reg-register-container {
      flex-direction: column;
      width: 100%;
      box-sizing: border-box;
      overflow-x: hidden;
    }
    
    .reg-left, .reg-right {
      width: 100%;
      padding: 30px 20px;
      box-sizing: border-box;
      max-width: 100%;
    }
    
    .reg-form-row {
      flex-direction: column;
      gap: 15px;
      width: 100%;
    }
    
    .reg-countdown {
      flex-wrap: wrap;
      gap: 10px;
      width: 100%;
      justify-content: space-between;
    }
    
    .reg-time-box {
      width: calc(50% - 10px); /* Two columns on small screens */
      margin-bottom: 10px;
      box-sizing: border-box;
      min-width: 0; /* Prevents flex items from overflowing */
    }
    
    .reg-left h1 {
      font-size: 2rem;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }
    
    .reg-right h2 {
      font-size: 1.8rem;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }
    
    /* Prevent horizontal scrolling */
    html, body {
      max-width: 100%;
      overflow-x: hidden;
    }
    
    /* Ensure images and other media don't overflow */
    img, video, iframe {
      max-width: 100%;
      height: auto;
    }
  }
  
  @media (max-width: 480px) {
    .reg-time-box {
      width: 100%; /* Full width on very small screens */
    }
    
    .reg-left, .reg-right {
      padding: 25px 15px;
    }
    
    .reg-left h1 {
      font-size: 1.8rem;
    }
    
    .reg-right h2 {
      font-size: 1.6rem;
    }
    
    /* Add more vertical spacing for very small screens */
    .reg-form-row {
      gap: 10px;
    }
  }
  
  /* Additional safety for very small screens */
  @media (max-width: 360px) {
    .reg-left h1 {
      font-size: 1.6rem;
    }
    
    .reg-right h2 {
      font-size: 1.4rem;
    }
    
    .reg-left, .reg-right {
      padding: 20px 10px;
    }
  }

/* Add this at the end of the file */

/* Mobile Menu Styles */
.jbh-menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #39cfca;
  margin-left: 15px;
  z-index: 1000;
  text-shadow: 0 0 10px rgba(57, 207, 202, 0.5);
}

@media (max-width: 768px) {
  .jbh-menu-toggle {
    display: block;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .jbh-menu-items {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    display: none;
    flex-direction: column;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    padding: 20px 0;
    z-index: 999;
  }
  
  .jbh-menu-items.jbh-active {
    display: flex;
  }
  
  .jbh-nav-item {
    margin: 10px 0;
    width: 100%;
    text-align: center;
  }
  
  .jbh-dropdown {
    position: static;
    width: 100%;
    box-shadow: none;
  }
  
  .jbh-nav-item:hover .jbh-dropdown {
    display: none;
  }
  
  .jbh-nav-item.active .jbh-dropdown {
    display: block;
  }
  
  .jbh-dropdown-item {
    width: 100%;
  }
  
  .jbh-subdropdown {
    position: static;
    width: 100%;
    box-shadow: none;
    display: none;
  }
  
  .jbh-dropdown-item-with-children.active .jbh-subdropdown {
    display: block;
  }
}

@media (max-width: 1000px) {
  .jbh-nav-item {
    position: relative;
    padding: 15px 8px;
}
}



   
    /* The Modal (background) */
    .thank-you-modal {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0,0,0,0.6);
      animation: fadeIn 0.3s;
    }
  
    /* Modal Content */
    .thank-you-modal-content {
      background-color: #fefefe;
      margin: 15% auto;
      padding: 30px;
      border: none;
      width: 80%;
      max-width: 500px;
      border-radius: 15px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.2);
      text-align: center;
      animation: slideDown 0.5s;
    }
  
    /* The Close Button */
    .thank-you-close {
      color: #39cfca;
      float: right;
      font-size: 28px;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 40px;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 50%;
      background: rgba(57, 207, 202, 0.1);
      box-shadow: 0 0 10px rgba(57, 207, 202, 0.3);
    }
  
    .thank-you-close:hover,
    .thank-you-close:focus {
      color: #fff;
      background: rgba(57, 207, 202, 0.2);
      box-shadow: 0 0 15px rgba(57, 207, 202, 0.5);
      text-decoration: none;
    }
    
    /* Add pulse effect to the thank you close button */
    .thank-you-close::before {
      content: '';
      position: absolute;
      width: 40px;
      height: 40px;
      border: 2px solid #39cfca;
      border-radius: 50%;
      animation: multiplePulse 2s infinite;
      opacity: 0;
    }
    
    /* Success Icon */
    .thank-you-icon {
      margin: 0 auto 20px;
      font-size: 60px;
      color: #4CAF50;
    }
    
    /* Modal Title */
    .thank-you-modal-content h2 {
      color: #005baa;
      margin-bottom: 15px;
    }
    
    /* Details Section */
    .thank-you-details {
      margin-top: 20px;
      padding-top: 15px;
      border-top: 1px solid #eee;
      font-size: 14px;
      color: #666;
    }
  
    /* Animations */
    @keyframes fadeIn {
      from {opacity: 0}
      to {opacity: 1}
    }
  
    @keyframes slideDown {
      from {transform: translateY(-70px); opacity: 0;}
      to {transform: translateY(0); opacity: 1;}
    }
    
    /* Discount Banner Styles */
    .discount-banner {
      background: linear-gradient(135deg, #39cfca, #2d3748);
      border-radius: 10px;
      padding: 20px;
      margin: 20px 0;
      position: relative;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      animation: glow 3s infinite alternate;
    }
    
    @keyframes glow {
      0% { box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
      100% { box-shadow: 0 8px 25px rgba(57, 207, 202, 0.4); }
    }
    
    .discount-content {
      position: relative;
      z-index: 2;
      color: white;
      text-align: center;
    }
    
    .discount-badge {
      display: inline-block;
      background-color: #39cfca;
      color: white;
      padding: 5px 10px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: bold;
      margin-bottom: 10px;
      transform: rotate(-2deg);
      animation: wiggle 2.5s infinite;
    }
    
    @keyframes wiggle {
      0%, 100% { transform: rotate(-2deg); }
      50% { transform: rotate(2deg); }
    }
    
    .discount-text {
      margin-bottom: 10px;
    }
    
    .discount-percentage {
      font-size: 32px;
      font-weight: bold;
      margin-right: 10px;
      background: linear-gradient(90deg, #fff, #39cfca);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }
    
    .discount-details {
      font-size: 18px;
    }
    
    .pulsing-circles {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }
    
    .circle {
      position: absolute;
      border-radius: 50%;
      background: rgba(57, 207, 202, 0.1);
      animation: ripple 8s infinite;
      opacity: 0;
    }
    
    .circle1 {
      width: 200px;
      height: 200px;
      left: -50px;
      top: -50px;
      animation-delay: 0s;
    }
    
    .circle2 {
      width: 300px;
      height: 300px;
      right: -100px;
      bottom: -100px;
      animation-delay: 2s;
    }
    
    .circle3 {
      width: 150px;
      height: 150px;
      right: 30%;
      top: -30px;
      animation-delay: 4s;
    }
    
    @keyframes ripple {
      0% { transform: scale(0); opacity: 0; }
      50% { opacity: 0.3; }
      100% { transform: scale(1.5); opacity: 0; }
    }
    
    /* Countdown Styles */
    .reg-countdown {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      margin: 20px 0;
      gap: 10px;
    }
    
    .countdown-label {
      width: 100%;
      text-align: center;
      margin-bottom: 10px;
      font-weight: bold;
      color: #ffffff;
      font-size: 16px;
    }
    
    .reg-time-box {
      background: linear-gradient(135deg, #ffffff, #f5f5f5);
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      padding: 10px 15px;
      text-align: center;
      box-shadow: 0 3px 10px rgba(0,0,0,0.05);
      min-width: 70px;
      transition: transform 0.3s ease;
    }
    
    .reg-time-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(57, 207, 202, 0.2);
    }
    
    .reg-number {
      display: block;
      font-size: 24px;
      font-weight: bold;
      color: #39cfca;
      margin-bottom: 5px;
    }
  <
  
  
   
  @media only screen and (max-width: 599px) {
    .jbh-hero {
      display: flex;
      flex-direction: column;
      text-align: center;
      padding: 2rem 1.5rem;
    }
    
    .jbh-hero-text {
    margin: 3vw auto;
      width: 100%;
    }
    
    .jbh-hero-image {
      
      margin: 0 auto;
    }
    
    .jbh-subtitle,
    .jbh-title,
    .jbh-description { margin:0 0 10vw 0;
      text-align: justify
      ;
    }
    
    .jbh-title5 {
      font-size: 1.8rem;
    }
  }
  
  /* Tablets (portrait) */
  @media only screen and (min-width: 600px) and (max-width: 767px) {
    .jbh-hero {
      text-align: center;
      padding: 3rem 2rem;
    }
    
    .jbh-hero-text {
      width: 100%;
      max-width: 600px;
      margin: 0 auto;
    }
    
    .jbh-title {
      font-size: 2.2rem;
    }
  }
  
  /* Tablets (landscape) and small laptops */
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .jbh-hero {
      display: flex;
      flex-direction: column;
      text-align: center;
      padding: 4rem 2rem;
    }
    
    .jbh-hero-text {
      width: 100%;
      max-width: 700px;
      margin: 0 auto;
    }
    
    .jbh-hero-image {
      margin: 2rem auto 0;
    }
    
    .jbh-title {
      font-size: 2.5rem;
    }
  }
  @media only screen and (max-width: 768px) {
      object {
          width: 100%;
          height: 800px;
      }
  }
  
  /* Mobile Phones (Portrait) */
  @media only screen and (max-width: 480px) {
      object {
          width: 100%;
          height: 700px;
      }
  }
  <
  
  
    .popup-banner {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
    }
    
    .popup-content {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      position: relative;
      width: 90%;
      max-width: 500px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    
    .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 24px;
      font-weight: bold;
      cursor: pointer;
      color: #555;
    }
    
    .popup-close-button {
      margin-top: 20px;
      padding: 10px 20px;
      background-color: #ff5e5e;
      color: #fff;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-size: 16px;
    }
    
    .popup-close-button:hover {
      background-color: #e04343;
    }
    
    
    <
    

  /* Terms and Conditions Overlay Styles */
  .terms-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 99999; /* Increased z-index to ensure it's above other elements */
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .terms-overlay.show {
    opacity: 1;
    display: block;
  }

  .terms-content {
    position: relative;
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    width: 80%;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-height: 80vh;
    display: flex;
    flex-direction: column;
  }

  .terms-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #39cfca;
    color: white;
    border-radius: 10px 10px 0 0;
  }

  .terms-header h2 {
    margin: 0;
    font-size: 1.5rem;
  }

  .terms-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
  }
  .terms-body {
    padding: 20px;
    overflow-y: auto; /* Changed from scroll to auto for better behavior */
    flex: 1;
    /* Scrollbar styling for WebKit browsers (Chrome, Safari) */
    scrollbar-width: thin; /* For Firefox */
    scrollbar-color: #888 #f1f1f1; /* For Firefox */
}

/* WebKit scrollbar styling */
.terms-body::-webkit-scrollbar {
    width: 8px;
}

.terms-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.terms-body::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.terms-body::-webkit-scrollbar-thumb:hover {
    background: #555;
}
  .terms-body h3 {
    color: #333;
    margin-top: 0;
  }

  .terms-body h4 {
    color: #39cfca;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .terms-body p {
    margin-bottom: 10px;
    line-height: 1.6;
  }

  .terms-footer {
    padding: 15px 20px;
    text-align: center;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: center;
    gap: 15px;
  }

  .terms-accept-btn, .terms-reject-btn {
    padding: 10px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
    border: none;
  }

  .terms-accept-btn {
    background-color: #39cfca;
    color: white;
  }

  .terms-accept-btn:hover {
    background-color: #2ba8a4;
  }

  .terms-reject-btn {
    background-color: #ff4444;
    color: white;
  }

  .terms-reject-btn:hover {
    background-color: #cc0000;
  }

  @media (max-width: 768px) {
    .terms-content {
      width: 95%;
      margin: 10% auto;
    }
  }
<

<!-- Full Screen Banner Popup Styles -->

  
  #popupBanner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none; /* Initially hidden */
    animation: fadeIn 0.5s ease;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
  }
  
  .jb-tech-close-btn {
    position: fixed;
    top: 1vw;
    right: 1vw;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(57, 207, 202, 0.1);
    transition: all 0.3s ease;
    /* Enhanced overlay effect */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 0 15px rgba(57, 207, 202, 0.3);
  }

  .cross-line {
    position: absolute;
    width: 60%;
    height: 2px;
    background: #39cfca;
    border-radius: 4px;
    transition: all 0.3s ease;
  }

  .line1 {
    transform: rotate(45deg);
    box-shadow: 0 0 10px #39cfca;
  }

  .line2 {
    transform: rotate(-45deg);
    box-shadow: 0 0 10px #39cfca;
  }

  /* Multiple pulse waves effect */
  .jb-tech-close-btn::before,
  .jb-tech-close-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #39cfca;
    border-radius: 50%;
    animation: multiplePulse 2s infinite;
    opacity: 0;
  }

  .jb-tech-close-btn::after {
    animation-delay: 0.5s;
  }

  /* Hover effects */
  .jb-tech-close-btn:hover {
    background: rgba(57, 207, 202, 0.2);
  }

  .jb-tech-close-btn:hover .cross-line {
    background: #fff;
    box-shadow: 0 0 15px #39cfca;
  }

  .jb-tech-close-btn:hover::before,
  .jb-tech-close-btn:hover::after {
    border-color: #fff;
  }

  @keyframes multiplePulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
  }
  
  /* Remove the responsive media queries for the close button position since we want it fixed */
  /* Mobile devices (portrait) */
  @media only screen and (max-width: 480px) {
    .jb-tech-close-btn {
      width: 35px;
      height: 35px;
    }
    
    .cross-line {
      width: 55%;
    }
    
    .jb-tech-close-btn::before,
    .jb-tech-close-btn::after {
      animation-duration: 1.8s;
    }
  }
  
  /* Mobile devices (landscape) and small tablets */
  @media only screen and (min-width: 481px) and (max-width: 768px) {
    .jb-tech-close-btn {
      width: 38px;
      height: 38px;
    }
  }
  
  /* Tablets and small laptops */
  @media only screen and (min-width: 769px) and (max-width: 1024px) {
    .jb-tech-close-btn {
      /* Maintain the fixed position, no need to change top/right */
    }
  }
  
  #bannerContent {
    width: 100%;
    height: 100%;
    overflow: auto;
  }
  
  /* Prevent page scrolling when popup is shown */
  body.popup-open {
    overflow: hidden;
  }

  /* Responsive Card Slider styles */
  .R-card-slider {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }

  .R-card-slider-list {
    display: flex;
    transition: transform 0.5s ease;
    padding: 20px 0;
  }

  .R-card-slider-card {
    flex: 0 0 auto;
    margin: 0 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    background: #fff;
    transform: scale(0.9);
    width: 320px;
  }

  .R-card-slider-card.R-active {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  }

  .card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
  }

  .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .R-card-slider-card:hover .card-image img {
    transform: scale(1.05);
  }

  .card-content {
    padding: 20px;
  }

  .card-level {
    display: inline-block;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    font-weight: 600;
  }

  .level-beginner {
    background-color: #E3F2FD;
    color: #1976D2;
  }

  .level-intermediate {
    background-color: #FFF8E1;
    color: #FFA000;
  }

  .level-advanced {
    background-color: #FFEBEE;
    color: #D32F2F;
  }

  .level-all {
    background-color: #E8F5E9;
    color: #388E3C;
  }

  .card-title {
    font-size: 18px;
    margin: 0 0 10px;
  }

  .card-description {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
  }

  .card-details ul {
    list-style-type: none;
    padding: 0;
    margin: 0 0 20px;
  }

  .card-details li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    color: #555;
  }

  .card-details li:before {
    content: '✓';
    color: #39cfca;
    position: absolute;
    left: 0;
  }

  .course-details-btn {
    display: inline-block;
    background: #39cfca;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
  }

  .course-details-btn:hover {
    background: #2ab1ac;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(57, 207, 202, 0.3);
  }

  .slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 15px;
  }

  .control_prev, .control_next {
    border: none;
    background: rgba(57, 207, 202, 0.1);
    color: #39cfca;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(57, 207, 202, 0.1);
  }

  .control_prev:hover, .control_next:hover {
    background: #39cfca;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(57, 207, 202, 0.3);
  }

  .slider-pagination {
    display: flex;
    gap: 8px;
  }

  .pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(57, 207, 202, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }

  .pagination-dot.active {
    background: #39cfca;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(57, 207, 202, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.5);
  }

  .pagination-dot:hover {
    background: rgba(57, 207, 202, 0.5);
  }

  /* Responsive styles for card slider */
  @media only screen and (max-width: 767px) {
    .R-card-slider-card {
      width: 260px;
      transform: scale(0.95);
    }
    
    .card-image {
      height: 160px;
    }
    
    .card-content {
      padding: 15px;
    }
    
    .card-title {
      font-size: 16px;
    }
    
    .card-description {
      font-size: 13px;
    }
    
    .card-details li {
      font-size: 13px;
    }
    
    .course-details-btn {
      padding: 8px 16px;
      font-size: 14px;
    }
  }

  @media only screen and (max-width: 480px) {
    .R-card-slider-card {
      width: 220px;
      margin: 0 10px;
    }
    
    .card-image {
      height: 140px;
    }
    
    .card-content {
      padding: 12px;
    }
    
    .card-title {
      font-size: 15px;
      margin-bottom: 8px;
    }
    
    .card-level {
      font-size: 10px;
      padding: 3px 8px;
    }
    
    .card-description {
      font-size: 12px;
      margin-bottom: 10px;
    }
    
    .card-details ul {
      margin-bottom: 15px;
    }
    
    .card-details li {
      font-size: 12px;
      padding: 3px 0 3px 18px;
    }
    
    .course-details-btn {
      padding: 7px 14px;
      font-size: 13px;
    }
    
    .slider-controls {
      margin-top: 20px;
    }
    
    .control_prev, .control_next {
      width: 35px;
      height: 35px;
      font-size: 16px;
    }
  }
  .jbh-subdropdown {
    max-height: 60vh; /* Set maximum height */
    overflow-y: auto; /* Enable vertical scrolling */
    scrollbar-width: thin; /* Firefox */
    scrollbar-color:rgb(223, 231, 230) rgba(57, 207, 202, 0.1); /* Firefox */
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
     
    /* The Modal (background) */
    .thank-you-modal {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0,0,0,0.6);
      animation: fadeIn 0.3s;
    }
  
    /* Modal Content */
    .thank-you-modal-content {
      background-color: #fefefe;
      margin: 15% auto;
      padding: 30px;
      border: none;
      width: 80%;
      max-width: 500px;
      border-radius: 15px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.2);
      text-align: center;
      animation: slideDown 0.5s;
    }
  
    /* The Close Button */
    .thank-you-close {
      color: #39cfca;
      float: right;
      font-size: 28px;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 40px;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 50%;
      background: rgba(57, 207, 202, 0.1);
      box-shadow: 0 0 10px rgba(57, 207, 202, 0.3);
    }
  
    .thank-you-close:hover,
    .thank-you-close:focus {
      color: #fff;
      background: rgba(57, 207, 202, 0.2);
      box-shadow: 0 0 15px rgba(57, 207, 202, 0.5);
      text-decoration: none;
    }
    
    /* Add pulse effect to the thank you close button */
    .thank-you-close::before {
      content: '';
      position: absolute;
      width: 40px;
      height: 40px;
      border: 2px solid #39cfca;
      border-radius: 50%;
      animation: multiplePulse 2s infinite;
      opacity: 0;
    }
    
    /* Success Icon */
    .thank-you-icon {
      margin: 0 auto 20px;
      font-size: 60px;
      color: #4CAF50;
    }
    
    /* Modal Title */
    .thank-you-modal-content h2 {
      color: #005baa;
      margin-bottom: 15px;
    }
    
    /* Details Section */
    .thank-you-details {
      margin-top: 20px;
      padding-top: 15px;
      border-top: 1px solid #eee;
      font-size: 14px;
      color: #666;
    }
  
    /* Animations */
    @keyframes fadeIn {
      from {opacity: 0}
      to {opacity: 1}
    }
  
    @keyframes slideDown {
      from {transform: translateY(-70px); opacity: 0;}
      to {transform: translateY(0); opacity: 1;}
    }
    
    /* Discount Banner Styles */
    .discount-banner {
      background: linear-gradient(135deg, #39cfca, #2d3748);
      border-radius: 10px;
      padding: 20px;
      margin: 20px 0;
      position: relative;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      animation: glow 3s infinite alternate;
    }
    
    @keyframes glow {
      0% { box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
      100% { box-shadow: 0 8px 25px rgba(57, 207, 202, 0.4); }
    }
    
    .discount-content {
      position: relative;
      z-index: 2;
      color: white;
      text-align: center;
    }
    
    .discount-badge {
      display: inline-block;
      background-color: #39cfca;
      color: white;
      padding: 5px 10px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: bold;
      margin-bottom: 10px;
      transform: rotate(-2deg);
      animation: wiggle 2.5s infinite;
    }
    
    @keyframes wiggle {
      0%, 100% { transform: rotate(-2deg); }
      50% { transform: rotate(2deg); }
    }
    
    .discount-text {
      margin-bottom: 10px;
    }
    
    .discount-percentage {
      font-size: 32px;
      font-weight: bold;
      margin-right: 10px;
      background: linear-gradient(90deg, #fff, #39cfca);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }
    
    .discount-details {
      font-size: 18px;
    }
    
    .pulsing-circles {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }
    
    .circle {
      position: absolute;
      border-radius: 50%;
      background: rgba(57, 207, 202, 0.1);
      animation: ripple 8s infinite;
      opacity: 0;
    }
    
    .circle1 {
      width: 200px;
      height: 200px;
      left: -50px;
      top: -50px;
      animation-delay: 0s;
    }
    
    .circle2 {
      width: 300px;
      height: 300px;
      right: -100px;
      bottom: -100px;
      animation-delay: 2s;
    }
    
    .circle3 {
      width: 150px;
      height: 150px;
      right: 30%;
      top: -30px;
      animation-delay: 4s;
    }
    
    @keyframes ripple {
      0% { transform: scale(0); opacity: 0; }
      50% { opacity: 0.3; }
      100% { transform: scale(1.5); opacity: 0; }
    }
    
    /* Countdown Styles */
    .reg-countdown {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      margin: 20px 0;
      gap: 10px;
    }
    
    .countdown-label {
      width: 100%;
      text-align: center;
      margin-bottom: 10px;
      font-weight: bold;
      color: #ffffff;
      font-size: 16px;
    }
    
    .reg-time-box {
      background: linear-gradient(135deg, #ffffff, #f5f5f5);
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      padding: 10px 15px;
      text-align: center;
      box-shadow: 0 3px 10px rgba(0,0,0,0.05);
      min-width: 70px;
      transition: transform 0.3s ease;
    }
    
    .reg-time-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(57, 207, 202, 0.2);
    }
    
    .reg-number {
      display: block;
      font-size: 24px;
      font-weight: bold;
      color: #39cfca;
      margin-bottom: 5px;
    }
  
  
   
  @media only screen and (max-width: 599px) {
    .jbh-hero {
      display: flex;
      flex-direction: column;
      text-align: center;
      padding: 2rem 1.5rem;
    }
    
    .jbh-hero-text {
    margin: 3vw auto;
      width: 100%;
    }
    
    .jbh-hero-image {
      
      margin: 0 auto;
    }
    
    .jbh-subtitle,
    .jbh-title,
    .jbh-description { margin:0 0 10vw 0;
      text-align: justify
      ;
    }
    
    .jbh-title5 {
      font-size: 1.8rem;
    }
  }
  
  /* Tablets (portrait) */
  @media only screen and (min-width: 600px) and (max-width: 767px) {
    .jbh-hero {
      text-align: center;
      padding: 3rem 2rem;
    }
    
    .jbh-hero-text {
      width: 100%;
      max-width: 600px;
      margin: 0 auto;
    }
    
    .jbh-title {
      font-size: 2.2rem;
    }
  }
  
  /* Tablets (landscape) and small laptops */
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .jbh-hero {
      display: flex;
      flex-direction: column;
      text-align: center;
      padding: 4rem 2rem;
    }
    
    .jbh-hero-text {
      width: 100%;
      max-width: 700px;
      margin: 0 auto;
    }
    
    .jbh-hero-image {
      margin: 2rem auto 0;
    }
    
    .jbh-title {
      font-size: 2.5rem;
    }
  }
  @media only screen and (max-width: 768px) {
      object {
          width: 100%;
          height: 800px;
      }
  }
  
  /* Mobile Phones (Portrait) */
  @media only screen and (max-width: 480px) {
      object {
          width: 100%;
          height: 700px;
      }
  }
  
  

    .popup-banner {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
    }
    
    .popup-content {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      position: relative;
      width: 90%;
      max-width: 500px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    
    .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 24px;
      font-weight: bold;
      cursor: pointer;
      color: #555;
    }
    
    .popup-close-button {
      margin-top: 20px;
      padding: 10px 20px;
      background-color: #ff5e5e;
      color: #fff;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-size: 16px;
    }
    
    .popup-close-button:hover {
      background-color: #e04343;
    }
    
    
  /* Terms and Conditions Overlay Styles */
  .terms-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 99999; /* Increased z-index to ensure it's above other elements */
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .terms-overlay.show {
    opacity: 1;
    display: block;
  }

  .terms-content {
    position: relative;
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    width: 80%;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-height: 80vh;
    display: flex;
    flex-direction: column;
  }

  .terms-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #39cfca;
    color: white;
    border-radius: 10px 10px 0 0;
  }

  .terms-header h2 {
    margin: 0;
    font-size: 1.5rem;
  }

  .terms-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
  }
  .terms-body {
    padding: 20px;
    overflow-y: auto; /* Changed from scroll to auto for better behavior */
    flex: 1;
    /* Scrollbar styling for WebKit browsers (Chrome, Safari) */
    scrollbar-width: thin; /* For Firefox */
    scrollbar-color: #888 #f1f1f1; /* For Firefox */
}

/* WebKit scrollbar styling */
.terms-body::-webkit-scrollbar {
    width: 8px;
}

.terms-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.terms-body::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.terms-body::-webkit-scrollbar-thumb:hover {
    background: #555;
}
  .terms-body h3 {
    color: #333;
    margin-top: 0;
  }

  .terms-body h4 {
    color: #39cfca;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .terms-body p {
    margin-bottom: 10px;
    line-height: 1.6;
  }

  .terms-footer {
    padding: 15px 20px;
    text-align: center;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: center;
    gap: 15px;
  }

  .terms-accept-btn, .terms-reject-btn {
    padding: 10px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
    border: none;
  }

  .terms-accept-btn {
    background-color: #39cfca;
    color: white;
  }

  .terms-accept-btn:hover {
    background-color: #2ba8a4;
  }

  .terms-reject-btn {
    background-color: #ff4444;
    color: white;
  }

  .terms-reject-btn:hover {
    background-color: #cc0000;
  }

  @media (max-width: 768px) {
    .terms-content {
      width: 95%;
      margin: 10% auto;
    }
  }






















/*bannerrrrr*/

  
  #popupBanner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none; /* Initially hidden */
    animation: fadeIn 0.5s ease;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
  }
  
  .jb-tech-close-btn {
    position: fixed;
    top: 1vw;
    right: 1vw;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(57, 207, 202, 0.1);
    transition: all 0.3s ease;
    /* Enhanced overlay effect */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 0 15px rgba(57, 207, 202, 0.3);
  }

  .cross-line {
    position: absolute;
    width: 60%;
    height: 2px;
    background: #39cfca;
    border-radius: 4px;
    transition: all 0.3s ease;
  }

  .line1 {
    transform: rotate(45deg);
    box-shadow: 0 0 10px #39cfca;
  }

  .line2 {
    transform: rotate(-45deg);
    box-shadow: 0 0 10px #39cfca;
  }

  /* Multiple pulse waves effect */
  .jb-tech-close-btn::before,
  .jb-tech-close-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #39cfca;
    border-radius: 50%;
    animation: multiplePulse 2s infinite;
    opacity: 0;
  }

  .jb-tech-close-btn::after {
    animation-delay: 0.5s;
  }

  /* Hover effects */
  .jb-tech-close-btn:hover {
    background: rgba(57, 207, 202, 0.2);
  }

  .jb-tech-close-btn:hover .cross-line {
    background: #fff;
    box-shadow: 0 0 15px #39cfca;
  }

  .jb-tech-close-btn:hover::before,
  .jb-tech-close-btn:hover::after {
    border-color: #fff;
  }

  @keyframes multiplePulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
  }
  
  /* Remove the responsive media queries for the close button position since we want it fixed */
  /* Mobile devices (portrait) */
  @media only screen and (max-width: 480px) {
    .jb-tech-close-btn {
      width: 35px;
      height: 35px;
    }
    
    .cross-line {
      width: 55%;
    }
    
    .jb-tech-close-btn::before,
    .jb-tech-close-btn::after {
      animation-duration: 1.8s;
    }
  }
  
  /* Mobile devices (landscape) and small tablets */
  @media only screen and (min-width: 481px) and (max-width: 768px) {
    .jb-tech-close-btn {
      width: 38px;
      height: 38px;
    }
  }
  
  /* Tablets and small laptops */
  @media only screen and (min-width: 769px) and (max-width: 1024px) {
    .jb-tech-close-btn {
      /* Maintain the fixed position, no need to change top/right */
    }
  }
  
  #bannerContent {
    width: 100%;
    height: 100%;
    overflow: auto;
  }
  
  /* Prevent page scrolling when popup is shown */
  body.popup-open {
    overflow: hidden;
  }

  /* Responsive Card Slider styles */
  .R-card-slider {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }

  .R-card-slider-list {
    display: flex;
    transition: transform 0.5s ease;
    padding: 20px 0;
  }

  .R-card-slider-card {
    flex: 0 0 auto;
    margin: 0 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    background: #fff;
    transform: scale(0.9);
    width: 320px;
  }

  .R-card-slider-card.R-active {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  }

  .card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
  }

  .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .R-card-slider-card:hover .card-image img {
    transform: scale(1.05);
  }

  .card-content {
    padding: 20px;
  }

  .card-level {
    display: inline-block;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    font-weight: 600;
  }

  .level-beginner {
    background-color: #E3F2FD;
    color: #1976D2;
  }

  .level-intermediate {
    background-color: #FFF8E1;
    color: #FFA000;
  }

  .level-advanced {
    background-color: #FFEBEE;
    color: #D32F2F;
  }

  .level-all {
    background-color: #E8F5E9;
    color: #388E3C;
  }

  .card-title {
    font-size: 18px;
    margin: 0 0 10px;
  }

  .card-description {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
  }

  .card-details ul {
    list-style-type: none;
    padding: 0;
    margin: 0 0 20px;
  }

  .card-details li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    color: #555;
  }

  .card-details li:before {
    content: '✓';
    color: #39cfca;
    position: absolute;
    left: 0;
  }

  .course-details-btn {
    display: inline-block;
    background: #39cfca;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
  }

  .course-details-btn:hover {
    background: #2ab1ac;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(57, 207, 202, 0.3);
  }

  .slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 15px;
  }

  .control_prev, .control_next {
    border: none;
    background: rgba(57, 207, 202, 0.1);
    color: #39cfca;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(57, 207, 202, 0.1);
  }

  .control_prev:hover, .control_next:hover {
    background: #39cfca;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(57, 207, 202, 0.3);
  }

  .slider-pagination {
    display: flex;
    gap: 8px;
  }

  .pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(57, 207, 202, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }

  .pagination-dot.active {
    background: #39cfca;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(57, 207, 202, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.5);
  }

  .pagination-dot:hover {
    background: rgba(57, 207, 202, 0.5);
  }

  /* Responsive styles for card slider */
  @media only screen and (max-width: 767px) {
    .R-card-slider-card {
      width: 260px;
      transform: scale(0.95);
    }
    
    .card-image {
      height: 160px;
    }
    
    .card-content {
      padding: 15px;
    }
    
    .card-title {
      font-size: 16px;
    }
    
    .card-description {
      font-size: 13px;
    }
    
    .card-details li {
      font-size: 13px;
    }
    
    .course-details-btn {
      padding: 8px 16px;
      font-size: 14px;
    }
  }

  @media only screen and (max-width: 480px) {
    .R-card-slider-card {
      width: 220px;
      margin: 0 10px;
    }
    
    .card-image {
      height: 140px;
    }
    
    .card-content {
      padding: 12px;
    }
    
    .card-title {
      font-size: 15px;
      margin-bottom: 8px;
    }
    
    .card-level {
      font-size: 10px;
      padding: 3px 8px;
    }
    
    .card-description {
      font-size: 12px;
      margin-bottom: 10px;
    }
    
    .card-details ul {
      margin-bottom: 15px;
    }
    
    .card-details li {
      font-size: 12px;
      padding: 3px 0 3px 18px;
    }
    
    .course-details-btn {
      padding: 7px 14px;
      font-size: 13px;
    }
    
    .slider-controls {
      margin-top: 20px;
    }
    
    .control_prev, .control_next {
      width: 35px;
      height: 35px;
      font-size: 16px;
    }
  }
  .jbh-subdropdown {
    max-height: 60vh; /* Set maximum height */
    overflow-y: auto; /* Enable vertical scrolling */
    scrollbar-width: thin; /* Firefox */
    scrollbar-color:rgb(223, 231, 230) rgba(57, 207, 202, 0.1); /* Firefox */
  }
  


/*gapsectionanimation*/
    .study-animation-container {
      position: relative;
      height: 40vh;
      width: 100%;
      overflow: hidden;
      background: transparent;
    }
    
    .study-floating-shape {
      position: absolute;
      opacity: 0;
      transform-origin: center;
      animation-duration: 8s;
      animation-iteration-count: infinite;
      animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
      filter: drop-shadow(0 4px 8px rgba(57, 207, 202, 0.2));
    }
    
    .study-shape-1 {
      width: 5rem;
      height: 5rem;
      top: 15%;
      left: 10%;
      animation-name: study-float-1;
      animation-delay: 0s;
    }
    
    .study-shape-2 {
      width: 4rem;
      height: 4rem;
      top: 60%;
      left: 25%;
      animation-name: study-float-2;
      animation-delay: 2s;
    }
    
    .study-shape-3 {
      width: 6rem;
      height: 6rem;
      top: 30%;
      left: 50%;
      animation-name: study-float-3;
      animation-delay: 1s;
    }
    
    .study-shape-4 {
      width: 3.5rem;
      height: 3.5rem;
      top: 65%;
      left: 75%;
      animation-name: study-float-4;
      animation-delay: 3s;
    }
    
    .study-shape-5 {
      width: 4.5rem;
      height: 4.5rem;
      top: 20%;
      left: 85%;
      animation-name: study-float-5;
      animation-delay: 1.5s;
    }
    
    .study-path-line {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      stroke-dasharray: 1500;
      stroke-dashoffset: 1500;
      animation: study-draw-path 15s linear infinite;
    }
    
    @keyframes study-float-1 {
      0% { transform: translateY(20vh) scale(0.8); opacity: 0; }
      10% { opacity: 0.9; }
      50% { transform: translateY(5vh) scale(1.1) rotate(45deg); opacity: 0.7; }
      80% { opacity: 0.4; }
      100% { transform: translateY(-10vh) scale(0.8) rotate(90deg); opacity: 0; }
    }
    
    @keyframes study-float-2 {
      0% { transform: translateY(15vh) translateX(-5vw) scale(0.7); opacity: 0; }
      15% { opacity: 0.8; }
      55% { transform: translateY(0vh) translateX(5vw) scale(1.2) rotate(-30deg); opacity: 0.6; }
      80% { opacity: 0.3; }
      100% { transform: translateY(-10vh) translateX(10vw) scale(0.7) rotate(-60deg); opacity: 0; }
    }
    
    @keyframes study-float-3 {
      0% { transform: translateY(10vh) translateX(10vw) scale(0.9); opacity: 0; }
      20% { opacity: 0.7; }
      60% { transform: translateY(-5vh) translateX(-5vw) scale(1.3) rotate(15deg); opacity: 0.9; }
      85% { opacity: 0.2; }
      100% { transform: translateY(-15vh) translateX(-10vw) scale(0.9) rotate(30deg); opacity: 0; }
    }
    
    @keyframes study-float-4 {
      0% { transform: translateY(15vh) translateX(-10vw) scale(0.8); opacity: 0; }
      15% { opacity: 0.8; }
      65% { transform: translateY(0vh) translateX(-5vw) scale(1.1) rotate(-15deg); opacity: 0.7; }
      85% { opacity: 0.3; }
      100% { transform: translateY(-10vh) translateX(5vw) scale(0.8) rotate(-45deg); opacity: 0; }
    }
    
    @keyframes study-float-5 {
      0% { transform: translateY(20vh) translateX(-5vw) scale(0.7); opacity: 0; }
      10% { opacity: 0.9; }
      50% { transform: translateY(5vh) translateX(5vw) scale(1.2) rotate(60deg); opacity: 0.8; }
      80% { opacity: 0.4; }
      100% { transform: translateY(-10vh) translateX(10vw) scale(0.7) rotate(120deg); opacity: 0; }
    }
    
    @keyframes study-draw-path {
      0% { stroke-dashoffset: 1500; }
      40% { stroke-dashoffset: 0; }
      60% { stroke-dashoffset: 0; }
      100% { stroke-dashoffset: -1500; }
    }
    
    .study-particles {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
    }
    
    .study-particle {
      position: absolute;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(57, 207, 202, 0.6);
      animation: study-particle-float 12s linear infinite;
    }
    
    @keyframes study-particle-float {
      0% { transform: translateY(30vh) translateX(0) scale(0); opacity: 0; }
      10% { opacity: 0.8; }
      80% { opacity: 0.5; }
      100% { transform: translateY(0) translateX(10vw) scale(1); opacity: 0; }
    }
    
  
    .study-progress-line {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 3px;
      width: 0%;
      background: linear-gradient(90deg, #39cfca, #59e4df, #39cfca);
      animation: study-progress 8s ease-in-out infinite;
    }

    @keyframes study-progress {
      0% { width: 0%; opacity: 0.7; }
      50% { width: 100%; opacity: 1; }
      100% { width: 0%; opacity: 0.7; }
    }
