/* Overall Slider Wrapper */
.dynamic-content-slider-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* Top Slider Area - Center Mode Layout */
.top-slider-area {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.slider-thumbnails-container {
  position: relative;
  width: 100%; /* Fixed width to contain center mode layout */
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Center Mode Thumbnail Positioning */
.thumbnail-item {
  position: absolute;
  width: 250px;
  /*height: 105px;*/
  border: 2px solid transparent;
  border-radius: 0px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  justify-content: center;
  align-items: center; 
  opacity: 0.4;
  transform: scale(0.7);
  /*z-index: 1;*/
}
/* Center position - Active slide */
.thumbnail-item.center {
  transform: translateX(0) scale(1.2);
  opacity: 1;
  border-color: #e91e63;
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
  /*z-index: 5;*/
}
.thumbnail-item img {
    height: 100%;
    width: 100%;
    border: 2px solid #7F5D3F !important;
}
/* Left positions */
.thumbnail-item.left-1 {
  transform: translateX(-310px) scale(0.9);
  opacity: 0.7;
  /*z-index: 3;*/
}
.thumbnail-item.left-2 {
  transform: translateX(-570px) scale(0.8);
  opacity: 0.5;
  /*z-index: 2;*/
}
/* Right positions */
.thumbnail-item.right-1 {
  transform: translateX(300px) scale(0.9);
  opacity: 0.7;
  /*z-index: 3;*/
}
.thumbnail-item.right-2 {
  transform: translateX(560px) scale(0.8);
  opacity: 0.5;
  /*z-index: 2;*/
}
/* Hidden slides */
.thumbnail-item.hidden {
  transform: scale(0.6);
  opacity: 0;
  /*z-index: 1;*/
}
/* Hover effects */
/* Navigation Arrows */
.slider-arrows {
  display: flex;
  gap: 10px;
  position: absolute;
  right: 20px;
  /*z-index: 10;*/
}
.slider-arrow {
  width: 45px;
  height: 45px;
  background-color: #e91e63;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
  /* Removed font-size as it's no longer an icon font */
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}
.slider-arrow svg {
  width: 100%; /* Make SVG fill the arrow container */
  height: 100%;
}
.slider-arrow:hover {
  background-color: #d81b60;
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}
.slider-arrow:active {
  transform: scale(0.95);
}
/* Main Content Area */
.slider-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.main-content-area {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.main-image-column {
  flex: 1;
  width: 100%;
  overflow: hidden;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.main-slide-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: opacity 0.5s ease;
}
.text-and-small-image-column {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.slide-theme {
  font-size: 0.8em;
  color: #e91e63;
  text-transform: uppercase;
  margin: 0;
  font-weight: bold;
}
.slide-title {
  font-size: 2em;
  font-weight: bold;
  color: #333;
  margin: 0;
}
.slide-description {
  font-size: 1em;
  line-height: 1.6;
  color: #555;
}
.small-image-block {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #fdf0f5;
  padding: 15px;
  border-radius: 8px;
  margin-top: 10px;
}
.small-slide-image {
  width: 100px;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
}
.small-image-text {
  display: flex;
  flex-direction: column;
}
.small-image-title {
  font-size: 1.1em;
  font-weight: bold;
  color: #333;
  margin: 0;
}
.small-image-description {
  font-size: 0.9em;
  color: #666;
  margin: 0;
}
/* Security Features Section */
.security-features-section h4 {
  font-size: 1.5em;
  color: #333;
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
.security-features-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.security-images-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}
/* Hotspot related styles */
.security-image-wrapper {
  position: relative; /* Crucial for positioning hotspots */
  width: 100%;
  height: auto;
  overflow: visible; /* Ensure hotspots don't overflow image bounds */
  border-radius: 8px;
}
.security-feature-static-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}
.hotspots-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Allow clicks/hovers on elements inside */
}
.hotspot-item {
  position: absolute;
  pointer-events: auto; /* Re-enable pointer events for the hotspot itself */
  /*z-index: 0;*/
}
.hotspot-number {
  width: 35px;
  height: 35px;
  background-color: #E7000F; 
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 0.9em;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, background-color 0.2s ease;
  /*z-index: 0;*/
  position: relative;
}
.hotspot-number:hover {
  transform: scale(1.1);
  background-color: #E7000F;
}
.hotspot-popup {
  position: absolute;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  padding: 10px;
  width: 250px;  
  /*z-index: 99999;*/
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease; /* Added transform to transition */
  transform: translateY(10px); /* Initial slight offset */
  pointer-events: auto; /* Ensure popup content is clickable */
  max-width: 250px; 
  box-shadow: 0 10px 40px 0 rgba(17,17,29,.28);
}
.hotspot-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.hotspot-popup-image {
  width: 100%;
  height: auto; 
  object-fit: cover; 
  /* margin-bottom: 10px; */
}
.hotspot-popup-heading {
  font-size: 16px !important;
  color: #000;
  margin-top: 0;
  margin-bottom: 5px;
  line-height: normal;
}
.hotspot-popup-content {
  font-size: 14px;
  color: #000;
  line-height: normal;
  margin-bottom: 0;
}
.hotspot-popup-button {
  display: inline-block;
  background-color: #e91e63;
  color: #fff !IMPORTANT;
  padding: 8px 15px;
  border-radius: 0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.2s ease;
  font-family: 'Poppins';
  border: 0;
}
.hotspot-popup-button:hover {
  background-color: #d81b60;
}
.security-details-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.security-category {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.security-category-inner-sec {
  /* background-color: #fdf0f5; */
  /* padding: 15px; */
  /* border-radius: 8px; */
}
.category-title {
  font-size: 1.2em;
  font-weight: bold;
  color: #e91e63;
  text-transform: uppercase;
  margin: 0;
}
.category-instruction {
  font-size: 0.9em;
  color: #777;
  margin: 0;
}
.security-points-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.security-point-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.point-number-wrapper {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #e91e63;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8em;
  font-weight: bold;
  color: #fff;
}
.point-content {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
}
.point-image {
  width: 80px;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  flex-shrink: 0;
}
.point-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.point-title {
  font-size: 1em;
  font-weight: bold;
  color: #333;
  margin: 0;
}
.point-description {
  font-size: 0.9em;
  color: #666;
  line-height: 1.5;
  margin: 0;
}
/* Responsive Adjustments */
.hotspot-item.hovered {

  z-index: 100; 

}



@media (max-width: 1300px) {
    .main-image-column { 
    gap: 30px;
}
.notes-sec-slider-tab-list  .main-content-area .text-and-small-image-column h3 {
    font-size: 28px; 
}
.notes-sec-slider-tab-list  .main-content-area .text-and-small-image-column p.slide-theme { 
    font-size: 16px !important; 
}
.notes-sec-slider-tab-list .slide-description p {
    font-size: 16px; 
    line-height: 20px; 
    margin-bottom: 10px; 
}
.notes-sec-slider-tab-list  .small-image-block img { 
    max-width: 230px;
}
.notes-sec-slider-tab-list  .small-image-text p {
    font-size: 28px !important;
}
.notes-sec-slider-tab-list .small-image-block { 
    gap: 30px;
}
.notes-sec-slider-tab-list .security-features-section h4 {
    font-size: 28px; 
}
.notes-sec-slider-tab-list .security-features-grid {
    margin-top: 40px; 
}
.notes-sec-slider-tab-list .security-category h5 {
    font-size: 22px; 
    line-height: 26px; 
}
 
.notes-sec-slider-tab-list .security-points-list .point-content img { 
    height: 100%;
}
.notes-sec-slider-tab-list .security-features-grid .security-images-column { 
    gap: 30px;
}
}
@media (max-width:991px) {

.text-and-small-image-column { 
    gap: 10px;
}
.notes-sec-slider-tab-list  .main-content-area .text-and-small-image-column h3 {
    font-size: 25px;
}
.notes-sec-slider-tab-list  .main-content-area .text-and-small-image-column p.slide-theme {
    font-size: 14px !important;
}
.notes-sec-slider-tab-list  .small-image-block img {
    max-width: 200px;
}
.notes-sec-slider-tab-list  .small-image-text p {
    font-size: 25px !important;
}
.notes-sec-slider-tab-list .small-image-block {
    gap: 20px;
}
}





@media (min-width: 768px) {
  .main-content-area {
    flex-direction: row;
  }
  .security-features-grid {
    flex-direction: row;
  }
  .security-images-column {
    max-width: 40%;
  }
  .security-details-column {
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
.security-category-inner-sec { 
    max-width: 240px;
}
.notes-sec-slider-tab-list .security-category { 
    gap: 20px;
}
.security-points-list { 
    gap: 15px;
    width: 100%;
    max-width: 100%;
}
.notes-sec-slider-tab-list .security-features-grid .security-details-column { 
    gap: 20px;
}
   .security-images-column.slide-currency-100-security-images.slide-index-1-security-images .hotspot-item.hotspot-item-2 .hotspot-popup {
    left: unset !IMPORTANT;
    right: 0;
}
  
  .notes-sec-slider-tab-list .main-content-area .text-and-small-image-column, .notes-sec-slider-tab-list .main-content-area .main-image-column {
    width: 100% !important;
    max-width: 100%;
}
.hotspot-popup {
    width: 180px;
    max-width: 180px; 
}
.hotspot-popup-heading {
    font-size: 14px !important;  
    margin-bottom: 0px; 
}
.hotspot-popup img.hotspot-popup-image { 
    object-fit: contain; 
}
.hotspot-popup-content {
    font-size: 10px; 
}
.hotspot-popup-button { 
    padding: 6px 10px; 
    font-size: 10px; 
}
.notes-sec-slider-tab-list .security-features-grid .security-images-column, .notes-sec-slider-tab-list .security-features-grid .security-details-column { 
    max-width: 100% !important; 
}
.slider-arrows { 
    gap: 0; 
}
.notes-sec-slider-tab-list .security-features-grid .hotspot-item.hotspot-item-3 .hotspot-popup {
    right: 0 !IMPORTANT;
}
.notes-sec-slider-tab-list .security-features-grid .hotspot-item.hotspot-item-4 .hotspot-popup {
    right: 0 !important;
}
}
@media (max-width:599px) {
 .main-image-column {
    gap: 20px;
}
.notes-sec-slider-tab-list  .main-content-area { 
    margin-top: 30px;
}
.notes-sec-slider-tab-list .security-category { 
    flex-direction: column;
}
.hotspot-popup {
    width: 130px;
    max-width: 130px;
}
.notes-sec-slider-tab-list .security-features-grid {
    margin-top: 20px;
}
.thumbnail-item.left-1 {
    transform: translateX(-245px) scale(0.9); 
}
.thumbnail-item.right-1 {
    transform: translateX(245px) scale(0.9); 
}
.thumbnail-item { 
    width: 205px;
    height: 105px; 
}
.slider-arrow svg {
    width: 30px !IMPORTANT;
    height: 30px !IMPORTANT;
}
}
@media (max-width:480px) {
.notes-sec-slider-tab-list .security-category { 
    flex-direction: column;
}
.notes-sec-slider-tab-list .security-features-section h4 {
    font-size: 24px;
}
.notes-sec-slider-tab-list .security-category h5 {
    font-size: 20px;
    line-height: 24px;
}
.notes-sec-slider-tab-list .security-category p {
    font-size: 14px; 
    line-height: 20px; 
}
.notes-inr > .elementor-container.elementor-column-gap-default {
    padding-left: 20px !IMPORTANT;
}
}
@media (max-width:420px) {

.notes-sec-slider-tab-list  .small-image-text p {
    font-size: 22px !important;
}
.notes-sec-slider-tab-list  .small-image-block img {
    max-width: 170px;
}
}



@media (max-width:320px) {
.hotspot-popup {
    width: 120px;
    max-width: 120px;
}
}