


/******************************************************/

.explain {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #333;
    border-radius: 10px;
    padding: 20px;
    margin: 20px auto;
    width: 85%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
}

.explain h3 {
    font-size: 24px;
    color: #007bff;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
}

.explain ol {
    padding-left: 20px;
    margin: 0;
}

.explain ol span {
    display: block;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #555;
}

.explain li {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 16px;
}

.explain li b {
    color: #007bff;
}

.explain li u {
    text-decoration: underline;
}

.explain li:last-child {
    margin-bottom: 0;
}


<style>
/* Tabs container */
.tabs-container {
    width: 85%;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

/* Tabs buttons */
.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.tab-button {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 0 5px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.tab-button:hover {
    background: #0056b3;
    transform: scale(1.05);
}

.tab-button.active {
    background: #0056b3;
    font-weight: bold;
}

/* Tab content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}




/***************************************************/



/* CSS */
.button-49,
.button-49:after {
  height: 76px;
  line-height: 78px;
  font-size: 20px;
  font-family: 'Bebas Neue', sans-serif;
  background: linear-gradient(45deg, transparent 5%, #FF013C 5%);
  border: 0;
  color: #fff;
  letter-spacing: 3px;
  box-shadow: 6px 0px 0px #00E6F6;
  outline: transparent;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
    justify-content: center;
align-items: center;
margin: auto;
}


.button-49:after {
  --slice-0: inset(50% 50% 50% 50%);
  --slice-1: inset(80% -6px 0 0);
  --slice-2: inset(50% -6px 30% 0);
  --slice-3: inset(10% -6px 85% 0);
  --slice-4: inset(40% -6px 43% 0);
  --slice-5: inset(80% -6px 5% 0);
  
  content: 'ALTERNATE TEXT';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 3%, #00E6F6 3%, #00E6F6 5%, #FF013C 5%);
  text-shadow: -3px -3px 0px #F8F005, 3px 3px 0px #00E6F6;
  clip-path: var(--slice-0);
}

.button-49:hover:after {
  animation: 1s glitch;
  animation-timing-function: steps(2, end);
}

@keyframes glitch {
  0% {
    clip-path: var(--slice-1);
    transform: translate(-20px, -10px);
  }
  10% {
    clip-path: var(--slice-3);
    transform: translate(10px, 10px);
  }
  20% {
    clip-path: var(--slice-1);
    transform: translate(-10px, 10px);
  }
  30% {
    clip-path: var(--slice-3);
    transform: translate(0px, 5px);
  }
  40% {
    clip-path: var(--slice-2);
    transform: translate(-5px, 0px);
  }
  50% {
    clip-path: var(--slice-3);
    transform: translate(5px, 0px);
  }
  60% {
    clip-path: var(--slice-4);
    transform: translate(5px, 10px);
  }
  70% {
    clip-path: var(--slice-2);
    transform: translate(-10px, 10px);
  }
  80% {
    clip-path: var(--slice-5);
    transform: translate(20px, -10px);
  }
  90% {
    clip-path: var(--slice-1);
    transform: translate(-10px, 0px);
  }
  100% {
    clip-path: var(--slice-1);
    transform: translate(0);
  }
}

@media (min-width: 768px) {
  .button-49,
  .button-49:after {
    width: 200px;
    height: 86px;
    line-height: 88px;
  }
}

/****************Next & previous buttons**************************/

.next-btn {
                    bottom: 25px; 
                    right: 25px; 
                    background: linear-gradient(135deg, #4e9af1, #2a6df3); 
                    color: #fff; 
                    padding: 14px 28px; 
                    border-radius: 50px; 
                    font-weight: 600; 
                    text-decoration: none; 
                    align-items: center;
                    gap: 10px; 
                    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); 
                    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease ; 
                    font-size: 16px;
                }
                .arrow {
                    display: inline-block; 
                    transition: transform 0.3s ease; 
                    font-size: 18px ; 
                    animation: pulse 2s infinite;
                }

                .next-btn:hover {
                    background: linear-gradient(135deg, #2a6df3, #1a4bb8);
                    transform: translateX(5px);
                }

                .next-btn:hover .arrow {
                    transform: translateX(5px);
                }

                @keyframes pulse {
                    0%, 100% {
                        transform: translateX(0);
                    }
                    50% {
                        transform: translateX(3px);
                    }
                }

            
            .previous-btn {
                    bottom: 25px; 
                    left: 25px; 
                    background: linear-gradient(135deg, #4e9af1, #2a6df3); 
                    color: #fff; 
                    padding: 14px 28px; 
                    border-radius: 50px; 
                    font-weight: 600; 
                    text-decoration: none; 
                    align-items: center; 
                    gap: 10px; 
                    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); 
                    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease ; 
                    font-size: 16px;
                }

                .arrow {
                    display: inline-block; 
                    transition: transform 0.3s ease; 
                    font-size: 18px ; 
                    animation: pulse 2s infinite;
                }

                .next-btn:hover {
                    background: linear-gradient(135deg, #2a6df3, #1a4bb8);
                    transform: translateX(5px);
                }

                .next-btn:hover .arrow {
                    transform: translateX(5px);
                }

                @keyframes pulse {
                    0%, 100% {
                        transform: translateX(0);
                    }
                    50% {
                        transform: translateX(3px);
                    }
                }



/***********************Video Container styles*****************************/
.background-color1 {
    background-color: rgb(1, 1, 26);
    width: 100%;
    height: 500px;
    margin-top: 5%;
    display: flex;
}

.video {
    width: 99%;
    float: left; 
    background-color: brown;
    height: 90%;
    margin: 1%; border-radius: 5%;
}