/* poppings */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');


/* Default CSS */
:root {
    --primary-color: #e67732ee;
    --primary-color-low: rgba(230, 109, 36, 0.5);
    --primary-color-dark:  #D45A1D;


    /* Duplicate declarations removed */

    --secondary-color:  #343a40;
    --secondary-color-low:  #575e65;
    --secondary-color-dark: #343a40;

    --tertiary-color: #6c757d;
    --tertiary-color-low: rgba(108, 117, 125, 0.5);
    --tertiary-color-dark: #545b62;

    --bg-color: #E8E8E8;
    --bg-color-low: rgba(232, 232, 232, 0.5);
    --bg-color-dark: #D8D8D8;

    --text-dark: #343a40;
    --text-dark-low: #575e65;
    --text-dark-dark: #343a40;

    --text-light-low: #e1e4e6;
    --text-light: #f8f9fa;
    --text-light-dark: #9ea1a4;

    --button-color: #007bff;
    --button-color-low: rgba(0, 123, 255, 0.5);
    --button-color-dark: #0056b3;

    --gradient-rtl-to-transparent: linear-gradient(to right, var(--primary-color), transparent);
    --gradient-rtl: linear-gradient(to right, var(--primary-color-dark), var(--secondary-color-dark));
    --gradient-ltr: linear-gradient(to left, var(--primary-color-dark), var(--secondary-color-dark));
}

html.lenis, html.lenis body {
    height: auto;
  }
  
  .lenis.lenis-smooth {
    scroll-behavior: auto !important;
  }
  
  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }
  
  .lenis.lenis-stopped {
    overflow: hidden;
  }
  
  .lenis.lenis-smooth iframe {
    pointer-events: none;
  }



*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
}

/* reset all the default styles */
body {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    background-color: var(--bg-color);
    color: var(--text-dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--text-dark);
}

i {
    font-style: normal;
    font-weight: 600;
    font-size: 25px;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background-color: transparent;
}

button:focus {
    outline: none;
}

button:active {
    outline: none;
}

button:hover {
    outline: none;
}

ul,
li {
    list-style: none;
    padding: 0;
}

img {
    width: 100%;
    height: auto;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
}
h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
}
h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}
h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}
h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}
h6 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}


::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

::-webkit-scrollbar-track {
    background-color: var(--bg-color);
}



body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
    z-index: 100;
}


section {
    min-height: 100vh;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 100;
}




header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.5s ease;
}

header .navbar {
    display: flex;
    width: 80%;
    margin: 0 auto;
}

[data-is-scrolled = "true"] header {
    background: var(--bg-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

[data-is-scrolled = "true"] header .navbar .logo svg .cls-3 {
    fill: #262261;
}

header.active {
    background: var(--bg-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


.navbar .logo {
    width: 18%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    top: 3px;
}

.navbar .logo svg {
    width: 100%;
    height: auto;
    
}

.navbar .menu {
    width: 82%;
    display: flex;
    justify-content: flex-end;
    align-items: center;

}

.navbar .menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.navbar .menu ul li {
    margin: 0 20px;
    
}

.navbar .menu ul li a {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.5s ease;
    mix-blend-mode: darken;
    
}

[data-is-scrolled = "true"] .navbar .menu ul li a {
    color: var(--text-dark);
}



.navbar .menu ul li a.active {
    color: var(--primary-color);
    mix-blend-mode: lighten;
}

[data-is-scrolled = "true"] .navbar .menu ul li a.active {
    color: var(--primary-color);
}

.navbar .menu ul li a:hover {
    color: var(--primary-color);
}


/* Header Responsive */
@media screen and (max-width: 1024px) {
    .navbar .menu {
        position: absolute;
        top: 100%;
        left: 100%;
        width: 100%;
        background: var(--bg-color);
        
        opacity: 0;
        transition: all 0.5s ease;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        z-index: -1;
        user-select: none;
    }

    .navbar .menu.active {
        opacity: 1;
        z-index: 1000;
        user-select: auto;
        left: 0;
    }

    header .menu.active ~ header .logo svg .cls-3 {
        fill: #262261!important;
    }
    

    .navbar .menu ul {
        flex-direction: column;
        justify-content: center;
        align-items: start;
        width: 100%;
        padding-left: 10%;
    }

    .navbar .menu ul li {
        margin: 10px 0;
    }

    .navbar .menu ul li a {
        color: var(--text-dark);
    }


    .navbar {
        justify-content: space-between;
    }

    header .navbar {
        width: 98%;
        align-items: center;
    }

    .burger-menu {
        display: inline-block;
        width: 40px;
        height: 30px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;

        position: relative;
        top: -5px;
        padding-right: 10px;
    }

    .burger-menu .line {
        width: 30px;
        height: 3px;
        background: var(--primary-color);
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .navbar .logo {
        width: 50%;
    }

    .burger-menu.active .line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    

    .burger-menu.active .line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active .line:nth-child(3) {
        transform: translateY(-12px) rotate(-45deg);
    }
}



.webgl {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

@media screen and (max-width: 1024px) {
    .webgl {
        position: absolute;
    }
    
}

.iphone-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    opacity: 0;
    z-index: 1;
}

.landing {
    justify-content: start;
}

.landing .body {
    width: 65%;
    padding-left: 20%;
    padding-top: 10%;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;

}

.landing .body h1 {
    font-size: 7rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 3px;
}

.landing .body p {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    top: -20px;
}



.landing .body .download {
    display: flex;
    justify-content: start ;
    align-items: center;
    width: 35%;
}

.landing .body .download a {
    width: 100%;
    margin-right: 15px;
}

.landing .body .download a img {
    width: 100%;
    height: auto;
}


/* landing responsive */

@media screen and (max-width: 1190px) {
    .landing .body {
        width: 80%;
        padding-left: 10%;
    }

    .landing .body h1 {
        font-size: 5rem;
        margin-bottom: 10px;
    }

    .landing .body p {
        font-size: 1.2rem;
    }

    .landing .body .download {
        width: 40%;
    }
}

@media screen and (max-width: 550px) {

    .landing {
        align-items: flex-end;
    }

    .landing .body {
        padding-bottom: 25%;
    }

    .landing .body h1 {
        font-size: 4rem;
    }

    .landing .body p {
        font-size: 1rem;
    }

    .landing .body .download {
        width: 80%;
        position: relative;
        margin-top: -50px;
    }
}









.about {
    justify-content: flex-end;
}

.about .body {
    width: 50%;
    padding-right: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about .body p {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    width: 80%;
    text-align: center;
}

/* about responsive */

@media screen and (max-width: 1024px) {

    .about {
        justify-content: center;
        align-items: start;
        min-height: auto;
        padding-top: 10%;
        margin-bottom: 20%;
    }

    .about .body {
        width: 82%;
        padding-right: 0;
    }

    .about .body p {
        font-size: 1.2rem;
        text-align: center;
        width: 98%;
    }

}


@media screen and (max-width: 992px) {

    .about {
        justify-content: center;
        align-items: start;
        min-height: auto;
        padding-top: 10%;
        margin-top: -20%;
    }

    .about .body {
        width: 82%;
        padding-right: 0;
    }

    .about .body p {
        font-size: 1.2rem;
        text-align: center;
        width: 98%;
    }

}


.features {
    flex-direction: column;
    justify-content: start;
}

.features .head {
    padding-top: 6%;
}

.features .body {
    width: 70%;
    height: 68%;
    bottom: 6%;
    position: absolute;
    display: flex;
    justify-content: space-between;
}


.features .body .left,
.features .body .right {
    width: 35%;
    height: 100%;
}

.features .body .features-cont {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}


.features .body .left .features-cont .feature .content {
    flex-direction: row-reverse;
}

.features .body .features-cont .feature {
    width: 100%;
    height: 25%;
    display: flex;
    justify-content: start;
    align-items: center;
    background: linear-gradient(to right, var(--primary-color), transparent);
    border-radius: 30px;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    position: relative;

    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
}

.features .body .right .features-cont .feature {
    background: linear-gradient(to left, var(--primary-color), transparent);
    box-shadow: 10px 0 10px rgba(0, 0, 0, 0.1);
}

.features .body .features-cont .feature .icon {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.features .body .features-cont .feature .icon i {
    font-size: 40px;
    color: var(--secondary-color);
    text-align: center;
}

.features .body .features-cont .feature .content {
    width: 80%;
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 10px;
}

.features .body .features-cont .feature .content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    background: var(--gradient-rtl);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-align: center;
    width:50%;
}

.features .body .right .features-cont .feature .content h3 {
    background: var(--gradient-ltr);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.features .body .features-cont .feature .content p {
    font-size: 1rem;
    font-weight: 600;
    text-align: right;
    padding: 0 20px;
    color: var(--text-dark);
    width: 65%;
}

.features .body .right .features-cont .feature .content p {
    text-align: left;
}

/* Features Responsive */
@media screen and (max-width: 1600px) {
    .features .body {
        width: 80%;
    }

    
    .features .body .left,
    .features .body .right {
        width: 30%;
    }

    .features .feature p {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 1440px) {
    .features .body {
        width: 85%;
    }

    .features .body .left,
    .features .body .right {
        width: 35%;
    }
}

@media screen and (max-width: 1440px) {
    .features .body {
        width: 90%;
        flex-direction: row;
    }

    .features .body .left,
    .features .body .right {
        width: 33%;
    }
}

@media screen and (max-width: 1024px) {
    .features .body .left,
    .features .body .right {
        width: 48%;
    }

    .features .body .features-cont .feature .content h3 {
        font-size: 1.2rem;
    }

    .features .body .features-cont .feature .content p {
        font-size: 1rem;
    }

    .features .body .features-cont .feature .icon i {
        font-size: 30px;
    }

    .features .body .features-cont .feature {
        height: 30%;
        background: linear-gradient(to top, var(--primary-color), transparent)!important;
    }
}

@media screen and (max-width: 800px){
    .features {
        min-height: unset;
        height: auto;
        position: unset;
    }

    .features .body {
        flex-direction: column;
        width: 90%;
        position: unset;
        margin-top: 20px;
    }

    .features .body .left,
    .features .body .right {
        width: 100%;
    }

    .features .body .features-cont {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .features .body .features-cont .feature .content {
        flex-direction: column;
    }

    .features .body .left .features-cont .feature .content {
        flex-direction: column;
    }

    .features .body .features-cont .feature .content h3 {
        font-size: 1.2rem;
    }

    .features .body .features-cont .feature .content p {
        font-size: 1rem;
        text-align: center!important;
    }

    .features .body .features-cont .feature .icon {
        padding-top: 10px;
    }

    .features .body .features-cont .feature .icon i {
        font-size: 30px;
    }

    .features .body .features-cont .feature {
        height: 50%;
        background: linear-gradient(to top, var(--primary-color), transparent)!important;
        margin-bottom: 20px;
        flex-direction: column!important;
    }

    .features .body .right .features-cont .feature {
        flex-direction: column-reverse!important;
    }
    
    .features .body .features-cont .feature .content {
        padding: 10px;
    }

}

.snap-scroll {
    scroll-snap-type: y mandatory;
}


.pricing {
    flex-direction: column;
    justify-content: start;
    margin-top: 10%;
    height: auto;
    min-height: auto;
}

.pricing-bg {
    position: absolute;
    width: 100%;
    height: 65%;
    background: var(--primary-color);
    border-radius: 5px;
    z-index: -1;
    top: 0;
    left: 0;
}


.pricing .head {
    padding-top: 3%;
}

.pricing .head .h-title {
    color: white!important;
}
.pricing .head .h-title .h-tag {
    color: var(--text-light);
}


.pricing .price-selection {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5% 0;
}

.pricing .price-selection a {
    padding: 10px 40px;
    background: var(--bg-color);
    border-radius: 5px;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.5s ease;
    cursor: pointer;
    white-space: nowrap;
}

.pricing .price-selection a:first-child {
    border-radius: 5px 0 0 5px;
}

.pricing .price-selection a:last-child {
    border-radius: 0 5px 5px 0;
}

.pricing .price-selection a.active {
    background: var(--secondary-color);
    color: var(--text-light-low);
    transform: scale(1.05);
    border-radius: 5px;
}

.pricing .body {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 80%;
    height: 50%;
    margin-top: 2%;
}

.pricing .body .price-card {
    width: 30%;
    height: max-content;
    border-radius: 5px;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    position: relative;
    cursor: pointer;
}

.pricing .body .price-card .ovh {
    position: absolute;
    height: 40px;
    top: -38px;
    right: 0;
    
    background-color: white;
    border-radius: 5px 5px 0 0;
    padding: 5px 30px;
    padding-top: 10px;
    z-index: -5px;

    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -1px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.pricing .body .price-card .ovh i {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-right: 5px;
}


.pricing .body .price-card .bg{
    position: absolute;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 5px 5px 0 0;
    z-index: -1;
    mix-blend-mode:soft-light;
}

.pricing .body .price-card .title {
    width: 100%;
    height: 10%;
    display: flex;
    align-items: center;
    padding-left: 20px;
    padding-top: 20px;

    font-size: 2.4rem;
    font-weight: 600;
    background: var(--gradient-ltr);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.pricing .body .price-card .description {
    width: 60%;
    height: 20%;
    display: flex;
    align-items: start;
    padding-left: 20px;

    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -1px;

    position: absolute;
    top: 145px;
}

.pricing .body .price-card .price {
    width: 100%;
    padding: 0 20px;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-light-low);
    letter-spacing: -2px;
}

.pricing .body .price-card .price span.dot {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-left: 5px;
    letter-spacing: 0;
}

.pricing .body .price-card .info-btn {
    position: absolute;
    right: 0;
    top: 185px;

    padding: 10px 50px;
    background: var(--secondary-color);
    border-radius: 5px;
    color: var(--text-light-low);
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.5s ease;
}

.pricing .body .price-card .info-btn:hover {
    background: var(--primary-color-dark);
    transform: scale(1.1) translateX(-7px);
}

.pricing .body .price-card .advantages {
    width: 100%;
    height: 60%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    margin-top:70px;
    margin-left: 5px;
}

.pricing .body .price-card .advantages .advantage {
    width: 100%;
    height: 20%;
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 10px 20px;
    color: var(--text-dark);
    font-weight: 600; 
}

.pricing .body .price-card .advantages .advantage::before {
    /*f00c */
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 10px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    padding: 5px;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pricing .body .price-card .advantages .advantage.hidden {
    height: 20%;
    display: none;
}


@media screen  and (max-width: 1440px) {
    .pricing .body {
        width: 90%;
    }

    .pricing .body .price-card {
        width: 32%;
    }

    .pricing .body .price-card .title {
        font-size: 2rem;
    }

    .pricing .body .price-card .price {
        font-size: 2.5rem;
    }

    .pricing .body .price-card .price span.dot {
        font-size: 1rem;
    }

    .pricing .body .price-card .description {
        width: 60%;
        font-size: 1rem;
    }

    .pricing .body .price-card .advantages {
        height: 50%;
        margin-top: 120px;
    }

    .pricing .body .price-card .advantages .advantage {
        height: 25%;
    }

    .pricing .body .price-card .advantages .advantage::before {
        font-size: 1rem;
    }

    .pricing .body .price-card .info-btn {
        padding: 8px 30px;
        top: 205px;
    }
    .pricing-bg {
        height: 62%;
    }
}

@media screen  and (max-width: 1024px) {
    .pricing .body {
        width: 98%;
    }

    .pricing .body .price-card {
        width: 32%;
    }

    .pricing .body .price-card .title {
        font-size: 2rem;
    }

    .pricing .body .price-card .price {
        font-size: 2.5rem;
    }

    .pricing .body .price-card .price span.dot {
        font-size: 1rem;
    }

    .pricing .body .price-card .description {
        width: 60%;
        font-size: 1rem;
    }

    .pricing .body .price-card .advantages {
        height: 50%;
        margin-top: 100px;
    }

    .pricing .body .price-card .advantages .advantage {
        height: 25%;
    }

    .pricing .body .price-card .advantages .advantage::before {
        font-size: 1rem;
    }

    .pricing .body .price-card .info-btn {
        padding: 8px 30px;
    }
}

@media screen and (max-width: 1024px) {

    .pricing .pricing-bg {
        display: none;
    }
    
    .pricing .body {

        flex-direction: row;
        align-items: center;
    }

    .pricing .body .price-card {
        width: 40%;
    }

    .pricing .h-title.secondary .title {
        color: var(--primary-color);

    }

    .pricing .body .price-card .price {
        font-size: 2.5rem;
        color: var(--text-dark);
    }

}


@media screen and (max-width: 830px) {
    .pricing .body {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-around;
        width: 95%;
        
    }

    .pricing .head {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .pricing .body .price-card {
        width: 48%;
        margin-bottom: 40px;
    }

    .pricing .body .price-card .advantages .advantage.hidden {
        display: unset;
        opacity: 0;
    }
    
}

@media screen and (max-width: 550px) {
    .pricing .body .price-card {
        width: 90%;
    }

    .pricing .body .price-card .advantages .advantage {
        height: 20%;
    }

    .pricing .body .price-card .advantages .advantage::before {
        font-size: 1rem;
    }

    .pricing .body .price-card .info-btn {
        padding: 8px 30px;
    }
}

/* contact */

.contact {
    flex-direction: column;
    min-height: 80vh;
}

.contact .head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact .head .tag {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.contact .head .title {
    font-size: 3rem;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.contact .head .description {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark-low);
    letter-spacing: 1px;
    text-align: center;
    width: 60%;
    margin-top: 20px;
}

.contact .body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 2%;
}

.contact .body form {
    width: 40%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.contact .body form .form-group {
    width: 47%;
    padding: 1%;
    display: flex;
}

.contact .body form .form-group.w-100 {
    width: 100%;
}

.contact .body form .form-group input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    outline: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.contact .body form .form-group input::placeholder {
    color: var(--text-dark-low);
}


.contact .body form .form-group textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    margin: 1%;
    border-radius: 5px;
    outline: none;
    font-size: 1rem;
    letter-spacing: -0.3px;
    font-weight: 500;
    color: var(--text-dark);
    resize: none;
}

.contact .body form .form-group textarea::placeholder {
    color: var(--text-dark-low);
}

.contact .body form p {
    width: 100%;
    font-size: 1.1rem;
    margin-left: 2%;
    font-weight: 500;
    color: var(--text-dark-low);
    margin-bottom: 20px;
}

.contact .body form button {
    padding: 10px 50px;
    background: var(--primary-color);
    border-radius: 5px;
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.5s ease;
    cursor: pointer;
    width: 96%;
}


/* contact responsive */

@media screen and (max-width: 1024px) {
    .contact .body form {
        width: 60%;
    }

    .contact .body form .form-group {
        width: 100%;
    }

    .contact .body form .form-group input {
        width: 100%;
    }

    .contact .body form .form-group textarea {
        width: 100%;
    }

    .contact .body form button {
        padding: 15px 40px;
    }

    .contact .head .title {
        text-align: center;
    }

    .contact .head .description {
        width: 95%;
    }
}

@media screen and (max-width: 768px) {
    .contact .body form {
        width: 80%;
    }

    .contact .body form button {
        padding: 15px 30px;
    }

    .contact .head .title {
        font-size: 2rem;
        width: 90%;
    }

    .contact .head .description {
        width: 97%;
        font-size: 1rem;
    }


}

@media screen and (max-width: 550px) {
    .contact .body form {
        width: 80%;
    }

    .contact .body form button {
        padding: 15px 30px;
    }
}





footer {
    z-index: 1000;
    position: relative;
    width: 100%;
    overflow-x: hidden;
    margin-top: 100px;
}

footer .head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

footer .head p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-dark);
    letter-spacing: 1px;
    text-align: center;
    width: 70%;
}


footer .head .logo {
    width: 20%;
}

footer .head .logo svg {
    width: 100%;
    height: auto;
}

footer .body .footer-navbar {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .body .footer-navbar ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .body .footer-navbar ul li {
    margin: 0 20px;
}

footer .body .footer-navbar ul li a {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.5s ease;
}

footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
}

footer .footer-bottom ul {
    display: flex;
}

footer .footer-bottom a {
    margin: 0 10px;
    color: var(--text-dark);
    font-weight: 500;
}


footer .footer-bottom a:hover {
    color: var(--primary-color);
}

/* footer responsive */


/* Responsive Tasarım */
@media screen and (max-width: 768px) {

    footer .head .logo {
        width: 30%;
    }

    footer .footer-navbar ul {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 15px;
    }

    footer .footer-navbar ul li {
        width: 25%;
        display: flex;
        justify-content: center;
    }

    footer .footer-navbar ul li a {
        font-size: 1rem!important;
    }

    footer .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    footer .footer-bottom .right ul {
        justify-content: center;
    }

    footer .footer-bottom .right ul li {
        margin: 0 10px;
    }

    footer .footer-bottom .right ul li a {
        font-size: 1rem;
        font-weight: 600;
    }

    
}

@media screen and (max-width: 650px) {
    footer .head .logo {
        width: 40%;
    }

    footer .footer-navbar ul li {
        width: 33%;
    }

    footer .footer-navbar ul li a {
        font-size: 0.9rem!important;
    }

    footer .footer-bottom .right ul li {
        margin: 0 5px;
    }

    footer .footer-bottom .right ul li a {
        font-size: 0.9rem;
    }
}


.main-landing .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.main-landing .bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;

    
}




.main-landing .body {
    position: absolute;
    top: 45%;
    left: 5%;
}

.main-landing .body h1 {
    font-size: 7rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 3px;
}

.main-landing .body p {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light-low);
    position: relative;
    top: -20px;
}

/* main-landing responsive */

@media screen and (max-width: 1024px) {
    .main-landing .body {
        top: 40%;
    }

    .main-landing .body h1 {
        font-size: 5rem;
    }

    .main-landing .body p {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 768px) {
    .main-landing .body {
        top: 35%;
    }

    .main-landing .body h1 {
        font-size: 4rem;
        margin-bottom: 10px;
    }

    .main-landing .body p {
        font-size: 1rem;
    }
}





.main-why-we {
    min-height: auto;
    height: auto;
    width: 90%;
    margin: 0 auto;
    padding: 50px 0;

    display: flex;
    justify-content: space-around;
    align-items: center;
}

.main-why-we .card {
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.main-why-we .card .icon {
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-why-we .card .icon img {
    width: 100%;
    height: auto;
}

.main-why-we .card .title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 20px;
}

.main-why-we .card .desc {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark-low);
    text-align: center;
    margin-top: 10px;
}


/* main-why-we responsive */

@media screen and (max-width: 1024px) {
    .main-why-we {
        flex-wrap: wrap;
    }

    .main-why-we .card {
        width: 45%;
        margin-bottom: 30px;
    }

    .main-why-we .card .title {
        font-size: 1.2rem;
    }

    .main-why-we .card .desc {
        font-size: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .main-why-we {
        flex-direction: column;
    }

    .main-why-we .card {
        width: 80%;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 550px) {
    .main-why-we .card {
        width: 90%;
    }
}




.main-features {
    flex-direction: column;
    justify-content: start;

    height: auto;
    min-height: auto;
    overflow-x: hidden;
}



.main-features .head .title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 1px;
    padding-top: 100px;
}

.main-features .body {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 90vh;
    width: 75%;
    margin-top: -9%;
}

.main-features .body .selections {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    height: max-content;
}

.main-features .body .selections .selection {
    width: 80%;
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 10px 5px;
    cursor: pointer;
    background: #f8f9fa;
    border-radius: 5px;
    margin-bottom: 10px;
    height: 50px;
    transition: all 0.5s ease;
}



.main-features .body .selections .selection.active {
    background: var(--primary-color);
    width: 100%;
    transition: all 0.5s ease;
    transform: scale(1.05) translateX(50px);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}

.main-features .body .selections .selection.active .title {
    color: var(--text-light);
}

.main-features .body .selections .selection.active::before {
    background: var(--secondary-color);
}

.main-features .body .selections .selection .icon {
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-features .body .selections .selection.active .icon i {
    color: var(--text-light);
}

.main-features .body .selections .selection .icon i {
    font-size: 30px;
    color: var(--text-dark-low);
}

.main-features .body .selections .selection .title {
    width: 80%;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.main-features .body .features {
    width: 57%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 50%;
    z-index: 1;
}

.main-features .body .features .feature {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
    transform: translateX(100%);
    opacity: 0;
}

.main-features .body .features .feature.active {
    transform: translateX(0%);
    transition: all 0.5s ease;
    opacity: 1;
}

.main-features .body .features .feature .image {
    width: 100%;
    height: 500px;
}

.main-features .body .features .feature .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
    border-radius: 10px;
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 40%);
}

.main-features .body .features .feature .content {
    position: absolute;
    bottom: -40%;
    left: -5%;
    background: #f8f9fa;
    width: 90%;
    height: auto;
    border-radius: 10px;
}

.main-features .body .features .feature .content .title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 20px;
}

.main-features .body .features .feature .content .desc {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark-low);
    padding: 20px;
}

/* main-features responsive  (mobile = row -> column) */

@media screen and (max-width: 1024px) {
    .main-features .head .title {
        font-size: 2rem;
        text-align: center;
        width: 100%;
    }


    .main-features .body {
        width: 96%;
        margin-left: 0;
    }

    .main-features .body .selections {
        width: 45%;
    }

    .main-features .body .features {
        width: 55%;
    }

    .main-features .body .selections .selection .title {
        font-size: 1.2rem;
    }

    .main-features .body .features .feature .content .title {
        font-size: 1.8rem;
    }

    .main-features .body .features .feature .content .desc {
        font-size: 1rem;
    }
}

@media screen and (max-width: 800px) {
    .main-features {
        height: auto;
        min-height: auto;
    }

    .main-features .body {
        width: 90%;
        margin: 0;
        flex-direction: column;
        justify-content: start;
    }

    .main-features .body .selections {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

    .main-features .body .selections .selection {
        width: 40%!important;
        margin: 0 20px;
        transform: translate(0, 0);
    }

    .main-features .body .selections .selection.active {
        width: 40%!important;
        margin: 10px 20px;
        transform: translate(0, 0) scale(1)!important;
        clip-path: none;
        
    }

    .main-features .body .features {
        width: 100%;
    }

    .main-features .body .selections .selection .title {
        font-size: 1rem;
    }

    .main-features .body .features .feature .content .title {
        font-size: 1.5rem;
    }

    .main-features .body .features .feature .content .desc {
        font-size: 1rem;
    }
}

@media screen and (max-width: 550px) {
    .main-features .body {
        height: 130vh;
    }


    .main-features .body .selections .selection {
        width: 90%!important;
        margin: 0 10px;
    }

    .main-features .body .selections .selection.active {
        width: 90%!important;
        margin: 10px 10px;
    }

    .main-features .body .features .feature .image {
        height: 300px;
    }

    .main-features .body .features .feature .content {
        bottom: -10%;
        height: auto;
    }

    .main-features .body .features .feature .content .title {
        font-size: 1.2rem;
    }
}




.basic-content {
    width: 100%;
    height: auto;
    min-height: auto;
    padding: 100px 0;
    
}

.basic-content .image {
    width: 55%;
    position: relative;
}

.basic-content .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 20%);
    position: relative;
}

.basic-content.reverse .image img {
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 20%);
}

.basic-content .image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    z-index: 100;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 80%, var(--bg-color) 95%);
    z-index: 100;
}

.basic-content .image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 80%, var(--bg-color) 95%);
    z-index: 100;
}





.basic-content .content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: -5%;
    padding-left: 10%;
}

.basic-content .content .title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 1px;
    padding-top: 100px;
}

.basic-content .content .desc {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark-low);
    margin-top: 20px;
    width: 80%;
}

/* basic-content responsive */

@media screen and (max-width: 1024px) {
    .basic-content .content .title {
        font-size: 2rem;
    }

    .basic-content .content .desc {
        font-size: 1rem;
        width: 90%;
    }
}

@media screen and (max-width: 768px) {
    .basic-content {
        flex-direction: column;
    }

    .basic-content .image {
        width: 100%;
    }

    .basic-content .content {
        width: 100%;
        padding: 0;
        margin-top: 0;
    }

    .basic-content .content .title {
        text-align: center;
        padding-top: 0;
    }

    .basic-content .content .desc {
        text-align: center;
        width: 90%;
        margin: 0 auto;
    }
}




.slider-sec {
    display: flex;
    flex-direction: column;
    padding: 100px 0;
    overflow-x: hidden;
}

.slider-sec .flickity-viewport {
    overflow: visible;
}

.slider-sec .slider .slide {
    width: 50%;
    height: 480px;
    margin: 0 15px;
    border-radius: 15px;
    overflow: visible;
}

.slider-sec .slider .slide .title {
    position: absolute;
    top: 0;
    left: 50%;
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 1px;
    z-index: 1;
    transition: all 1s ease;
    opacity: 0;
    mix-blend-mode: difference;
    white-space: nowrap;
    transform: translate(-50%, 0%);
}

.slider-sec .slider .slide.is-selected .title {
    transform: translate(-50%, -100%);
    opacity: 1;
}

.slider-sec .slider .slide .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    z-index: -1;
}

.slider-sec .slider .slide .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
    border-radius: 15px;
}


/* slider-sec responsive */

@media screen and (max-width: 1024px) {
    .slider-sec .slider .slide .title {
        font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .slider-sec .slider .slide .title {
        font-size: 1.4rem;
    }

    .slider-sec .slider .slide {
        height: 300px;
        width: 80%;
        margin: 0 5px;
    }
}




.flickity-page-dots .dot {
    width: 20px;
    height: 6px;
    border-radius: 2px;
    background: var(--primary-color);
    opacity: 0.7;
    transition: all 0.5s ease;
}

.flickity-page-dots .dot.is-selected {
    background: var(--secondary-color);
    width: 30px;
    transform: scale(1.2);
}

/* responsive */

.discount-text {
    text-align:center; font-size: 1.5rem; color: #ffffff; position:relative; top: -20px; white-space: nowrap;
    background: var(--secondary-color); padding: 0.8rem 2rem; border-radius: 10px;
}

@media screen and (max-width: 768px) {
    .flickity-page-dots .dot {
        width: 15px;
        height: 4px;
    }

    .flickity-page-dots .dot.is-selected {
        width: 20px;
    }

    .discount-text {
        font-size: 1rem!important;
        top: 0;
        margin-bottom: 5px;
        width: 70%;
        white-space: normal;
    }
}

@media screen and (max-width: 550px) {
    .flickity-page-dots .dot {
        width: 10px;
        height: 3px;
    }

    .flickity-page-dots .dot.is-selected {
        width: 15px;
    }
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader img {
    width: 450px;
    animation: pulse 2s ease-in-out infinite;
}

@media screen and (max-width: 768px) {
    .loader img {
        width: 300px;
    }
    
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.navbar .language-dropdown {
    position: relative;
    margin-left: 15px;
}

.navbar .language-dropdown .lang-btn {
    display: flex;
    align-items: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

[data-is-scrolled="true"] .navbar .language-dropdown .lang-btn {
    color: var(--text-dark);
    background: rgba(0, 0, 0, 0.05);
}

.navbar .language-dropdown .lang-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.navbar .language-dropdown .lang-btn i {
    font-size: 14px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.navbar .language-dropdown.active .lang-btn i {
    transform: rotate(180deg);
}

.navbar .language-dropdown .lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 120px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 5px;
}

.navbar .language-dropdown.active .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar .language-dropdown .lang-menu a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin: 4px;
}

.navbar .language-dropdown .lang-menu a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(3px);
}

.navbar .language-dropdown .lang-menu a .flag {
    width: 20px;
    height: 14px;
    margin-right: 8px;
    border-radius: 2px;
    background-size: cover;
    background-position: center;
}


.navbar .language-dropdown .lang-btn .flag-icon {
    width: 18px;
    height: 12px;
    margin-right: 6px;
    border-radius: 2px;
    background-size: cover;
    background-position: center;
    display: inline-block;
}


@media screen and (max-width: 1024px) {
    .navbar .language-dropdown {
        position: static;
        margin: 10px 0;
        width: 100%;
        padding-left: 0;
    }
    
    .navbar .language-dropdown .lang-btn {
        justify-content: flex-start;
        width: 100%;
        color: var(--text-dark);
        background: rgba(0, 0, 0, 0.05);
        margin-left: 0;
    }
    
    .navbar .language-dropdown .lang-menu {
        position: static;
        box-shadow: none;
        background: transparent;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0;
        margin-left: 20px;
    }
    
    .navbar .language-dropdown .lang-menu a {
        padding: 8px 15px;
        margin: 2px 0;
    }
}

@media screen and (max-width: 1024px) {
    .navbar .menu.active .language-dropdown {
        order: -1; 
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .navbar .menu.active .language-dropdown .lang-btn {
        justify-content: center;
        background: var(--primary-color);
        color: white;
    }
    
    .navbar .menu.active .language-dropdown .lang-menu {
        position: relative;
        background: white;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-top: 10px;
        padding: 5px;
    }
    
    .navbar .menu.active .language-dropdown.active .lang-menu {
        display: block;
    }
    
    .navbar .menu ul {
        display: flex;
    }
}

.navbar .menu.active {
    display: block;
}

.navbar .menu.active ul {
    display: flex;
}

.navbar .menu.active .language-dropdown {
    display: block;
}

#gt-nvframe {
  display: none!important;
}

body {
  margin-top: 0px!important;
}

/* Navbar menu gradual shrink for large screens */
@media screen and (max-width: 1600px) {
  .navbar .menu ul li {
    margin: 0 16px;
  }
  .navbar .menu ul li a {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 1440px) {
  .navbar .menu ul li {
    margin: 0 12px;
  }
  .navbar .menu ul li a {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1280px) {
  .navbar .menu ul li {
    margin: 0 8px;
  }
  .navbar .menu ul li a {
    font-size: 0.95rem;
  }
}
@media screen and (max-width: 1100px) {
  .navbar .menu ul li {
    margin: 0 4px;
  }
  .navbar .menu ul li a {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 1600px) {
  .navbar .menu ul li {
    margin: 0 8px;
  }
  .navbar .menu ul li a {
    font-size: 1rem;
    font-weight: 500;
  }
}

@media screen and (max-width: 1400px) {
    .navbar .menu ul li {
      margin: 0 8px;
    }
    .navbar .menu ul li a {
      font-size: 0.92rem;
      font-weight: 500;
    }
  }
@media screen and (max-width: 1280px) {
  .navbar .menu ul li {
    margin: 0 4px;
  }
  .navbar .menu ul li a {
    font-size: 0.86rem;
    font-weight: 500;
  }
}
@media screen and (max-width: 1250px) {
  .navbar .menu ul li {
    margin: 0 2px;
  }
  .navbar .menu ul li a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.5px;
  }
}
/* Logo stays same size until 1024px (handled by existing code) */