.elementor-widget-container .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-container .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-830 .elementor-element.elementor-element-86205be{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-html .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-html .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}@media(min-width:768px){.elementor-830 .elementor-element.elementor-element-86205be{--content-width:1440px;}}/* Start custom CSS for html, class: .elementor-element-65478e0 */* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    body {
      background-color: #f5f5f5;
      color: #333;
      padding: 1rem;
      overflow-x: hidden;
    }
    
    .container {
      max-width: 1440px;
      margin: 0 auto;
      display: flex;
      gap: 2rem;
      min-height: 600px;
      position: relative;
    }
    
    .showcase {
      width: 40%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 2rem;
      background-color: #ffffff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      position: sticky;
      top: 2rem;
      align-self: flex-start;
      max-height: calc(100vh - 4rem);
    }
    
    .showcase-title {
      font-size: 2rem;
      margin-bottom: 1.5rem;
      text-align: center;
      color: #222;
      transition: all 0.3s ease;
    }
    
    .image-container {
      position: relative;
      width: 100%;
      height: 450px;
      margin-bottom: 1.5rem;
      text-align: center
    }
    
    .showcase-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 8px;
      transition: all 0.5s ease;
    }
    
    .dot {
      position: absolute;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background-color: #3182ce;
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
      transform: scale(0);
      z-index: 10;
    }
    
    @keyframes dotAppear {
      0% { transform: scale(0); opacity: 0; }
      50% { transform: scale(1.3); opacity: 1; }
      100% { transform: scale(1); opacity: 1; }
    }
    
    .dot-animation {
      animation: dotAppear 0.6s ease-out forwards;
    }
    
    .showcase-button {
      padding: 0.75rem 1.5rem;
      background-color: #3182ce;
      color: white;
      border: none;
      border-radius: 6px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .showcase-button:hover {
      background-color: #2c5282;
      transform: translateY(-2px);
    }
    
    .cards-scroll-container {
      width: 60%;
    }
    
    .cards-container {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      gap: 1rem;
      padding-bottom: 4rem;
    }
    
    .card {
      background-color: #ffffff;
      border-radius: 8px;
      overflow: hidden;
      cursor: pointer;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      display: flex;
      height: 110px;
      flex: 0 0 calc(50% - 0.5rem);
    }
    
    .card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    }
    
    .card-image {
      width: 110px;
      height: 100%;
      object-fit: cover;
      flex-shrink: 0;
    }
    
    .card-content {
      padding: 1rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    
    .card-title {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: #222;
    }
    
    .card-text {
      font-size: 0.9rem;
      color: #666;
      line-height: 1.4;
    }
    
    .active-card {
      border-left: 4px solid #3182ce;
      background-color: #f0f7ff;
    }
    
    /* Mobile styles */
    @media (max-width: 768px) {
      .container {
        flex-direction: column;
        gap: 1rem;
      }
      
      .showcase {
        width: 100%;
        position: static;
        order: 2;
        max-height: none;
        padding: 1.5rem;
      }
      
      .image-container {
        height: 350px;
      }
      
      .cards-scroll-container {
        width: 100%;
        overflow-x: auto;
        padding: 1rem 0;
        margin-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        order: 1;
      }
      
      .cards-container {
        flex-direction: row;
        flex-wrap: nowrap;
        min-width: min-content;
        padding: 0.5rem;
        gap: 1rem;
      }
      
      .card {
        flex-direction: column;
        height: auto;
        min-width: 200px;
        max-width: 200px;
        flex: 0 0 auto;
        transform: translateX(100vw);
        opacity: 0;
      }
      
      .card.visible {
        transform: translateX(0);
        opacity: 1;
      }
      
      .card-image {
        width: 100%;
        height: 110px;
      }
      
      .active-card {
        border-left: none;
        border-top: 4px solid #3182ce;
      }
    }
    
    /* Animation for cards sliding in from right on mobile */
    @keyframes slideFromRight {
      0% { transform: translateX(100vw); opacity: 0; }
      100% { transform: translateX(0); opacity: 1; }
    }
	
	.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    border: 2px solid #3182ce; /* Add blue border on hover */
}

.card:hover .card-text {
    color: #3182ce; /* Change p element color to blue on hover */
    transition: color 0.3s ease;
}

.active-card {
    border-left: 4px solid #3182ce;
    background-color: #f0f7ff;
}

/* Make sure active card keeps the left border but can still get the hover border */
.active-card:hover {
    border: 2px solid #3182ce;
    border-left: 4px solid #3182ce;
}

.card-heading{
background-color:#3C3E42;
padding-top:20px;
padding-bottom:20px;
text-align:center;
margin-top:50px;
margin-bottom:50px;
color:#fff !important;
text-transform: uppercase;
width:100%;
}

.top-heading{
    background-color:#3C3E42;
    color: #fff !important;
    text-align: center;
    border-radius: 28px;
}/* End custom CSS */