*{
    margin: 0px;
}


body {
    font-family: 'Poppins', sans-serif; 
    background-color: #29005C;
}
/* Navbar Starting */
.navbar {
    background: transparent; 
    padding: 20px;
    display: flex;
    flex-direction: column; 
    align-items: flex-start; 
    position: fixed; 
    top: 0;
    width: 100%;
    transition: top 0.3s ease, opacity 0.5s ease; 
    z-index: 1000;
    backdrop-filter: blur(5px); 
    border-radius: 10px;
    font-family: 'Roboto', sans-serif; 
}

.nav-container {
    display: flex;
    justify-content: flex-start; 
    align-items: center;
    margin: 0 auto; 
    width: 100%; 
}


.logo {
    margin-right: 20px; 
    transition: transform 0.3s ease; 
}

.logo:hover {
    transform: scale(1.05); 
}
.logo img {
    width: 140px;
    height: 80px;
}

.nav-left {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}


.nav-left li {
    margin: 0 10px; 
}

.nav-left li a {
    color: white; 
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    overflow: hidden; 
    transition: color 0.3s ease; 
}


.nav-left li a.active {
    color: #FFD700; 
    background-color: rgba(255, 215, 0, 0.2); 
    border-radius: 5px; 
}


.nav-left li a:hover {
    color: #FFD700; 
}


.nav-left li a::after {
    content: ""; 
    position: absolute;
    left: 50%;
    bottom: -5px; 
    width: 100%;
    height: 2px;
    background: white; 
    transform: translateX(-50%) scaleX(0); 
    transition: transform 0.3s ease; 
}

.nav-left li a:hover::after {
    transform: translateX(-50%) scaleX(1); 
}


.hamburger {
    display: none; 
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1100; 
    transition: transform 0.3s ease; 
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: white;
    border-radius: 5px; 
    transition: all 0.3s ease; 
}


.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0; 
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(0, 0, 0, 0.8); 
    display: none;
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
    z-index: 999;
    opacity: 0; 
    transition: opacity 0.5s ease; 
}


.mobile-menu-overlay.show {
    display: flex; 
    opacity: 1; 
    background: linear-gradient(to right, rgba(118, 10, 255, 0.8), rgba(255, 0, 0, 0.8)); 
    animation: fadeInOverlay 0.5s ease; 
}

@keyframes fadeInOverlay {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.mobile-menu-overlay ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%; 
}


.mobile-menu-overlay ul li {
    margin: 20px 0;
    text-align: center; 
}

.mobile-menu-overlay ul li a {
    color: white;
    font-size: 24px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, transform 0.3s ease; 
    opacity: 1; 
    animation: fadeIn 0.5s forwards; 

}
.mobile-menu-overlay ul li a:hover {
    color: #FFD700; 
    transform: scale(1.1); 
}


@media (max-width: 768px) {
    .nav-left {
        display: none; 
    }

    .hamburger {
        display: flex;
    }


    .mobile-menu-overlay.show ul {
        margin: 0; 
        padding: 0; 
    }

    .mobile-menu-overlay.show ul li {
        margin: 20px 0; 
    }

    .mobile-menu-overlay.show {
        display: flex; 
    }
}

/* Navbar Ending */


/* Footer */
.footer {
    background-color: #29005C;
    padding: 60px 20px;
    color: white;
    text-align: center;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left {
    text-align: left;
}

.footer-logo {
    max-width: 120px;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    max-width: 300px;
}

.footer-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap; 
}

.footer-links li {
    display: inline-block;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: white;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.footer-links a:hover::before {
    transform: scaleX(1);
}

.footer-links a:hover {
    color: #6200ff;
}

.footer-bottom {
    grid-column: span 2;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    margin-top: 20px;
}


@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center; 
    }
    
    .footer-left {
        text-align: center;
    }

    .footer-description {
        margin: 0 auto;
        max-width: 100%;
    }

    .footer-links {
        justify-content: center; 
        gap: 10px; 
    }

    .footer-links li {
        display: inline-block;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-left, .footer-center {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-description {
        margin: 0 auto;
        max-width: 100%;
    }

    .footer-links {
        flex-direction: column;
        align-items: center; 
    }

    .footer-links li {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .footer-description, .footer-links a {
        font-size: 14px; 
    }

    .footer-links a {
        padding: 5px;
    }

    .footer-links {
        flex-wrap: nowrap; 
    }
    
    .footer-logo {
        max-width: 100px; 
    }
}

/* Back to top */
.blok:nth-of-type(odd) {
    background-color:white;
    }
        
    .blok:nth-of-type(even) {
    background-color:black;
    }
    
    @-webkit-keyframes border-transform{
        0%,100% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; } 
        14% { border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%; } 
        28% { border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%; } 
        42% { border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%; } 
        56% { border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%; } 
        70% { border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%; } 
        84% { border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%; } 
    }
    .paginacontainer {
      height: 3000px;
    }
    
  
    
    .progress-wrap {
        position: fixed;
        right: 30px;
        bottom: 30px;
        height: 46px;
        width: 46px;
        cursor: pointer;
        display: block;
        border-radius: 50px;
        box-shadow: inset  0 0 0 2px rgba(0,0,0,0.1);
        z-index: 10000;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        -webkit-transition: all 200ms linear;
        transition: all 200ms linear;
    }
    .progress-wrap.active-progress {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .progress-wrap::after {
        position: absolute;
        font-family: 'unicons';
        content: '\e84b';
        text-align: center;
        line-height: 46px;
        font-size: 24px;
        color:#760AFF;
        left: 0;
        top: 0;
        height: 46px;
        width: 46px;
        cursor: pointer;
        display: block;
        z-index: 1;
        -webkit-transition: all 200ms linear;
        transition: all 200ms linear;
    }
    .progress-wrap:hover::after {
        opacity: 0;
    }
    .progress-wrap::before {
        position: absolute;
        font-family: 'unicons';
        content: '\e84b';
        text-align: center;
        line-height: 46px;
        font-size: 24px;
        opacity: 0;
        background: rgb(0, 0, 0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        left: 0;
        top: 0;
        height: 46px;
        width: 46px;
        cursor: pointer;
        display: block;
        z-index: 2;
        -webkit-transition: all 200ms linear;
        transition: all 200ms linear;
    }
    .progress-wrap:hover::before {
        opacity: 1;
    }
    .progress-wrap svg path { 
        fill: none; 
    }
    .progress-wrap svg.progress-circle path {
        stroke: #760AFF; 
        stroke-width: 4;
        box-sizing:border-box;
        -webkit-transition: all 200ms linear;
        transition: all 200ms linear;
    }
    .fa-arrow-up{
        color: #6708e0;
    position: relative;
    top: -43px;
    left: 13px;
    font-size: 28px;

    }
/* Back to top */

/* Social Bar Starting */
.social-bar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.social-item {
    position: relative;
    margin-bottom: 15px;
    background-color: #29005C;
    padding: 10px;
    border-radius: 0 25px 25px 0;
    width: 50px; 
    height: 50px;
    transition: width 0.4s ease, background-color 0.3s ease;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.social-item a {
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-decoration: none;
    width: 50px; 
}

.social-item i {
    font-size: 24px;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}

.social-item:hover {
    width: 180px; 
    background-color: #421779;
}

.social-item:hover i {
    transform: scale(1); 
}

.social-item span {
    position: absolute;
    left: 60px; 
    color: white;
    font-size: 16px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.social-item:hover span {
    opacity: 1; 
}

.social-bar .social-item:not(:last-child) {
    margin-bottom: 15px; 
}
/* Social Bar Ending */
