 .language-selector {
      position: absolute;
      top: 1em;
      right: 1em;
      z-index: 999;
    }
    
      .language-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end; /* or space-between / center */
  }

    .language-selector select {
      padding: 5px 10px;
      font-size: 0.9em;
      border-radius: 5px;
    }

    /* Responsive - mobile padding top */
    @media (max-width: 768px) {
      .language-selector {
        top: 4.5em;
      }
    }					

    
    
     .slider-container {
        	background:white;
            margin-left:280px;
            position: relative;
            max-width: 100%;
            width: 70%;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

	       .slider-wrapper {
			    position: relative;
			    width: 100%;
			    height: 280px;
			    overflow: hidden; /* ✅ Already hiding overflow */
			}
			
			.slides {
			    display: flex;
			    height: 100%;
			    width: max-content; /* ✅ Allow scrolling space for slides */
			    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
			}
			
			.slide {
			    flex: 27%; /* ✅ Show 3 slides per row (minus margin) */
			    margin: 0em;
			    height: 100%;
			    display: flex;
			    align-items: center;
			    justify-content: center;
			    font-size: 2rem;
			    font-weight: bold;
			    color: #333;
			    background: white;
			    border-radius: 10px;
			}

        .slide:nth-child(1) {
            color: white;
        }

        .slide:nth-child(2) {
            color: white;
        }

        .slide:nth-child(3) {
            color: white;
        }
        
        .slide-content {
            text-align: center;
            max-width: 600px;
        }

        .partner-logo {
            width: 120px;
            height: 120px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            margin: 20px auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
         .partner-logo img{
          margin-top: 20px;
         	border-radius: 20px;
         }

        .partner-name {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            animation: slideInUp 0.8s ease-out;
        }

        .partner-description {
        	color:white;
        	padding-left:50px;
        	padding-right:50px;
        	margin-left:20px;
        	margin-right:20px;
             width: 450px;
            font-size: 1.1rem;
            opacity: 0.9;
            word-break: break-word;
            white-space: pre-wrap;
            line-height: 1.6;
            animation: slideInUp 0.8s ease-out 0.2s both;
            margin-top: -3em;
        }

        .partner-stats {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
            animation: slideInUp 0.8s ease-out 0.4s both;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            transition: all 0.3s ease;
            z-index: 10;
            user-select: none;
        }

        .nav-button:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        .nav-button:active {
            transform: translateY(-50%) scale(0.95);
        }

        .prev {
            left: 20px;
        }

        .next {
            right: 20px;
        }

        .indicators {
            display: flex;
            justify-content: center;
            gap: 10px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: white;
            transform: scale(1.3);
        }

        .indicator:hover {
            background: rgba(255, 255, 255, 0.6);
        }

        .auto-play-toggle {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 8px 12px;
            border-radius: 20px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .auto-play-toggle:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        @media (max-width: 768px) {
            .slider-container {
                margin: 10px;
                width: 100%;
                border-radius: 15px;
            }

            .slider-wrapper {
                height: 300px;
            }

            .slide-title {
                font-size: 2rem;
            }

            .slide-text {
                font-size: 1rem;
            }

            .nav-button {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .prev {
                left: 15px;
            }

            .next {
                right: 15px;
            }
        }
        
 .search-container {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Align to the right */
    margin: 10px;
  }

  .search-box {
    padding: 6px 10px;
    font-size: 12px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
    outline: none;
  }

  .search-button {
  	margin-left:6px;
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-left: none;
    background-color: #007BFF;
    color: white;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
  }

  .search-button i {
    font-size: 14px;
  }