:root {
    --white-bar-height: 65px; 
}


#white-bar-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--white-bar-height); 
    background-color: #0b011600; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
    z-index: 10;
    padding: 10px 0;
    display: flex;
    justify-content: center; 
    align-items: center; 
    box-sizing: border-box; 
    overflow-x: hidden; 
}


#white-bar-header .header.container {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    padding: 0 20px; 
    box-sizing: border-box; 
}


.hamburger-menu {
    position: fixed; 
    top: 0;
    right: 0; 
    z-index: 100;
    width: 100%;
    height: 100%;
    background-color: #0b0116;
    opacity: 0;
    visibility: hidden;
    clip-path: circle(0% at 100% 0);
    transition: opacity 0.3s ease, visibility 0.3s ease, clip-path 0.6s ease;
}

.hamburger-menu.open {
    opacity: 1;
    visibility: visible;
    background-color: #0b0116;
    clip-path: circle(150% at 100% 0); 
}


 

.hamburger-menu.close {
    opacity: 0.5; 
    clip-path: circle(0% at 100% 0); 
    transition: opacity 0.3s ease, clip-path 0.6s ease;
}


.contact-icon {
    position: fixed; 
    top: 20px; 
    right: 70px; 
    z-index: 1000; 
    cursor: pointer; 
}


.contact-icon svg {
    width: 30px; 
    height: 30px; 
}

.contact-icon:hover svg {
    stroke: black; 
}

@keyframes circleExpand {
    0% {
        clip-path: circle(0% at 100% 0); 
    }
    40% {
        clip-path: circle(60% at 100% 0); 
    }
    80% {
        clip-path: circle(120% at 100% 0); 
    }
    100% {
        clip-path: circle(150% at 100% 0); 
    }
}

@keyframes circleCollapse {
    0% {
        clip-path: circle(150% at 100% 0) !important; /
    }
    40% {
        clip-path: circle(120% at 100% 0) !important; 
    }
    80% {
        clip-path: circle(60% at 100% 0) !important; 
    }
    100% {
        clip-path: circle(0% at 100% 0) !important; 
    }
}


.nav-links {
    list-style: none;
    padding: 20px;
    margin: 0px;
    display: flex;
    flex-direction: column;
    align-items: right;
    justify-content: center;
    height: 100%;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.nav-links li {
    margin: 10px;
}

.nav-links li a {
    text-decoration: none;
    font-size: 2.5rem;
    color: #f1f1f1;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #e02bd4;
}

.nav-links li a:active {
    color: #e02bd4;
}

.nav-sublinks {
    list-style-type: none; 
    padding-left: 0; 
    margin: 0; 
}

.nav-sublinks li {
    padding: 3px 0; 
    transition: background-color 0.3s ease, padding-left 0.3s ease; 
}


.nav-sublinks li:hover {
    background-color: #0b011600; 
    padding-left: 20px; 
}


.nav-sublinks li a {
    text-decoration: none; 
    color: #a4b0be; 
    font-size: 1.7rem; 
    font-weight: 500; 
    transition: color 0.3s ease; 
}


.nav-sublinks li a:hover {
    color: #12d5c9; 
}
.nav-sublinks li a:active {
    color: #12d5c9; 
}


.menu-toggle {
    position: fixed; 
    top: 20px;
    right: 20px;
    z-index: 1040; 
    cursor: pointer;
}

.menu-toggle div {
    width: 24px;
    height: 3px;
    background-color: #0b0116;
    margin: 3.2px 0;
    transition: 0.3s;
    stroke: #38B2FB;
}

.menu-toggle.open div:nth-child(1) {
    transform: rotate(45deg);
    position: relative;
    top: 6.5px;
}

.menu-toggle.open div:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open div:nth-child(3) {
    transform: rotate(-45deg);
    position: relative;
    top: -5.5px;
}

.container {
    position: fixed;
}

/* logo */
.logo-image img {
    height: 25px;
    width: auto;
    position: fixed;
    top: 24px;
    left: 30px;
    cursor: pointer;
    z-index: 100;
}


.logo-text img {
    height: 35px;
    width: auto;
    position: fixed;
    top: 18px;
    left: 85px;
    cursor: pointer;
    z-index: 100;
}


@media (max-width: 768px) {
    .nav-links li a {
        font-size: 20px;
    }
    #white-bar-header {
        padding: 10px;
    }

    .contact-icon {
        top: 15px;
        right: 50px;
    }

    .menu-toggle {
        top: 15px;
        right: 15px;
    }

    .hamburger-menu {
        width: 100%;
        height: 100%;
    }

    .nav-links {
        padding: 10px;
    }

    .nav-links li {
        margin: 5px 0;
    }

    .nav-links li a {
        font-size: 20px;
    }

}


@media (max-width: 480px) {
    .nav-links li a {
        font-size: 18px;
    }
    .contact-icon {
        top: 10px;
        right: 40px;
    }

    .menu-toggle {
        top: 10px;
        right: 10px;
    }

    .nav-links li a {
        font-size: 18px;
    }
}


.contact-icon svg {
    width: 30px; 
    height: 30px; 
    stroke: #0b0116; 
}

.contact-icon:hover svg {
    stroke: #0b0116; 
}


.contact-icon {
    position: fixed;
    top: 17.3px;
    right: 65px;
    z-index: 100;
    padding: 16px;
    background-color: white;
    border: 2px solid grey; 
    border-color: white;
    border-radius: 15%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.contact-icon:hover {
    background-color: #fff; 
    border-color: #e02bd4; 
    box-shadow: 0 9px 20px rgba(0, 0, 0, 0.15);
}

.contact-icon svg {
    width: 60px;
    height: auto;
    transition: transform 0.3s ease;max-width: 30px; 
            max-height: 25px;
            height: auto; 
            position: fixed; 
            top: 22px;
            right: 68px;
            z-index: 1000; 
            cursor: pointer;
        }
        

 .menu-toggle {
    position: fixed;
    top: 17.3px;
    right: 17px;
    z-index: 10006;
    padding: 5px;
    background-color: white;
    border: 2px solid grey; 
    border-color: white;
    border-radius: 15%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.menu-toggle:hover {
    background-color: #fff; 
    border-color: #e02bd4; 
    box-shadow: 0 9px 20px rgba(0, 0, 0, 0.15);
}

.bar {
    
    height: auto;
    transition: transform 0.3s ease;max-width: 30px; 
            max-height: 25px;
            height: auto; 
            position: fixed; 
            top: 22px;
            right: 30px;
            z-index: 1000; 
            cursor: pointer;
        }

.popup {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(56, 178, 251, 0.161); 
    justify-content: center;
    align-items: center;
    z-index: 100009;
}


.popup-content {
    background-color: #fff;
    padding: 40px 20px 20px; 
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-sizing: border-box;
    position: relative;
    max-height: 90%;
    overflow-y: auto;
}

.popup-content h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px; 
    text-align: center;
}

.popup-content ::placeholder {
    color: #5f5f5f86;
    margin-bottom: 30px;
    
}

.form-button {
    display: inline-block;
    padding: 12px 24px;
    transform: translateX(0%) scaleY(1) scaleX(1);
    border: 1px solid #ffffff;
    border-radius: 10px;
    transition: all 0.2s ease-in;
    position: relative;
    overflow: hidden;
    font-size: 19px;
    cursor: pointer;
    color: rgb(0, 0, 0);
    background-color: #12d5c9;
    z-index: 1;
  }

  @media (max-width: 375px) {
    .form-button {
        font-size: 16px;
        margin-top: 0px;
        margin-bottom: 0px;
    }
    .g-recaptcha {
        margin-top: 5px;
        margin-bottom: 5px;
    }
    .terms-container {
        margin-bottom: 0px !important;
    }
  }

  .form-label {
    display: flex;
    max-width: 80%;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0 0 0 10px;
    font-size: 16px;
    color: #000000;
    margin-bottom: -10px;
    z-index: 100;
    margin-right: -40px;
    position: relative;
    z-index: 10;
}

.form-label2 {
    display: flex;
    max-width: 80%;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 10px 0 0 15px;
    font-size: 16px;
    color: #000000;
    margin-bottom: 5px;
    z-index: 100;
}

.popup-content select{
    margin-bottom: 15px;
    font-size: 16px;
    border: 2px solid #12d5c9;
    height: 30px;
    width: 100%;
    border-radius: 5px;
    margin: 0px 10px 0px 5px;
}

.form-label span {
    background-color: #ffffff; 
    padding: 5px;
    z-index: 10 !important;
}

  .form-button i {
    margin-left: 10px;
    font-size: 19px;
  }
  
  .form-button:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1);
    top: 100%;
    width: 140%;
    height: 180%;
    background-color: #12d5c9;
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
  }
  
  .form-button:after {
    content: "";
    position: absolute;
    left: 55%;
    transform: translateX(-50%) scaleY(1) scaleX(1);
    top: 180%;
    width: 160%;
    height: 190%;
    background-color: #e02bd4;
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
  }
  
  .form-button:hover {
    color: #ffffff;
    background-color: #12d5c9;
    border: 1px solid #000000;
  }
  
  .form-button:hover:before {
    top: -35%;
    background-color: #e02bd4;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
  }
  
  .form-button:hover:after {
    top: -45%;
    background-color: #e02bd4;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
  }


.popup-close {
    position: absolute;
    top: 8px;
    right: 20px;
    cursor: pointer;
    font-size: 32px;
    color: grey !important;
}


form {
    display: flex;
    flex-direction: column;
}

input, textarea, button {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #12d5c9;
    border-radius: 5px;
}

button {
    background-color: #38B2FB;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

button:hover {
    background-color: grey;
}

.g-recaptcha {
    margin: 20px 0;
}

div label {
    color: #000;
    font-size: 16px;
}


.terms-container {
    display: flex;
    align-items: center;
    gap: 10px;
}


.switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}


.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}


.switch2 input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}


.switch2 {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 20px;
}


.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 20px;
}


.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}


input:checked + .slider {
    background-color: #e02bd4;
}

input:checked + .slider:before {
    transform: translateX(20px);
}


.terms-text {
    width: 100%;
    font-size: 14px;
    color: white;
    text-align: left;
}

.terms-text a {
    color: grey; 
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
}

div label {
    color: #000;
    margin-top: 10px;
    margin-bottom: 5px;
}


@media (max-width: 768px) {
    .popup-content {
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        margin: 0px;
        width: 100%;
        height: 100%; 
        max-width: none;
        max-height: none;
        padding: 0px;
        border-radius: 0; 
    }

    .popup-content form {
        width: 95%;
        max-width: 95%;
        padding: 20px;
    } 

    
    input, textarea, button {
        font-size: 14px;
    }
    div input[type="checkbox"] {
        transform: scale(0.8); 
        margin-right: 10px; 
        margin-left: 5px;
        
    }

    div label {
        font-size: 15px !important; 
        color: #000;
        margin-top: 15px;
        margin-bottom: 5px;
    }
    .terms-container {
    margin-bottom: 20px; 
}
    .g-recaptcha {
        margin-top:10px;
    }
    .prostor {
        margin-bottom: 10px;
    }
}


input[type="checkbox"] {
    -webkit-appearance: none;  
    -moz-appearance: none;    
    appearance: none;        
    width: 20px;               
    height: 20px;              
    border: 2px solid #333;
    border-radius: 4px;        
    background-color: #fff;    
    cursor: pointer;           
    position: relative;
    margin: 0px 10px 0px 5px;
}


input[type="checkbox"]:checked {
    background-color: #fff; 
    border-color: #333;     
}


input[type="checkbox"]:checked::before {
    content: "";                  
    font-family: 'FontAwesome';      
    font-size: 16px;                
    color: #13aff0;                 
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);  
}

input[type="text"], [type="email"], [type="tel"]{
    -webkit-appearance: none;  
    -moz-appearance: none;     
    appearance: none;          
    height: 20px;              
    border: 2px solid #12d5c9;    
    border-radius: 4px;        
    background-color: #ffffff;    
    cursor: pointer;           
    position: relative;
    margin: 0px 10px 0px 5px;
    color: #000000;
}

textarea[name="features"]{
    -webkit-appearance: none;  
    -moz-appearance: none;    
    appearance: none;          
    height: 50px;              
    border: 2px solid #12d5c9;    
    border-radius: 4px;        
    background-color: #ffffff;    
    cursor: pointer;           
    position: relative;
    margin: 0px 5px 0px 5px;
    color: #000000;
}

.title-form-h2 {
    text-align: center;
}

.divider2 {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #e02bd4;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 20px;
}

input[type="text"]:focus {
    border-color: #e02bd4; 
    outline: none; 
}
input[type="email"]:focus {
    border-color: #e02bd4; 
    outline: none; 
}

input[type="tel"]:focus {
    border-color: #e02bd4; 
    outline: none; 
}

textarea[name="features"]:focus{
    border-color: #e02bd4; 
    outline: none; 
}


input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    background-color: #d1cdd4 !important; 
    color: #ffffff !important; 
    -webkit-text-fill-color: #ffffff !important; 
    transition: background-color 5000s ease-in-out 0s; 
}


input:-webkit-autofill {
    border: 2px solid #12d5c9; 
}

.button-group {
    flex-grow: 1;
    margin: auto;
  }
  
  .button-group input[type="radio"] {
    display: none;
  }
  
  .button-group label {
    display: inline-block;
    padding: 10px 20px;
    cursor: pointer;
    border: 1px solid #12d5c9;
    background-color: #f1f1f1;
    color: #0b0116;
    border-radius: 10px;
    transition: all ease 0.2s;
    text-align: center;
    flex-grow: 1;
    flex-basis: 0;
    width: 90px;
    font-size: 15px;
    margin: 3px;
    box-shadow: 0px 0px 15px -15px #000000;
  }
  
  .button-group input[type="radio"]:checked + label {
    background-color: #12d5c9;
    color: #ffffff;
    border: 1px solid #0b0116;
  }

  fieldset {
    border: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 10px; 
    padding: 0;
    margin: 0;
}

.button-group2 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-group2 input[type="radio"] {
    display: none; 
}

.button-group2 label {
    display: inline-block;
    padding: 10px 20px;
    cursor: pointer;
    border: 1px solid #12d5c9;
    background-color: #f1f1f1;
    color: #0b0116;
    border-radius: 10px;
    transition: all ease 0.2s;
    text-align: center;
    width: 100%; 
    font-size: 15px;
    box-shadow: 0px 0px 15px -15px #000000;
}

.button-group2 input[type="radio"]:checked + label {
    background-color: #12d5c9;
    color: #ffffff;
    border: 1px solid #0b0116;
}


@media (max-width: 768px) {
    fieldset {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 480px) {
    fieldset {
        grid-template-columns: repeat(2, 1fr); 
    }

    .button-group2 label {
        padding: 15px 5px;
        font-size: 14px; 
    }
}





.snow-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 70vh; 
    overflow: hidden; 
    background: #0B0116; 
    position: relative; 
    z-index: 1; 
}

/* Animacija sneženja */
.snowfall-animation {
    position: absolute;
    top: 0;
    left: 0;
    
    width: 100%;
    height: 100%; 
    overflow: hidden;
    background: #0B0116;
    z-index: 1; 
}


.snow-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 20px;
    height: 100%;
    box-sizing: border-box;
    z-index: 2; 
}

.hero-container {
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    width: 100%;
    max-width: 1140px;
    background-color: #0b011600; 
    box-sizing: border-box; 
    margin: 0 auto; 
    z-index: 2; 
}

.hero-left-container,
.hero-right-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the content horizontally */
    justify-content: center; /* Center the content vertically */
    width: 48%; /* Adjust width as needed */
    padding: 20px; /* Add padding if needed */
    box-sizing: border-box; /* Include padding in the element's total width and height */
}

.hero-left-container img,
.hero-right-container img {
    max-width: 100%;
    height: auto; 
    margin-bottom: 10px; 
}

.card {
    padding: 1rem;
    overflow: hidden;
    border: 1px solid #c5c5c5;
    border-radius: 12px;
    background-color: #0b011600;
    backdrop-filter: blur(8px);
    min-width: 90%;
  }
  .wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 10;
    border: 0.5px solid #ffffff;
    border-radius: 8px;
    overflow: hidden;
  }
  .terminal {
    display: flex;
    flex-direction: column;
  
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
      "Liberation Mono", "Courier New", monospace;
  }
  .svetovno2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    min-height: 100px;
    padding-inline: 12px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    background-color: #202425;
  }



  .hidden-container-title {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 2.5rem;
    user-select: none;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #ffffff;
    font-size: 20px;
  }
  .hidden-container-title > svg {
    height: 18px;
    width: 18px;
    margin-top: 2px;
    color: #12d5c9;
  }
  .copy_toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    border: 0.65px solid #c1c2c5;
    margin-left: auto;
    border-radius: 6px;
    background-color: #202425;
    color: #12d5c9;
    cursor: pointer;
  }
  .copy_toggle:hover {
    background-color: #0ea89e00;
    border-color: #ffffff; 
    color: #ffffff; 
}
  .copy_toggle > svg {
    width: 20px;
    height: 20px;
    color: #12d5c9;
  }
  .copy_toggle:active > svg > path,
  .copy_toggle:focus-within > svg > path {
    animation: clipboard-check 500ms linear forwards;
  }
  .svetovno {
    display: flex;
    flex-direction: column;
    position: relative;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    overflow-x: auto;
    padding: 1rem;
    line-height: 19px;
    color: white;
    background-color: black;
    white-space: nowrap;
    min-height: 60px;
  }
  .pre {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-wrap: nowrap;
    white-space: pre;
    background-color: transparent;
    overflow: hidden;
    box-sizing: border-box;
    font-size: 16px;
  }
  .pre code:nth-child(1) {
    color: #575757;
  }
  .pre code:nth-child(2) {
    color: #e02bd4;
  }
  .cmd {
    height: 19px;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: row;
  }
  .cmd::before {
    content: attr(data-cmd);
    position: relative;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    background-color: transparent;
    animation: inputs 8s steps(22) infinite;
  }
  .cmd::after {
    content: "";
    position: relative;
    display: block;
    height: 100%;
    overflow: hidden;
    background-color: transparent;
    border-right: 0.15em solid #12d5c9;
    animation: cursor 0.5s step-end infinite alternate, blinking 0.5s infinite;
  }
  
  @keyframes blinking {
    20%,
    80% {
      transform: scaleY(1);
    }
    50% {
      transform: scaleY(0);
    }
  }
  @keyframes cursor {
    50% {
      border-right-color: transparent;
    }
  }
  @keyframes inputs {
    0%,
    100% {
      width: 0;
    }
    10%,
    90% {
      width: 58px;
    }
    30%,
    70% {
      width: 215px;
      max-width: max-content;
    }
  }
  @keyframes clipboard-check {
    100% {
      color: #e02bd4;
      d: path(
        "M 9 5 H 7 a 2 2 0 0 0 -2 2 v 12 a 2 2 0 0 0 2 2 h 10 a 2 2 0 0 0 2 -2 V 7 a 2 2 0 0 0 -2 -2 h -2 M 9 5 a 2 2 0 0 0 2 2 h 2 a 2 2 0 0 0 2 -2 M 9 5 a 2 2 0 0 1 2 -2 h 2 a 2 2 0 0 1 2 2 m -6 9 l 2 2 l 4 -4"
      );
    }
  }
  

.hero-left-container img {
    max-width: 100%; 
    height: auto; 
    width: 300px; 
    height: auto; 
}

.hero-left-container, .hero-right-container {
    width: 50%; 
    background-color: #0b011600; 
    padding: 20px;
    box-sizing: border-box; 
    border: 1px solid #0B0116; 
}



.hidden {
    display: none;
}



.hidden-container-2 {
    position: relative;
    max-width: 95%;
    max-height: 230px;
    width: 100%;
    background: #282828;
    margin: 0 15px;
    padding: 10px 20px;
    border-radius: 7px;
    border: 0.5px solid #fff;
    box-sizing: border-box; 
}

.hidden-container-2 .skill-box {
    width: 100%;
    margin: 25px 0;
}

.skill-box .hidden-container-2-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: rgb(226, 226, 226);
}

.skill-box .skill-bar {
    height: 8px;
    width: 100%;
    border-radius: 6px;
    margin-top: 6px;
    background: rgba(236, 236, 236, 0.1);
}

.skill-bar .skill-per {
    position: relative;
    display: block;
    height: 100%;
    border-radius: 6px;
    background: rgb(226, 226, 226);
    animation: progress 0.4s ease-in-out forwards;
    opacity: 0;
}

.skill-per-price {
    width: 100%;
    animation-delay: 0.1s;
}

.skill-per-ux-ui {
    width: 95%;
    animation-delay: 0.1s;
}

.skill-per-seo {
    width: 90%;
    animation-delay: 0.2s;
}

@keyframes progress {
    0% {
        width: 0;
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

.skill-per .tooltip {
    position: absolute;
    right: -5px;
    top: -28px;
    font-size: 11px;
    font-weight: 500;
    color: rgb(0, 0, 0);
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 3px;
    background: rgb(226, 226, 226);
    z-index: 1;
}

.tooltip::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    height: 10px;
    width: 10px;
    z-index: -1;
    background-color: rgb(226, 226, 226);
    transform: translateX(-50%) rotate(45deg);
}


.snow-title {
    opacity: 0;
    transform: translateY(-100%);
    animation: slideDown 1s ease-in-out forwards;
    animation-delay: 0.5s; /* Zamik za naslov */
    font-size: 70px; /* Velikost naslova za večje zaslone */
    color: white !important;
}

.snow-text-main {
    opacity: 0;
    margin-bottom: 10px;
    transform: translateY(-100%);
    animation: slideDown 1s ease-in-out forwards;
    animation-delay: 1s; 
    font-size: 18px; 
    color: #12d5c9;
    font-weight: bold;
}


.snow-text {
    opacity: 0;
    transform: translateY(-100%);
    animation: slideDown 1s ease-in-out forwards;
    animation-delay: 1s; 
    font-size: 18px; 
    color: white;
    padding: 30px;
    text-align: center;
    line-height: 1.8;;
}


.snow-cta-button {
    display: inline-block;
    padding: 12px 24px;
    transform: translateX(-50%) scaleY(1) scaleX(1.25);
    border: 1px solid #ffffff;
    border-radius: 10px;
    transition: all 0.2s ease-in;
    position: relative;
    overflow: hidden;
    font-size: 19px;
    cursor: pointer;
    color: rgb(0, 0, 0);
    background-color: #12d5c9;
    z-index: 1;
  }

  .snow-cta-button i {
    margin-left: 10px;
    font-size: 19px;
  }
  
  .snow-cta-button:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1.25);
    top: 100%;
    width: 140%;
    height: 180%;
    background-color: #12d5c9;
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
  }
  
  .snow-cta-button:after {
    content: "";
    position: absolute;
    left: 55%;
    transform: translateX(-50%) scaleY(1) scaleX(1.45);
    top: 180%;
    width: 160%;
    height: 190%;
    background-color: #e02bd4;
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
  }
  
  .snow-cta-button:hover {
    color: #ffffff;
    border: 1px solid #000000;
  }
  
  .snow-cta-button:hover:before {
    top: -35%;
    background-color: #e02bd4;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
  }
  
  .snow-cta-button:hover:after {
    top: -45%;
    background-color: #e02bd4;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
  }

  .prostor-divider {
    margin: 20px 0; 
    padding: 0; 
    width: 100%; 
    height: 20px; 
    background: transparent; 
}


@keyframes fadeIn {
    to {
        opacity: 1;
    }
}


@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes fall {
    to {
        transform: translateY(100vh);
    }
}


.snowflake {
    position: absolute;
    top: -10px;
    background-color: grey;
    border-radius: 50%;
    animation: fall linear infinite;
}


@media (max-width: 768px) {
   

    .snow-content {
        padding-top: 20%; 
    }

    .snow-title {
        font-size: 2rem; 
    }

    .snow-text {
        font-size: 1rem; 
    }

    .snow-cta-button {
        font-size: 14px; 
        padding: 10px 20px;
    }
    .snow-cta-button:active {
        color: #ffffff;
        border: 1px solid #000000;
    }

    .snow-cta-button:active:before {
        top: -35%;
        background-color: #e02bd4;
        transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
    }

    .snow-cta-button:active:after {
        top: -45%;
        background-color: #e02bd4;
        transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
    }
    .snow-cta-button i {
        margin-left: 10px;
        font-size: 14px;
      }

    .hero-container {
        flex-direction: column; 
        align-items: flex-start; 
    }

    .hero-left-container,
    .hero-right-container {
        width: 100%; 
    }
    .hidden-container-2 {
        padding: 10px 15px;
    }

    .hidden-container-2 .skill-box {
        margin: 20px 0;
    }

    .skill-box .hidden-container-2-title {
        font-size: 14px;
    }

    .skill-box .skill-bar {
        height: 6px;
    }

    .skill-per .tooltip {
        font-size: 10px;
        padding: 2px 4px;
    }
}

@media (max-width: 430px) {
    
    .hero-container {
        flex-direction: column; 
        align-items: flex-start; 
    }

    
    .hidden-container-title {
        font-size: 17px;
    }

    .snow-container {
        height: 300px; 
    }

    .snow-content {
        padding-top: 18%; 
    }

    .snow-title {
        font-size: 32px; 
        color: white;
    }

    .snow-text {
        font-size: 15px; 
        color: white;
    }

    .snow-cta-button {
        font-size: 14px; 
        padding: 8px 16px;
    }
    .hidden-container-2 {
        padding: 10px;
        width: 100%;
    }

    .hidden-container-2 .skill-box {
        margin: 15px 0;
    }

    .skill-box .hidden-container-2-title {
        font-size: 12px;
    }

    .skill-box .skill-bar {
        height: 5px;
    }

    .skill-per .tooltip {
        font-size: 9px;
        padding: 1px 3px;
    }

    .prostor-divider {
        margin: 30px 0;
    }
}


body, html, main {
    overflow-x: hidden; 
    width: 100vw; 
    width: 100%;
    margin: 0 auto;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #0b0116;
}


.sub-container {
    display: flex;
    max-width: 1140px; 
    justify-content: center;
    align-items: center;
    width: 100%; 
    padding: 20px; 
    box-sizing: border-box; 
    margin: 0 auto; 
    position: relative;
    background-image: radial-gradient(circle at 30% 55%, rgba(0, 200, 255, 0.1) 0.5%, transparent 18%),
                      radial-gradient(circle at 30% 60%, rgba(0, 200, 255, 0.05) 3%, transparent 15%),
                      radial-gradient(circle at 30% 40%, rgba(255, 0, 150, 0.05) 0.5%, transparent 15%),
                      radial-gradient(circle at 30% 45%, rgba(255, 0, 150, 0.1) 9%, transparent 18%),

                      radial-gradient(circle at 50% 55%, rgba(0, 200, 255, 0.1) 2%, transparent 25%),
                      radial-gradient(circle at 50% 60%, rgba(0, 200, 255, 0.05) 3%, transparent 15%),
                      radial-gradient(circle at 50% 40%, rgba(255, 0, 150, 0.05) 2%, transparent 15%),
                      radial-gradient(circle at 50% 45%, rgba(255, 0, 150, 0.1) 9%, transparent 24%),

                      radial-gradient(circle at 70% 55%, rgba(0, 200, 255, 0.1) 0.5%, transparent 18%),
                      radial-gradient(circle at 70% 60%, rgba(0, 200, 255, 0.05) 3%, transparent 15%),
                      radial-gradient(circle at 70% 40%, rgba(255, 0, 150, 0.05) 0.5%, transparent 15%),
                      radial-gradient(circle at 70% 45%, rgba(255, 0, 150, 0.1) 9%, transparent 18%);
                      
                      
                      background-size: 150% 150%; 
    background-position: center; 
    overflow: visible; 
}

@media (max-width: 500px) {
.sub-container {
    background-image: radial-gradient(circle at 44% 27%, rgba(255, 0, 150, 0.2) 1%, transparent 15%),
                      radial-gradient(circle at 55% 31%, rgba(0, 200, 255, 0.2) 1%, transparent 15%),

                      radial-gradient(circle at 55% 45%, rgba(255, 0, 150, 0.2) 1%, transparent 15%),
                      radial-gradient(circle at 44% 54%, rgba(0, 200, 255, 0.2) 1%, transparent 15%),

                      
                      radial-gradient(circle at 44% 66%, rgba(255, 0, 150, 0.2) 1%, transparent 15%),
                      radial-gradient(circle at 55% 73%, rgba(0, 200, 255, 0.2) 1%, transparent 15%);                  
}
    
}

/* .service-card {
    position: relative; Ensure the element is positioned relative for the pseudo-elements 
 }*/

 /*.info-text-container {
     position: relative; Ensure the element is positioned relative for the pseudo-elements
 } */
 /*
 .info-text-container::before {
     content: ''; 
     position: absolute;
     top: 50%;
     left: 50%;
     width: 350px;
     height: 300px;
     
     background: rgba(0, 200, 255, 0.3);
     filter: blur(150px);
     transform: translate(-50%, -50%);
     z-index: -1;
 }
 
 .info-text-container::after {
     content: ''; 
     position: absolute;
     top: 50%;
     left: 50%;
     width: 250px;
     height: 200px;
     background: rgba(255, 0, 150, 0.3);
     filter: blur(150px);
     z-index: -1;
 } 
 */


.sub-title-animation-title {
    max-width: 1140px; 
    width: 100%; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: flex-start;
    
    margin: 0 auto; 
    height: 80px;
    overflow: hidden; 
}


.sub-title-animation-title h2 {
    color: white;
    font-size: 32px;
    line-height: 1; 
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis; 
}


.sub-title-animation {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 20px; 
    width: 100%; 
    padding: 20px; 
    box-sizing: border-box; 
    background-color: #0b011600; 
}


.service-card {
    display: flex;
    flex-direction: column; 
    align-items: flex-start; 
    background: rgba(255, 255, 255, 0.050);
    border-radius: 15px;
    padding: 20px;
    height: auto; 
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    flex: 1 1 calc(33.333% - 40px); 
    max-width: 270px; 
    margin: 10px; 
}


.service-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}


.service-label {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #12d5c9;
    color: black;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}


.service-card h2 {
    font-size: 26px;
    margin: 20px 0;
    color: white;
    width: 100%;
}

.service-card p {
    font-size: 18px;
    color: #a4b0be;
    margin: 30px 0;
    width: 100%;
    flex-grow: 1; 
}


.service-price {
    font-size: 24px;
    font-weight: bold;
    margin: 15px 0 5px;
    color: white;
}

.service-price small {
    font-size: 14px;
    color: #a4b0be;
}


.service-icon {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    margin-bottom: 10px; 
    margin-top: 20px;
    width: 100%;
}

.service-icon i {
    height: 50px;
    width: 50px;
    font-size: 50px;
    color: #e02bd4; 
}


.service-button {
    background: #12d5c9;
    color: black;
    border: none;
    padding: 10px 20px;
    margin: 10px;
    margin-top: 10px !important;
    border-radius: 15px;
    border: 1px solid rgb(0, 0, 0);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: auto; 
    transition: background 0.3s ease, transform 0.3s ease;
    transform-origin: center; 
}

.service-button:hover {
    background: #0ea89e;
    border: 1px solid white;
    color: white;
    transform: scale(1.05);
}

.service-button:active {
    background: #0ea89e;
    border: 1px solid white;
    color: white;
    transform: scale(1.05);
}

.service-button i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.service-button:hover i {
    transform: translateX(5px);
}


.scroll-animate {
    opacity: 0;
    transform: translateY(20px); 
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0); 
}


.slide-in-animate {
    opacity: 0;
    transform: translateX(-20px); 
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.slide-in-animate.slide-in {
    opacity: 1;
    transform: translateX(0); 
}


@media (max-width: 1024px) {
    .service-card {
        flex: 1 1 calc(50% - 40px); 
        max-width: calc(50% - 40px); 
    }
    .faq-container {
        padding: 20px; 
    }

}

@media (max-width: 768px) {
    .sub-title-animation {
        flex-direction: column; 
        align-items: center; 
    }

    .service-card {
        flex: 1 1 100%; 
        max-width: 100%; 
    }
}

@media (max-width: 430px) {
    .sub-title-animation-title {
        width: auto;
    }

    .snow-container {
        height: 80vh;
    }

    .snow-content {
        display: flex;
        flex-direction: column; 
        justify-content: center; 
        align-items: center; 
    }

    .sub-container {
        display: flex;
        flex-direction: column; 
        align-items: center; 
        width: 100%;
    }

    .sub-title-animation {
        width: 100%; 
        display: flex;
        flex-direction: column; 
        align-items: center; 
        justify-content: center; 
        padding: 0; 
    }

    .service-card {
        width: 90%;
        max-width: 300px; 
        margin: 10px auto; 
    }

    .sub-title-tekst {
        width: 100%; 
        text-align: center; 
        padding: 20px 0; 
    }

    .service-button {
        width: 100%; 
        max-width: 300px; 
        margin: 0px;
        border-radius: 15px;
    }
}



.service-card:hover {
    box-shadow: 0 10px 20px #e02bd4;
}



.info-container-desktop {
    background-color: #0b011600;
    color: white;
    font-family: Arial, sans-serif;
    padding: 40px;
    margin: 0;
    position: relative;
    background-image: radial-gradient(circle at 35% 29%, rgba(0, 200, 255, 0.1) 0.5%, transparent 10%),
                      radial-gradient(circle at 44% 29%, rgba(255, 0, 150, 0.15) 0.5%, transparent 10%),
                      radial-gradient(circle at 56% 41%, rgba(0, 200, 255, 0.1) 0.5%, transparent 10%),
                      radial-gradient(circle at 65% 41%, rgba(255, 0, 150, 0.15) 0.5%, transparent 10%),
                      radial-gradient(circle at 35% 53%, rgba(0, 200, 255, 0.1) 0.5%, transparent 10%),
                      radial-gradient(circle at 44% 53%, rgba(255, 0, 150, 0.15) 0.5%, transparent 10%),
                      radial-gradient(circle at 56% 63.5%, rgba(0, 200, 255, 0.1) 0.5%, transparent 10%),
                      radial-gradient(circle at 65% 63.5%, rgba(255, 0, 150, 0.15) 0.5%, transparent 10%),
                      radial-gradient(circle at 35% 76%, rgba(0, 200, 255, 0.1) 0.5%, transparent 10%),
                      radial-gradient(circle at 44% 76%, rgba(255, 0, 150, 0.15) 0.5%, transparent 10%);
                      
                      background-size: 150% 150%; 
    background-position: center; 
    overflow: visible; 
}

.info-container-mobile {
    display: none;
}

.sub-info-container {
    max-width: 1100px;
    margin: auto;
}

.info-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.info-featured-title {
    color: #12d5c9;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 19px;
}

.info-main-heading {
    font-size: 36px;
    font-weight: bold;
    margin: 10px 0;
}

.info-description {
    color: #a4b0be;
    max-width: 400px;
    line-height: 1.5;
    font-size: 18px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
    align-items: center;
}

.info-grid-item {
    position: relative;
}

.info-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-image-container img {
    width: 100%;
    height: 85%;
    border-radius: 10px;
    display: block;
    margin-bottom: 150px;
    background: white;
    height: auto;
}

.info-text-container {
    background-size: 150%;
}

.info-text-container {
    margin-bottom: 150px;
    width: 100%;
}

@media (max-width: 560px) {
    .info-container-mobile {
        position: relative;
    background-image: radial-gradient(circle at 35% 30.5%, rgba(0, 200, 255, 0.15) 0.5%, transparent 6%),
                      radial-gradient(circle at 65% 31%, rgba(255, 0, 150, 0.15) 0.5%, transparent 6%),
                      radial-gradient(circle at 35% 43%, rgba(0, 200, 255, 0.15) 0.5%, transparent 6%),
                      radial-gradient(circle at 65% 43%, rgba(255, 0, 150, 0.15) 0.5%, transparent 6%),
                      radial-gradient(circle at 35% 54.5%, rgba(0, 200, 255, 0.15) 0.5%, transparent 6%),
                      radial-gradient(circle at 65% 55%, rgba(255, 0, 150, 0.15) 0.5%, transparent 6%),
                      radial-gradient(circle at 35% 67%, rgba(0, 200, 255, 0.15) 0.5%, transparent 6%),
                      radial-gradient(circle at 65% 67.5%, rgba(255, 0, 150, 0.15) 0.5%, transparent 6%),
                      radial-gradient(circle at 35% 78.5%, rgba(0, 200, 255, 0.15) 0.5%, transparent 6%),
                      radial-gradient(circle at 65% 79%, rgba(255, 0, 150, 0.15) 0.5%, transparent 6%);
                      
                      background-size: 150% 150%; 
    background-position: center; 
    overflow: visible; 
    }
}

.info-number {
    position: absolute;
    top: -40px;
    left: 50px;
    font-size: 72px;
    color: #12d5c9;
    font-weight: bold;
    text-shadow: 3px 3px 5px #e02bd4;
}

.info-category {
    font-weight: bold;
    margin-bottom: 5px;
}

.info-category.info-branding {
    color: #e02bd4;
    margin-bottom: -20px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
}

.info-text-container h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
}

.info-text-container p {
    font-size: 18px;
    line-height: 1.5;
}

.info-header p{
    font-size: 18px;
}

.info-digital  {
    color:#a4b0be;
    font-size: 18px;
}






@media screen and (max-width: 800px) {
    .info-image-container img {
        height: 250px;
        width: 100%;
    }
    .info-category.info-branding {
        font-size: 1rem;
    }
    .info-text-container h2 {
        font-size: 2rem;
    }
    .info-text-container p {
        font-size: 1rem;
    }
    .info-number {
        font-size: 3rem;
        top: -30px;
        left: 30px;
    }
    .prostor-divider {
        display: none;
    }
}

@media screen and (max-width: 500px) {
    .info-container-desktop {
        display: none;
    }

    .info-container-mobile {
        display: block;
        background-color: #0b011600;
        color: white;
        font-family: Arial, sans-serif;
        padding: 40px;
        margin: 0;
        margin-bottom: 0px;
    }
    .info-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .info-description {
        max-width: 100%;
    }

    .info-grid {
        display: flex;
        flex-direction: column; 
    }

    .info-number {
        font-size: 48px;
        top: 5px;
        left: 5px;
    }

    .info-main-heading {
        font-size: 28px;
    }
}


@media screen and (max-width: 480px) {
    .info-container {
        padding: 20px;
    }

    .info-main-heading {
        font-size: 32px;
        text-align: left;
    }

    .info-featured-title {
        font-size: 15px !important;
        text-align: left;
        margin-bottom: 20px;
    }

    .info-description {
        font-size: 18px;
        text-align: center;
    }

    .info-grid {
        display: flex;
        flex-direction: column; 
    }

    .info-image-container img {
        width: 90%;
        height: 90%;
        margin-bottom: 20px;
    }

    .info-category.info-branding {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .info-text-container {
        margin-bottom: 20px;
    }

    .info-text-container h2 {
        font-size: 30px;
    }

    .info-text-container p {
        font-size: 18px;
        margin-bottom: 100px;
    }

    .info-number {
        font-size: 36px;
        top: -20px;
        left: 30px;
    }

    .prostor-divider {
        display: none; 
    }

    .sub-title-animation-title {
        width: 80%; 
        display: flex;
        justify-content: center;
        align-items:  left;
    }
}




.hidden-before-animation {
    opacity: 0;
    transform: translateX(0); 
}


@keyframes aggressiveSlideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.aggressive-slide-in-left {
    animation: aggressiveSlideInLeft 0.9s ease-out forwards;
}

/* Aggressive slide-in-from-right animation */
@keyframes aggressiveSlideInRight {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.aggressive-slide-in-right {
    animation: aggressiveSlideInRight 0.9s ease-out forwards;
}





@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');



.about-us-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    margin-bottom: 100px;
  }
  

  .about-us-title {
    font-size: 14px;
    font-weight: 600;
    color: #30D5C8;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  .about-us-main-title {
    font-size: 36px;
    font-weight: 700;
    margin-top: 10px;
    color: white;
  }
  
  .about-us-main-title span {
    color: #e02bd4;
  }
  
  .about-us-description {
    font-size: 16px;
    font-weight: 300;
    max-width: 700px;
    margin: 10px auto 40px;
    line-height: 1.6;
    color: #a4b0be;
  }
  
  
  .about-us-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
  }
  
 
  .feature {
    border: 2px solid #30D5C8;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: 0.3s ease-in-out;
    background: linear-gradient(135deg, #30D5C8, #e02bd4);
    
  position: relative;
  display: flex;
  flex-direction: column;
  place-content: center;
  place-items: center;
  overflow: hidden;
  border-radius: 25px;
  color: #f1f1f1;

    
  }

  .feature::before {
    content: '';
    position: absolute;
    width: 100px;
    background-image: linear-gradient(180deg, rgb(0, 183, 255), rgb(255, 48, 255));
    height: 150%;
    animation: rotBGimg 3s linear infinite;
    transition: all 0.2s linear;
  }
  
  @keyframes rotBGimg {
    from {
      transform: rotate(0deg);
    }
  
    to {
      transform: rotate(360deg);
    }
  }
  
  .feature::after {
    content: '';
    position: absolute;
    background: #07182e;
    ;
    inset: 5px;
    border-radius: 25px;
  }  
  
  .feature:hover {
    background: linear-gradient(135deg, #30D5C8, #e02bd4);
  }
  
  .feature i {
    font-size: 40px;
    color: #12d5c9;
    margin-bottom: 15px;
    z-index: 2;
  }
  
  .feature h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    z-index: 2;
    color: #f1f1f1;
  }
  
  .feature p {
    font-size: 14px;
    font-weight: 300;
    z-index: 2;
    color: #a4b0be;
    
  }

  .feature-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px; 
  }
  
  .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #888; 
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .dot.active {
    background-color: #30D5C8; 
  }

  .mobile-pagination {
    display: none;
  }
  .tablet-pagination {
    display: none;
  }
  
  
  
  
  @media (max-width: 1024px) {
    .about-us-features {
      grid-template-columns: repeat(4, 1fr);
      gap: 15px;
    }
    .feature {
        background: linear-gradient(135deg, #30D5C8, #e02bd4);
    }
  }
  

@media (max-width: 874px) {
    .about-us-features {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 20px;
      -webkit-overflow-scrolling: touch; 
    }

    .tablet-pagination {
        display: flex;
      }
  
    .about-us-features::-webkit-scrollbar {
      display: none; 
    }
  
    .about-us-features {
      -ms-overflow-style: none;   
      scrollbar-width: none;  
    }
  
    .feature {
      flex: 0 0 250px;
      scroll-snap-align: center;
    }
  }

  @media (max-width: 520px) {
    .mobile-pagination {
        display: flex;
      }

      .tablet-pagination {
        display: none;
      }
  }

.faq-main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}



.faq-container {
    width: 100%;
    max-width: 1000px;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.021);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    position: relative;
}

@media (min-width: 561px) {
    .faq-container {
        background-image: radial-gradient(circle at 20% 50%, rgba(0, 200, 255, 0.1) 5%, transparent 30%),
                          radial-gradient(circle at 50% 50%, rgba(255, 0, 150, 0.2) 5%, transparent 30%),
                          radial-gradient(circle at 80% 50%, rgba(255, 0, 150, 0.2) 1%, transparent 40%);
    }
}

@media (max-width: 561px) {
    .faq-left {
        background: rgba(0, 255, 242, 0.05); 
    border: 1px solid rgba(255, 255, 255, 0.2); 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
    }
    .faq-container {
        border: none;
        background-color: #0b0116;
    }
}

/* Left Section */
.faq-left {
    flex: 1;
    min-width: 250px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 40px;
}

.faq-left h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
}

.faq-left p {
    font-size: 16px;
    color: #a4b0be;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Right Section - FAQ */
.faq-right {
    flex: 2;
    min-width: 300px;
}

.faq-item {
    background: #f1f1f1;
    margin-bottom: 10px;
    border-radius: 5px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.faq-question:hover {
    background: #e0e0e0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(-10px);
    padding: 0 15px;
    color: #7f8c8d;
    will-change: opacity, transform;
}

.faq-answer.open {
    opacity: 1;
    transform: translateY(0);
    max-height: none;
    padding: 15px;
}

.faq-icon {
    transition: transform 0.3s ease;
    will-change: transform;
}

.active .faq-answer {
    max-height: 100px;
    padding: 10px 15px;
}

.active .faq-icon {
    transform: rotate(180deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-container {
        flex-direction: column;
        
    }

    .faq-left button {
        width: 100%;
    }
}



.container-animation-main {
    display:flex;
    flex-direction: row;
    justify-content: center;   
    align-items: center;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    height: 50vh;
    margin-top: 100px;
    padding-left: 30px;
    padding-right: 30px;
}

.cta-title {
    font-size: 3rem;
}

.container-animation-right {
    display:flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    color: white;
    width: 100%;
    margin: 0px auto;
    z-index: 1;
}

.cta-description {
    font-size: 1.2rem;
    color: #a4b0be;
    margin: 20px 0;
}
.cta-description z{
    margin-right: 20px;
}

.cta-description a{
    text-decoration: none;
}

.cta-description span{
    font-size: 1.5rem;
    color: #12d5c9;
    margin: 20px 0;
}


.container-animation {
    position: relative;
    display: flex;
    flex-direction:column;
    justify-content: center;
    text-align: center;
    align-items: center;
    background: rgba(11, 1, 22, 0);
    color: white;
    width: 100% !important;
    margin: 50px auto;
    z-index: 1;
    padding-right: 30px;
  }


  
  

  @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }


  .circle {
    position: absolute;
    border-radius: 50%;
    animation: rotate 20s linear infinite;
    transition: opacity 0.5s ease-in-out;
  }


  .circle.large {
    width: 350px !important;
    height: 350px !important;
    animation-duration: 25s;
  }

  .circle.medium {
    width: 250px !important;
    height: 250px !important;
    animation-duration: 20s;
    animation-direction: reverse;
  }

  .circle.small {
    width: 150px !important;
    height: 150px !important;
    animation-duration: 15s;
  }


  .circle-border {
    position: absolute;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease-in-out;
  }


  .icon {
    position: absolute;
    width: 24px; 
    height: 24px;
    background-color: white; 
    border-radius: 50%; 
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); 
    transition: opacity 0.5s ease-in-out;
  }


  .icon svg {
    width: 16px;
    height: 16px;
    fill: #e02bd4 !important; 
  }

  
  .icon1 { top: 0%; left: 50%; transform: translate(-50%, -50%); }
  .icon2 { top: 50%; left: 100%; transform: translate(-50%, -50%); }
  .icon3 { top: 100%; left: 50%; transform: translate(-50%, -50%); }
  .icon4 { top: 50%; left: 0%; transform: translate(-50%, -50%); }
  .icon5 { top: 25%; left: 95%; transform: translate(-50%, -50%); }
  .icon6 { top: 75%; left: 95%; transform: translate(-50%, -50%); }
  .icon7 { top: 75%; left: 5%; transform: translate(-50%, -50%); }
  .icon8 { top: 25%; left: 5%; transform: translate(-50%, -50%); }
  .icon9 { top: 0%; left: 35%; transform: translate(-50%, -50%); }
  .icon10 { top: 95%; left: 65%; transform: translate(-50%, -50%); }


  



.mask-animation-please {
position: absolute; 
top: 45%; 
left: 0%;
width: 100%; 
height: 250px;
background-color: #7b16e700 !important;
background: linear-gradient(
                    to bottom,
                    rgba(11, 1, 22, 0) 35%,
                    rgba(11, 1, 22, 0.7) 50%,
                    rgba(11, 1, 22, 1) 60%,
                    rgba(11, 1, 22, 1) 100%
                  );
z-index: 0;
pointer-events: none; 
}

@media (max-width: 1174px) {
    .cta-title {
        font-size: 2.7rem; 
    }
    .cta-description {
        font-size: 1.3rem; 
    }
    .cta-description span {
        font-size: 1.5rem; 
        margin-left: 0; 
    }
    .mask-animation-please {
        height: 190px;
        margin-bottom: 10px;
    }
}


@media only screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: portrait),
       only screen and (min-width: 1366px) and (max-width: 1024px) and (orientation: landscape) {
        .container-animation-main {
            margin-top: 0px;
          }
        .main-footer {
            margin-top: 0px !important;
        }
        
}

@media (max-width: 1059px) {
    .cta-title {
        font-size: 2.5rem; 
    }
    .cta-description {
        font-size: 1.rem; 
    }
    .cta-description span {
        font-size: 1.4rem; 
        margin-left: 0; 
    } 
    
}

@media (max-width: 984px) {
    .cta-title {
        font-size: 2.3rem; 
    }
    .cta-description {
        font-size: 1rem; 
    }
    .cta-description span {
        font-size: 1.2rem; 
        margin-left: 0; 
    }
    .mask-animation-please {
        height: 190px;
        margin-bottom: 10px;
    }
    .container-animation-main {
        margin-top: 0px;
      }
    .main-footer {
        margin-top: 0px !important;
    }
}


@media (max-width: 907px) {

    .cta-title {
        font-size: 2.1rem; 
    }

    .cta-description {
        font-size: 1rem; 
    }

    .cta-description span {
        font-size: 1.2rem; 
        margin-left: 0; 
    }
    .circle.large {
        width: 310px !important;
        height: 310px !important;
        animation-duration: 25s;
      }
    
      .circle.medium {
        width: 230px !important;
        height: 230px !important;
        animation-duration: 20s;
        animation-direction: reverse;
      }
    
      .circle.small {
        width: 150px !important;
        height: 150px !important;
        animation-duration: 15s;
      }
      .prostor-divider2 {
        margin-top: 30px;
        margin-bottom: 60px;
      }
      .mask-animation-please {
        height: 170px;
        margin-bottom: 10px;
    }
    .icon {
        width: 20px; 
    height: 20px;
    }
    
}

     @media (max-width: 830px) {
        .cta-title {
            font-size: 2rem; 
        }
    
        .cta-description {
            font-size: 1rem; 
        }
    
        .cta-description span {
            font-size: 1.1rem; 
            margin-left: 0; 
        }
        .circle.large {
            width: 280px !important;
            height: 280px !important;
            animation-duration: 25s;
          }
        
          .circle.medium {
            width: 200px !important;
            height: 200px !important;
            animation-duration: 20s;
            animation-direction: reverse;
          }
        
          .circle.small {
            width: 120px !important;
            height: 120px !important;
            animation-duration: 15s;
          }
          .mask-animation-please {
            height: 160px;
            margin-bottom: 10px;
        }
        .container-animation-main {
            margin-top: 0px;
          }
        .main-footer {
            margin-top: 0px !important;
        }
        
    
}

@media (max-width: 793px) {
    .cta-title {
        font-size: 1.8rem; 
    }

    .cta-description {
        font-size: 0.9rem; 
    }

    .cta-description span {
        font-size: 1rem; 
        margin-left: 0; 
    }
    .circle.large {
        width: 280px !important;
        height: 280px !important;
        animation-duration: 25s;
      }
    
      .circle.medium {
        width: 200px !important;
        height: 200px !important;
        animation-duration: 20s;
        animation-direction: reverse;
      }
    
      .circle.small {
        width: 120px !important;
        height: 120px !important;
        animation-duration: 15s;
      }
      .container-animation-main {
        margin-top: 0px;
      }
}

@media (max-width: 716px) {
    .cta-title {
        font-size: 1.6rem; 
    }

    .cta-description {
        font-size: 0.9rem; 
    }

    .cta-description span {
        font-size: 0.9rem; 
        margin-left: 0; 
    }
    .circle.large {
        width: 250px !important;
        height: 250px !important;
        animation-duration: 25s;
      }
    
      .circle.medium {
        width: 170px !important;
        height: 170px !important;
        animation-duration: 20s;
        animation-direction: reverse;
      }
    
      .circle.small {
        width: 90px !important;
        height: 90px !important;
        animation-duration: 15s;
      }
}

@media (max-width: 640px) {
    .cta-title {
        font-size: 1.4rem; 
    }

    .cta-description {
        font-size: 0.8rem; 
    }

    .cta-description span {
        font-size: 0.9rem; 
        margin-left: 0; 
    }
}

@media (max-width: 600px) {
    .container-animation-main {
        flex-direction: column-reverse; 
        height: 75vh;
        margin-top: 0px;
        width: 80%;
        
    }

    .container-animation-right {
        margin-bottom: 0px;
        z-index: 2;
    }
    .container-animation {
        margin-top: 10px;
    }
    .cta-title {
        font-size: 1.5rem; 
    }

    .cta-description {
        font-size: 0.9rem; 
    }

    .cta-description span {
        font-size: 1rem; 
        margin-left: 0; 
    }
    .mask-animation-please {
        height: 160px;
        margin-bottom: 30px;
    }
    .circle.large {
        width: 310px !important;
        height: 310px !important;
        animation-duration: 25s;
      }
    
      .circle.medium {
        width: 230px !important;
        height: 230px !important;
        animation-duration: 20s;
        animation-direction: reverse;
      }
    
      .circle.small {
        width: 150px !important;
        height: 150px !important;
        animation-duration: 15s;
      }
      .prostor-divider2 {
        margin-top: 30px;
        margin-bottom: 60px;
      }
      .mask-animation-please {
        height: 170px;
        margin-bottom: 10px;
    }
}

@media (max-width: 430px) {
    .container-animation-main {
        flex-direction: column-reverse; 
        height: 70vh;
        margin-top: 0px;
        width: 80%;
        
    }

    .container-animation-right {
        margin-bottom: 0px !important;
    }
    .container-animation {
        margin-top: 10px;
    }
    .cta-title {
        font-size: 1.5rem; 
    }

    .cta-description {
        font-size: 0.9rem; 
    }

    .cta-description span {
        font-size: 1rem; 
        margin-left: 0; 
    }
    .mask-animation-please {
        height: 160px;
        margin-bottom: 30px;
    }
    .circle.large {
        width: 280px !important;
        height: 280px !important;
        animation-duration: 25s;
      }
    
      .circle.medium {
        width: 200px !important;
        height: 200px !important;
        animation-duration: 20s;
        animation-direction: reverse;
      }
    
      .circle.small {
        width: 120px !important;
        height: 120px !important;
        animation-duration: 15s;
      }
      .prostor-divider2 {
        margin-top: 30px;
        margin-bottom: 60px;
      }
}

@media (max-width: 375px) {
    .container-animation-main {
        flex-direction: column-reverse; 
        height: 75vh;
        margin-top: 0px;
        
    }

    
    .cta-title {
        font-size: 1.5rem; 
    }

    .cta-description {
        font-size: 0.9rem; 
    }

    .cta-description span {
        font-size: 1rem; 
        margin-left: 0; 
    }
    .mask-animation-please {
        height: 150px;
        margin-bottom: 50px;
    }
    .circle.large {
        width: 260px !important;
        height: 260px !important;
        animation-duration: 25s;
      }
    
      .circle.medium {
        width: 180px !important;
        height: 180px !important;
        animation-duration: 20s;
        animation-direction: reverse;
      }
    
      .circle.small {
        width: 100px !important;
        height: 100px !important;
        animation-duration: 15s;
      }
      .prostor-divider2 {
        margin-top: 30px;
        margin-bottom: 30px;
      }
}

@media (max-width: 361px) {
    .container-animation-main {
        height: 75vh;
    }
    .cta-title {
        font-size: 1.4rem; 
    }

    .cta-description {
        font-size: 0.9rem; 
    }

    .cta-description span {
        font-size: 1.2rem; 
        margin-left: 0; 
    }

    
}




.main-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    border-top: 1px solid #e02bd4;
    max-width: 1300px;
    padding: 20px;
    margin-top: 100px;
    background: #11111100; 
  }
  
  .footer-container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    color: rgb(233, 227, 227);
    padding: 20px;
    font-family: Arial, sans-serif;
    margin: 0;
    max-width: 1140px;
    width: 100%;
  }
  
  .footer-left {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-right: 20px;
    max-width: 100%;
    height: auto;
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-center {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-right: 20px;
    max-width: 100%;
  }
  
  .footer-right {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 100%;
  }
  
  .footer-logo {
    width: 120px;
    height: auto;
  }
  
  .footer-title {
    font-size: 1rem;
    margin-bottom: 0px;
  }
  
  .footer-link {
    margin: 10px 0;
    color: #a4b0be;
    font-size: 0.8rem;
  }
  
  .footer-center ul,
  .footer-right ul {
    list-style-type: none;
    padding: 0;
  }
  
  .hover-underline-animation {
    position: relative;
    display: inline-block;
    cursor: pointer;
  }
  
  .hover-underline-animation::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 0px;
    left: 0;
    background: #e02bd4;
    transition: width 0.3s ease, left 0.3s ease;
  }
  
  .hover-underline-animation:hover::after {
    width: 100%;
    left: 0;
  }
  
  .hover-underline-animation:not(:hover)::after {
    width: 0;
    left: auto;
    right: 0;
  }
  
  .icon-text-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 5px 0;
  }
  
  .icon-text-container i {
    margin-right: 10px;
  }
  
  .footer-right img {
    width: 30px;
    height: 30px;
    background-color: transparent;
  }
  
  .no-underline {
    text-decoration: none;
    color: inherit;
  }
  
  .no-underline:hover {
    text-decoration: none;
  }

  @media (max-width: 768px) {
    .main-footer {
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 90%;
      margin: 0 auto;
      margin-top: 50px;
      padding: 20px;
    }
    
    .footer-container {
      flex-direction: column;
      justify-content: center;
      align-items: center;
      margin: 0;
    }
    
    .footer-left,
    .footer-center,
    .footer-right {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      margin: 0 auto 20px;
      width: 100%;
      text-align: center;
    }
    
    .footer-logo {
      margin: 0 auto 20px;
    }
    
    .icon-text-container {
      justify-content: center;
    }
    
    .footer-right p {
      margin-left: 0;
    }
  }
  
  @media (max-width: 480px) {
    .main-footer {
      margin-top: 20px;
      max-width: 300px;
      padding: 15px;
    }
    
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
    
    .footer-left,
    .footer-center,
    .footer-right {
      flex-direction: column;
      justify-content: center;
      margin: 0 auto 20px;
      width: 80%;
      text-align: center;
    }
    
    .footer-logo {
      margin: 0 auto 15px;
      width: 100px;
    }
    
    .footer-title {
      font-size: 0.9rem;
    }
    
    .footer-link {
      font-size: 0.75rem;
    }
    
    .icon-text-container p {
      margin-left: 10px;
    }
  }