

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */


  
        .text-shadow-custom {
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }
        .card-hover:hover {
            transform: translateY(-5px);
            /* Updated shadow from pink/blue */
            box-shadow: 0 15px 30px rgba(59, 130, 246, 0.3); 
        }

        /* Custom class for the main background gradient (Pink to Blue) */
        .bg-main-gradient {
            background-image: linear-gradient(to bottom right, #f59e0b, #3b82f6);
        }

        /* Custom class for the text gradient on titles (Pink to Blue) */
        .text-main-gradient { 
            background-image: linear-gradient(to right, white); 
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        /* Custom loading spinner - updated color */
        /* Loader styles kept just in case, though loading logic is removed */
        .loader {
            border: 4px solid rgba(255, 255, 255, 0.3);
            border-top-color: #fcd34d; /* Yellow spinner color */
            border-radius: 50%;
            width: 24px;
            height: 24px;
            -webkit-animation: spinner 1.5s linear infinite;
            animation: spinner 1.5s linear infinite;
        }

        @-webkit-keyframes spinner {
            0% { -webkit-transform: rotate(0deg); }
            100% { -webkit-transform: rotate(360deg); }
        }

        @keyframes spinner {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        
.ecomd{
    display: none;
}
.scroll-track{
    display: none;
}

/* Wrapper */
.ecomdm {
  width: 300px;   /* adjust size */
  height: 300px;
  margin: auto;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #111;
}

/* Items (all hidden initially) */
.sequential-itemm {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  border-radius: 12px;
}

/* Show active one */
.sequential-itemm.active {
  opacity: 1;
  z-index: 1;
}

/* Example colors */


.scroll-trackm {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* Individual image item (Sequential Item) */
        .sequential-itemm {
            position: absolute; /* Stack all items on top of each other */
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0; /* Hidden by default */
            transition: opacity 0.6s ease-in-out; /* Smooth transition for fade effect */
            background-color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Active item (Only one shown at a time) */
        .sequential-itemm.active {
            opacity: 1;
        }
        
        /* Ensure images fit nicely */
        .sequential-itemm img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Use cover for clean fills, or 'contain' if aspect ratio is important */
            border-radius: 12px;
        }

        /* Navigation Button Styling */
        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            padding: 10px 15px;
            border-radius: 50%;
            font-size: 1.5rem;
            line-height: 1;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .nav-btn:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }
