

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.text-custom {
    color: #5c1cad;
    display: inline-block;
    position: relative;
}

.text-custom::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: #5c1cad;
    box-shadow: 0 5px 0 #5c1cad;
    transform: rotate(-1.32deg);
}
#svgDiv{
    position: relative;
    margin: 50px;
}
#maktabDiv {
    position: absolute;
    top: 50%;
    left: -16%;
    transform: translateY(-50%);
}

#markazDiv {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
}

#repititorDiv {
    position: absolute;
    top: 50%;
    right: -16%;
    transform: translateY(-50%);
}

#uztozDiv {
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
}






/* Timeline animatsiyasi */
.timeline {
    position: relative;
    width: 100%;
}

.timeline::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 90%;
    background: repeating-linear-gradient(
        to bottom,
        #ddd 0px, 
        #ddd 10px,  
        transparent 10px, 
        transparent 20px 
    );
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    transition: background 0.5s ease-in-out;
    z-index: 999;
}

.timeline-item {
    position: relative;
    width: 100%;
    max-width: 1320px;
    display: flex;
    align-items: center;
    justify-content: center; /* Markazlash */
    height: 100vh; /* Butun ekranni egallash */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.timeline-item.show {
    opacity: 1;
    transform: translateY(0);
    animation: fadeIn 0.5s ease forwards;
}

.timeline-item.hide {
    opacity: 0;
    transform: translateY(-30px);
    animation: fadeOut 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-30px);
    }
}

.timeline-content {
    width: 45%;
    padding: 20px;
    border-radius: 8px;
}

.timeline-image {
    width: 50%;
    text-align: center;
}

.timeline-image img {
    width: 100%;
    border-radius: 8px;
}

.timeline-icon {
    width: 15px;
    height: 15px;
    background: #6a0dad;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: top 0.5s ease-in-out;
    z-index: 999;
    animation: iconMove 0.5s ease-in-out;
}

@keyframes iconMove {
    from {
        transform: translateX(-50%) translateY(-50%) scale(0.5);
    }
    to {
        transform: translateX(-50%) translateY(-50%) scale(1);
    }
}

.timeline-progress {
    position: absolute;
    width: 4px;
    background: #6a0dad;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    height: 0;
    transition: height 0.5s ease-in-out;
    z-index: 9999;
}

/* Mobil uchun */
@media screen and (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }

    .timeline-content,
    .timeline-image {
        width: 90%;
    }
}








.recommended {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(95.21deg, #990DCA 1.33%, #0647AA 99.55%);
    color: white;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 14px;
}









.slider-container {
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    white-space: nowrap;
}

.slider {
    display: flex;
    align-items: center;
    gap: 30px;
    animation: slide 5s linear infinite;
    width: max-content;
}

.slider img {
    max-height: 80px;
    max-width: 150px;
    object-fit: contain;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-16.8%);
    }
}












.pricing-switcher {
	text-align: center;
}

.pricing-switcher .fieldset {
	display: inline-block;
	position: relative;
	padding: 2px;
	border-radius: 50px;
	border: 0;
    background-color: rgba(228, 230, 241, 1);
}

.pricing-switcher input[type="radio"] {
	position: absolute;
	opacity: 0;
}

.pricing-switcher label {
	position: relative;
	z-index: 1;
	display: inline-block;
	float: left;
	width: 120px;
	height: 30px;
	line-height: 30px;
	cursor: pointer;
	font-size: 18px;
	color: black;
}

.pricing-switcher .switch {
	position: absolute;
	top: 2px;
	left: 2px;
	height: 30px;
	width: 120px;
	background-color: white;
	border-radius: 50em;
	-webkit-transition: -webkit-transform 0.5s;
	-moz-transition: -moz-transform 0.5s;
	transition: transform 0.5s;
}

.pricing-switcher input[type="radio"]:checked + label + .switch,
.pricing-switcher input[type="radio"]:checked + label:nth-of-type(n) + .switch {
	-webkit-transform: translateX(120px);
	-moz-transform: translateX(120px);
	-ms-transform: translateX(120px);
	-o-transform: translateX(120px);
	transform: translateX(120px);
}

.no-js .pricing-switcher {
	display: none;
}












.custom-list {
    list-style: none;
    padding: 5px;
    margin-top: 20px;
}

.custom-list li {
    padding-left: 30px;
    background: url("img/check.png") no-repeat left center;
    background-size: 20px;
    margin-bottom: 10px;
}
.price-count{
    color: #666;
}




.signup-page-2{
    background-color: white;
    width: 30%;
}



@media (max-width: 600px){
    .timeline-icon{
        display: none;
    }
    .timeline-progress{
        display: none;
    }
    .timeline::before{
        display: none;
    }
    #what_work iframe{
        height: 200px;
    }
    #maktabDiv {
        position: absolute;
        top: 50%;
        left: -16%;
        transform: translateY(-50%);
    }
    
    #markazDiv {
        position: absolute;
        left: 55%;
        transform: translateX(-50%);
    }
    
    #repititorDiv {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translate(20%, -50%);
    }
    
    #uztozDiv {
        position: absolute;
        bottom: -10%;
        left: 53%;
        transform: translateX(-50%);
    }
    #maktabDiv img{
        width: 50%;
    }
    
    #markazDiv img{
        width: 80%;
    }
    
    #repititorDiv img{
        width: 50%;
        float: right;
    }
    
    #uztozDiv img{
        width: 80%;
    }
    .timeline-item {
        height: 100%;
    }

    .bannerDiv{
        margin-top: 30px;
        padding: 0;
    }
    .bannerDiv .col{
        padding: 0;
    }
    .price-item{
        margin-bottom: 50px;
    }
    .timeline-item{
        opacity: 1;
        margin-bottom: 30px;
    }
    .navbar-container{
        padding: 0;
    }
    .timeline-content button{
        width: 100%;
    }

    .custom-dotted-line{
        display: none;
    }
    .signup-page-2{
        width: 100%;
    }
}














/* Accordion */
.accordion {
    max-width: 1000px;
    margin: 0 auto;
}
.accordion-item {
    border-radius: 10px;
    margin-bottom: 10px;
    background-color: white;
    border: 1px solid rgba(238, 241, 245, 1);
}
.accordion-header {
    display: flex;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}
.accordion-body {
    padding: 15px;
    padding-top: 0;
    font-size: 16px;
    color: #666;
    display: none;
}


















.modal-content {
    border-radius: 20px;
}
.modal-header {
    border-bottom: none;
}
.modal-footer {
    border-top: none;
}
.btn-purple {
    background-color: #6a0dad;
    color: white;
    border: none;
    border-radius: 20px;
}
.btn-purple:hover {
    background-color: #5e0c9b;
    color: white;
}
.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
}




.tab-container {
    display: flex;
    background: #f3f4f6;
    border-radius: 50px;
    padding: 2px;
    width: 80%;
    position: relative;
}
.tab-button {
    flex: 1;
    padding: 10px 20px;
    text-align: center;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    position: relative;
    z-index: 2;
}
.tab-button.active {
    color: black;
}
.tab-slider {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 49%;
    height: 80%;
    background: white;
    border-radius: 50px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}
.tab-container[data-active="student"] .tab-slider {
    transform: translateX(100%);
}


.input-group-text {
    border: none;
    background-color: #F1F4F6;
    text-align: center;
    font-size: 24px;
    height: 17%;
    width: 13%;
}
.input-group-text:focus {
    outline: none;
}


input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
