@import url("https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Orbitron:wght@400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Space+Grotesk:wght@300..700&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a {
    text-decoration: none;
}
ul {
    list-style-type: none;
}
body {
    font-family: "Roboto", serif;
}
input,
label {
    font-family: "Roboto", serif;
    border: none;
    outline: none;
    background-color: transparent;
}
button{
    border: none;
    outline: none;
    background-color: transparent;
}
:root {
    --primary: #0088c7;
    --secondary: #404040;
    --light-background: #f3f8fc;
    --outline: #d0d9e0;
    --border-radius: 50px;
    --white: #ffffff;
    --border: #cacaca;
}
html {
    scroll-behavior: smooth;
}
.container {
    padding: 0 5%;
    margin: 0 auto;
    width: 100%;
}
.header-container {
    padding: 0 3%;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
}
.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-main .logo {
    width: 130px;
}
.header-main .logo img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.header-main form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: var(--light-background);
    height: 50px;
    width: 25%;
    border-radius: 25px;
    border: 1px solid var(--outline);
    padding: 4px 4px 4px 10px;
}
.header-main .search-icon {
    height: 100%;
    background: var(--primary);
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    cursor: pointer;
    padding: 12px;
    transition: 0.5s ease;
}
.header-main .search-icon i {
    font-size: 16px;
    color: var(--white);
}
.header-main form input {
    width: 78%;
    font-size: 14px;
    font-weight: 400;
}
.header-main .user-icon {
    font-size: 16px;
    color: #757575;
}
.top-models {
    text-align: center;
}
.inside-step{
    background-color: var(--white);
    padding: 1rem;
    width: 50%;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.inside-step form div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: var(--light-background);
    height: 50px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--outline);
    padding: 4px 4px 4px 10px;
}
.inside-step form{
    height: 100%;
}
.inside-step form div img{
    width: 5%;
}
.submit-btn{
    width: 50%;
    margin: 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 4px;
    background-color: #008CCF;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.5s;
    color: var(--white);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
.submit-btn:hover{
    background-color: #00AEEF;
}
.inside-step form div input{
    width: 93%;
    font-size: 14px;
    font-weight: 600;
}
.inside-step form label{
    font-size: 14px;
    display: block;
    padding: 5px 0 0 10px; 
    color: #717171;
}

.steps-main{
    display: flex;
    gap: 10px;
    margin: 0 0 30px 0;
}
.main-heading{
    text-align: center;
    margin: 30px 0;
}
.inside-step h1{
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: #2b2b2b;
}
.inside-step ul{
    padding: 20px 15px;
}
.inside-step ul li{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    display: flex;
    gap: 15px;
    align-items: center;
    color: #2b2b2b;
}
.inside-step ul li span {
   height: 5px;
   width: 5px;
   border-radius: 50%;
   background-color: #2b2b2b;
}
.inside-step p{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #2b2b2b;
    margin-top: 35px;
}
.how-to-use-main{
    padding: 20px 0 0 0;
    margin: 0 0 30px 0;
    border-top: 0.5px solid var(--outline);
}
.use-main{
    width: 100%;
    padding: 1rem;
    background-color: var(--white);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
.use-card img {
    width: 160px;
}
.use-heading{
    text-align: center;
    padding: 0 0 15px 0;
    border-bottom: 0.5px solid #F5F5F5;
}
.use-cards-main{
    display: flex;
    align-items: center;
    padding: 30px 0 12px 0;
    justify-content: center;
}
.use-card{
    width: 32%;
    text-align: center;
    height: 100%;
}
.use-card h2{
    padding: 20px 0;
}
.use-card h2,
.use-heading h1{
    font-size: 28px;
    font-weight: 600;
    line-height: 36px;
    color: #000000;
}
.use-card p{
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #000000;
}
.main-heading h1 {
    font-size: 42px;
    line-height: 25px;
    font-weight: 700;
    color: var(--text);
}
.main-heading h1 span {
    color: var(--primary);
    font-weight: 700;
}
.main-heading h1 strong {
    color: #00ADEF;
    padding: 0 5px;
}
.main-heading p{
    font-size: 18px;
    padding: 30px 0 0 0;
    color: var(--secondary);
}
.models-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px 20px;
    margin: 10px 0 100px 0;
}
.model-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    position: relative;
    cursor: pointer;
    text-decoration: none;
}
.model-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: filter 0.3s ease;
}

.model-card .unlock-button {
    position: absolute;
    bottom: -17px;
    left: 5%;
    font-weight: 600;
    color: var(--secondary);
    background-color: var(--white);
    font-size: 16px;
    padding: 10px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    right: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}
.model-card .unlock-button i {
    color: var(--primary);
}
.model-card .unlock-button:hover i {
    color: var(--white);
}
.model-card .unlock-button:hover {
    background-color: var(--primary);
    color: var(--white);
}
.model-card .center-heading {
    position: absolute;
    top: 40%;
    left: 5%;
    right: 5%;
    font-size: 24px;
    font-weight: 600;
    text-shadow: 2px 2px #2b2b2b;
    color: var(--white);
    border-radius: 5px;
    display: block;
    z-index: 1;
}
.image-container {
    height: 100%;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}
.blurred img {
    filter: blur(8px);
    pointer-events: none;
    overflow: hidden;
    height: 100%;
    width: 100%;
}
footer{
    background-color: #E5E5E5;
}
.footer-main{
    display: flex;
    padding: 50px 0;
    align-items: center;
}
.footer-main div{
    width: 50%;
    display: flex;
    height: 100%;
    align-items: center;
}
.footer-main div:last-child{
    justify-content: space-around;
    
}
.footer-main div ul li{
    line-height: 37px;
    display: flex;
    gap: 15px;
    align-items: center;
}
.footer-main div ul li a i{
    font-size: 26px;
    line-height: 50px;
}
.footer-main div ul li a{
    font-size: 16px;
    font-weight: 400;
    color: #404040;
}


#loading-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    justify-content: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 2px 4px 20px rgba(78, 80, 80, 0.3);
    background-color: var(--white);
    z-index: 9999;
    text-align: center;
}
.dots-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 90px; 
    height: 90px; 
    margin-bottom: 20px;
}
.dot {
    position: absolute;
    width: 16px;  /* Increased dot size */
    height: 16px; /* Increased dot size */
    border-radius: 50%;
    background-color: var(--primary);
    animation: dotAnimation 1.5s infinite ease-in-out;
}
.dot:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    animation-delay: 0s;
}
.dot:nth-child(2) {
    top: 14%;
    left: 86%;
    transform: translateX(-50%) rotate(36deg);
    animation-delay: 0.2s;
}
.dot:nth-child(3) {
    top: 50%;
    left: 100%;
    transform: translateY(-50%) translateX(-50%) rotate(72deg);
    animation-delay: 0.4s;
}
.dot:nth-child(4) {
    top: 86%;
    left: 86%;
    transform: translateX(-50%) rotate(108deg);
    animation-delay: 0.6s;
}
.dot:nth-child(5) {
    top: 100%;
    left: 50%;
    transform: translateY(-100%) translateX(-50%) rotate(144deg);
    animation-delay: 0.8s;
}
.dot:nth-child(6) {
    top: 86%;
    left: 14%;
    transform: translateX(-50%) rotate(180deg);
    animation-delay: 1s;
}
.dot:nth-child(7) {
    top: 50%;
    left: 0;
    transform: translateY(-50%) translateX(-50%) rotate(216deg);
    animation-delay: 1.2s;
}
.dot:nth-child(8) {
    top: 14%;
    left: 14%;
    transform: translateX(-50%) rotate(252deg);
    animation-delay: 1.4s;
}

@keyframes dotAnimation {
    0% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
}

.range-slider-container {
    width: 80%;
    max-width: 350px;
    margin-top: 20px;
}

.range-slider {
    width: 100%;
    height: 30px;
    background: linear-gradient(to right, #0088C7 0%, #0088C7 0%, #0088C7 0%, #0088C7 100%);
    border-radius: 30px;
    outline: none;
    transition: width 2s ease-in-out;
    appearance: none;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.range-slider::-webkit-slider-thumb {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    padding: 2px;
    background-color: var(--white);
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.vibrating-text {
    font-size: 24px;
    font-weight: bold;
    color: #2b2b2b;
    animation: vibrateText 1s infinite alternate;
    margin-top: 20px;
}

@keyframes vibrateText {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1);
    }
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 0;
    height: 0;
    background: transparent;
    border: none;
}

input[type="range"]::-moz-range-thumb {
    width: 0;
    height: 0;
    background: transparent;
    border: none;
}

input[type="range"]::-ms-thumb {
    width: 0;
    height: 0;
    background: transparent;
    border: none;
}


@media screen and (max-width: 1050px) {
    .header-main form {
        width: 40%;
    }
    .inside-step p{
        margin-top: 12px;
    }
    .models-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .model-card .unlock-button {
        font-size: 12px;
    }
    .footer-main div:last-child {
        justify-content: space-between;
    }
}
@media screen and (max-width: 800px){
    .steps-main{
        flex-direction: column;
    }
    .inside-step{
        width: 100%;
    }
    #loading-animation{
        width: 70%;
    }
}
@media screen and (max-width: 600px) {
    .header-main {
        flex-direction: column;
    }
    .header-main form {
        width: 100%;
        margin: 0 0 10px 0;
    }
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .model-card .unlock-button {
        font-size: 10px;
    }
    .top-models h2 {
        font-size: 20px;
    }
    .use-cards-main {
        gap: 20px;
        flex-direction: column;
    }
    .use-card {
        width: 100%;
    }
    .footer-main div:first-child{
        width: 30%;
    }
    .footer-main div:last-child {
        width: 70%;
    }
    .footer-main div ul li a {
        font-size: 12px;
    }
    .footer-main div ul li a i {
        font-size: 18px;
        line-height: 0px;
    }
    .main-heading h1 {
        font-size: 34px;
    }
    .main-heading p {
        font-size: 14px;
        padding: 20px 0 0 0;
    }
    #loading-animation{
        width: 80%;
    }
    .inside-step p{
        margin: 0;
    }
    .inside-step p,
    .inside-step ul li {
        font-size: 12px;
    }
    .inside-step h1 {
        font-size: 14px;
    }
}
@media screen and (max-width: 400px) {
    .models-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .model-card .unlock-button {
        font-size: 16px;
    }
    .inside-step p, .inside-step ul li {
        font-size: 10px;
    }
    .use-card h2, .use-heading h1 {
        font-size: 22px;
    }
    .use-card p {
        font-size: 16px;
    }
}
@media screen and (max-width: 390px){
    .main-heading h1 {
        font-size: 25px;
    }
    #loading-animation {
        width: 90%;
    }
    .footer-main {
        flex-direction: column;
    }
    .footer-main div{
        width: 100% !important;
    }
    .footer-main div:first-child ul {
        display: flex
;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }
}