html {
    scroll-behavior: smooth;
}

html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #000913;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: "Manrope", sans-serif;
    position: relative;
}

main {
    width: 100%;
    overflow-x: hidden;
    max-width: 100vw;
}

.innerContainer {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    max-width: 100%;
}

/* Prevent scroll bar during animations */
section {
    overflow-x: hidden;
    max-width: 100vw;
    box-sizing: border-box;
}

h1,h2,h3,h4,h5,h6,p,span{
    color:#859BB7;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1272px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    overflow-x: hidden;
}

header .container {
    transition: max-width 0.5s ease, padding 0.5s ease;
}

header.scrolled .container {
    max-width: 1000px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    height: 70px;
    padding: 0px 20px;

    border-radius: 10px;
    border: 1px solid rgba(122, 184, 249, 0.1);

}
header {
    z-index: 9999; 
    position: fixed;
    width: 100%;
top: 10px;




}
.logo {
    width: 100px;
    height: auto;
}
.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
padding: 14px 41px;
border-radius: 80px;
    background-color: rgba(0, 0, 0, 0.16);
}
.menu ul {
    display: flex;    
    flex-direction: row;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 39px;
}
.menu ul li {
    display: inline-block;
    margin: 0;
    padding: 0;

}
.menu ul li a {
    text-decoration: none;
    color: #B9D8E8;
    font-weight: 300;
    transition: color 0.3s ease;
}

.menu ul li a.active {
    color: #7AB8F9;
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10000;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #B9D8E8;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}
#hero{
    background-image: url(Img/Hero.png);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
    padding-top: 90px;
    overflow: hidden;
    box-sizing: border-box;
}

.btn-primary,.btn-primary-xl{
    display: inline-block;
    background: linear-gradient(to bottom,#7AB8F9, #0278FB);
    padding: 14px 26px 14px 25px;
    border-radius: 120px;
    color: #B9D8E8;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-primary:hover,.btn-primary-xl:hover{
    background: linear-gradient(to bottom,#8AC5FF, #0E85FF);
    transform: translateY(-2px);
    box-shadow: 0 10px 100px rgba(2, 120, 251, 0.8);
}
.btn-primary,btn-primary-xl a{
    font-size: 16px;
}
.btn-primary-xl{
    padding: 19px 51px;

}
/* Hero Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-animate {
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-animate-1 {
    animation: fadeInUp 1s ease-out 0.2s forwards;
}

.hero-animate-2 {
    animation: scaleIn 0.8s ease-out 0.6s forwards;
}

.hero-animate-3 {
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

.hero-animate-4 {
    animation: fadeInUp 1s ease-out 1.2s forwards;
}

.hero-animate-5 {
    animation: fadeInUp 1s ease-out 1.5s forwards;
}

.hero-animate-6 {
    animation: fadeInUp 1s ease-out 1.8s forwards;
}

/* Section Animations - Triggered on Scroll */
.section-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section-animate.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations for child elements */
.animate-item {
    opacity: 0;
    transform: translateY(40px);
}

.animate-item.active {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Different delays for staggered effect */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }
.animate-delay-6 { animation-delay: 0.6s; }

/* Fade in from left */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Fade in from right */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scale fade in */
@keyframes scaleFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-from-left {
    opacity: 0;
    transform: translateX(-30px);
}

.animate-from-left.active {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-from-right {
    opacity: 0;
    transform: translateX(30px);
}

.animate-from-right.active {
    animation: fadeInRight 0.8s ease-out forwards;
}

.animate-scale {
    opacity: 0;
    transform: scale(0.95);
}

.animate-scale.active {
    animation: scaleFadeIn 0.8s ease-out forwards;
}

.Hero-content{
    align-items: center;
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    margin-top: 100px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.Hero-content .top{
    display: flex;
    color: #7AB8F9;
    align-items: center;
    text-align: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    flex-wrap: wrap;
}

.Hero-content .top h1{
    margin: 0;
    font-size: 72px;
    font-weight: 400;
    word-wrap: break-word;
}

.Hero-content .bottom h1{
    font-size: 72px;
    font-weight: 400;
    word-wrap: break-word;
}
.gradient-text {
    background: linear-gradient(90deg, #FFFFFF, #7AB8F9);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
  }


 .images-about{
    width: 100%;
    height: 100%;
    margin-bottom: -70px;
 }


  .images-about img,
  .images-about video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    
  }

  .Hero-titles{
display: flex;
    flex-direction: column;
    gap: 50px;
    text-align: center;
    color: #B9D8E8;
    align-items: center;
    font-size: 20px;
    width: 100%;
    box-sizing: border-box;
   
  }
  .Hero-titles h5{
    font-weight: 400;
    font-size: 20px;
    max-width: 100%;
    word-wrap: break-word;
  }
  .brands-slider {
    width: 100%;
    height: 80px;
    margin-top: 200px;
    overflow: hidden !important;
    position: relative;
    box-sizing: border-box;
  }

  .brands {
    display: flex;
    gap: 90px;
    align-items: center;
    animation: scrollHeroBrands 25s linear infinite;
    will-change: transform;
  }

  .brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    flex-shrink: 0;
  }

  .brand-item img {
    height: 60px;
    width: auto;
    object-fit: contain;
  }

  @keyframes scrollHeroBrands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50%));
    }
  }

  .brands:hover {
    animation-play-state: paused;
  }
#About{
    width: 100%;
    height: auto;
    padding: 90px 0 0 0;
    overflow-x: hidden;
    box-sizing: border-box;
    max-width: 100vw;
}

.content{
  display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    max-width: 100%;
    position: relative;
}
.titles{
    width: 735px;
    max-width: 100%;
    display: flex;
    text-align: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    box-sizing: border-box;
}
.titles span{
    background: linear-gradient(90deg, #7AB8F9, #0278FB);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 18px;
}
.titles h3{
    font-size: 40px;
    color: #B9D8E8;
    word-wrap: break-word;
}
.titles h4{
    font-size: 20px;
    font-weight: 300;
    word-wrap: break-word;
}
#Avantages{
    width: 100%;
    min-height: 920px;
    height: auto;
    padding: 90px 0;
    display: flex;
    justify-content: space-around;
    background: radial-gradient(circle, rgba(2, 118, 251, 0.153), rgba(0, 9, 19, 0));
    overflow-x: hidden;
    box-sizing: border-box;
    max-width: 100vw;
}
.FeaturesBox{
    background: linear-gradient(90deg, #ffffff00, rgba(0, 0, 0, 0.06));
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 31px;
    width: 33.333%;
    padding: 60px 20px;
    backdrop-filter: blur(176px);
    border: 0.5px solid rgba(122, 184, 249, 0.1);
    box-sizing: border-box;
    position: relative;
}
.FeaturesBox h4{
    font-size: 24px;
    font-weight: 300;
}
.Icon{
    width: 85px;
    height: 85px;
    border:  0.63px solid rgba(122, 184, 249, 0.1);
    justify-items: center;
    text-align: center;
    align-items: center;
    border-radius: 19.03px;
  

}
.hoverActive{
    background-color: #0278FB ;
    box-shadow: 0px 0px 125px #0278FB ;
}
.FeaturesBox:hover .Icon {

    background-color: #0278FB ;
    box-shadow: 0px 0px 125px #0278FB ;
    transition: all ease 0.8s ;
}
.Icon img{
    margin-top: 24px;
}
.text-content{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 40px;
}
.text-content h4{
    color: #B9D8E8;
}
.Boxes {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
}
.content{
    display: flex;
    gap: 120px;
}

#Apps{
    width: 100%;
    height: 920px;
    background-image: url(Img/apps\ backgorund.png);
    background-repeat: no-repeat;
    background-size: cover;
    overflow-x: hidden;
    box-sizing: border-box;
    max-width: 100vw;
}
.heading{
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 30px;
    margin-top: 120px;
    align-items: center;
    text-align: center;
    justify-content:center ;
}

.heading-content{
    width: 545px;
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.badge{
display: flex;
justify-content: center;
text-align: center;
gap: 5px;
align-items: center;
    background: radial-gradient(circle,#7AB8F9, #0278FB);
 
    padding: 7px 18px;
    border-radius: 10px;
}
.badge p{
    color: #B9D8E8;

}



.heading-content h3{
 
    font-size: 72px;
font-weight: 300;


}
.heading-content h4{
color: #B9D8E8;
    font-size: 18px;
font-weight: 300;


}
.Buttons{
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.Button {
    display: flex; 
    align-items: center;
    justify-content: center;
    padding: 16px 34px;
    border-radius: 14px;
    gap: 5px;
    transition: all 0.3s ease;
}
.Buttons a{
  
    text-decoration: none;
    color: #B9D8E8;
    font-size: 18px;
    font-weight: 200px;
  
}
.Buttons img{
    margin-right: 5px;

}
.btn-second{
background-color: rgba(122, 184, 249, 0.1);
}
.btn-second:hover{
background-color: rgba(122, 184, 249, 0.2);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(122, 184, 249, 0.2);
}
.btn-third{
background-color: #B9D8E8;

}
.btn-third:hover{
background-color: #A5CAE0;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(185, 216, 232, 0.3);
}

.statistics{
    display: flex;
    gap: 5px;
    margin-top: 6px;
}

.TitleContent p{
    font-size: 18px;
    color: #B9D8E8;
  
}
.AppBox{
    width: 290px;
    min-width: 290px;
    max-width: 290px;
    background-color: rgba(122, 184, 249, 0.1);
    border :1px solid rgba(122, 184, 249, 0.1);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 20px;
    flex-shrink: 0;
}

.AppBox .TitleContent{
    margin-top: 10px;
    
}
.AppBox p{
    color: #B9D8E8;
}

.AppBox .TopContent{
    display: flex;
    justify-content: left;
    gap: 10px;

}

.AppBox .TopContent .Logo img{
    width: 50px;
    height: 50px;
}

.AppSlider{
    width: 100%;
    display: flex;
    gap: 30px;
    overflow: hidden;
    position: relative;
}

.AppSlider-track{
    display: flex;
    gap: 30px;
    animation: scroll 30s linear infinite;
    will-change: transform;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-25%));
    }
}

.AppSlider-track:hover {
    animation-play-state: paused;
}

@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50%));
    }
}

.toolsBrands:hover {
    animation-play-state: paused;
}

#Apps .innerContainer{
    display:flex;
    flex-direction: column;
    gap: 120px;
}

#Tools{
    width: 100%;
    height: 920px;
    padding: 90px 0;
    display: flex;
    align-items: center; 
    overflow-x: hidden;
    max-width: 100vw;
    box-sizing: border-box;
}


.ToolContent{
    width: 100%;
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
    overflow: hidden;
}
.ToolContent img{
    max-width: 100%;
    height: auto;
}
.ToolContent .Content{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ToolContent h4{
    font-size: 56px;
    font-weight: 300;
}
.ToolContent p{
    font-size: 24px;
    font-weight: 300;
    margin-top: 20px;
}


.bluestyle{
    color: #0278FB;
    word-wrap: break-word;
}

.ToolsBrandSlider{
width: 100%;
height: 150px;
background: linear-gradient(90deg, #000913, #0D1E30, #000913);
padding-top: 60px;
overflow: hidden;
position: relative;
}
.toolsBrands{
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    animation: scrollBrands 30s linear infinite;
    will-change: transform;
}
.brand{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    min-width: 120px;
    flex-shrink: 0;
}
.ToolsContent{
    display: flex;
    flex-direction: column;
    gap: 100px;
    overflow: hidden;
    width: 100%;
}

#Contact {
    width: 100%;
    height: 920px;
    padding: 90px 0;
    overflow: hidden;
    max-width: 100vw;
    box-sizing: border-box;
    position: relative;
}

.ContactBox{
    border-radius: 30px;
    width: 100%;
    height: 550px;
    display: flex;
    justify-content: space-between;  /* İçerikleri iki yana yayar */
    align-items: center;   
    gap: 20px;          /* Dikey ortalama */
    background: radial-gradient(circle at 50% -60%, #7AB8F9, #0146C7);
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}
.contact-wrapper {
    background: linear-gradient(0deg, #0278FB, #7AB8F9);
    padding: 1px;
    border-radius: 32px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    max-width: 100%;
}
.LeftContent{
    flex: 0.7;                     
    text-align: left;
    padding-right: 30px;   
    display: flex;
    margin-left: 60px;
    justify-content: left;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
    overflow: hidden;
    max-width: 100%;
    min-width: 0;
}
.LeftContent h4{
    font-size: 54px;
    color: #FFFFFF;
    font-weight: 300;
    word-wrap: break-word;
}
.LeftContent p{
    color: #B9D8E8;
    font-size: 18px;
    font-weight: 300;
    word-wrap: break-word;
}
.LeftContent  a{
text-decoration: none;
color: #B9D8E8;
font-size: 18px;
font-weight: 400;

}
.form-group{
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
    max-width: 100%;
}
.form-group input[type="text"],input[type="email"],textarea {
padding: 20px;
background-color: rgba(255, 255, 255, 0.2);
border: 1px solid #B9D8E8;
border-radius: 10px;
width: 100%;
box-sizing: border-box;
}
.form-group input:focus,textarea:focus {
outline: none;

    }

    .submit-wrapper {
        background: linear-gradient(00deg, #0278FB, #7AB8F9 );
        padding: 3px;
        border-radius: 12px;
        display: inline-block;
        width: 100%;
    }
    
    .form-group input[type="submit"] {
        padding: 20px;
        color: #FFFFFF;
        background: radial-gradient(circle at 50% -250%, #7AB8F9, #0278FB);
        border: none;
        border-radius: 10px;
        width: 100%;
        cursor: pointer;
        font-family: "Manrope", sans-serif;
        font-size: 16px;
        font-weight: 400;
        box-shadow: 0px 30px 34px #003DAE;
        transition: box-shadow 1s;
    }
   .form-group input[type="submit"]:hover {
  
    padding: 20px;
    border: none;
  box-shadow:   none;
cursor: pointer;
  border-radius: 10px;
    color: #FFFFFF;
    background: radial-gradient(circle at 50% -250%, #7AB8F9, #0278FB);
  
   }
    
    .form-group input::placeholder, textarea::placeholder{
font-weight: 400;
        color: #B9D8E8;
        font-family: "Manrope", sans-serif;
        }

        .RightContent {
            flex: 1.2;
            padding-left: 30px;
            display: flex;                    /* Flex container yap */
            justify-content: center;          /* Yatay ortalama */
            align-items: center;              /* Dikey ortalama */
            text-align: center;
            box-sizing: border-box;
            overflow: hidden;
            max-width: 100%;
            min-width: 0;
        }
        
        .ButtonMaxSize{
            width: 200px;
        }


    footer{
border-top: 1px solid rgba(122, 184, 249, 0.1);
width: 100%;
height: 400px;
overflow-x: hidden;
box-sizing: border-box;
    }

    .Footer-Wrapper{
        display: flex;
        justify-content: space-between;
        margin-top: 80px;
    
    }
    .footer-left{
        flex: 1;
    
    
    
    }

    .footer-content{
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 300px;
    }
    .footer-left img {
        width: 100px;
    }
    .footer-right{
   flex: 1;
display: flex;
justify-content: space-between;



    }
    .footerMenu{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .footer-right p{
        display: inline-block;
    }
    
    .footerMenu a {
        text-decoration: none;
        transition: opacity 0.3s ease;
    }
    
    .footerMenu a:hover {
        opacity: 0.7;
    }
    
    .contacts{
        display: flex;
        gap: 5px;
    }
    .contacts a{
        text-decoration: none;
        color: inherit;
        transition: opacity 0.3s ease;
    }
    .contacts a:hover{
        opacity: 0.7;
    }
    .contactIcon{
     width: 35px;
     height: 35px;

   display: flex;
   justify-content: center;
   align-items: center;
       border: 1px solid rgba(122, 184, 249, 0.1);
       border-radius: 10px;
       transition: all 0.3s ease;
       cursor: pointer;
    }
    
    .contactIcon:hover {
        background-color: rgba(122, 184, 249, 0.1);
        border-color: rgba(122, 184, 249, 0.3);
    }
    .contacts{
        display: flex;
        justify-content: center; 
        align-items: center;
    }
    .socials{
        display: flex;
        gap: 10px;
    }
    .contactInfos{
        display: flex;
        gap: 20px;
    }
    .footer-contact{
        display: flex;
        justify-content: space-between;
        margin-top: 50px;
    }
    .smalltitle{
        color: #859BB7;
        font-weight: 600;
    }

/* Responsive Media Queries */
@media screen and (max-width: 1024px) {
    .header-content {
        padding: 0 15px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* Tools Section - Tablet */
    #Tools {
        height: auto;
        padding: 70px 0;
        overflow-x: hidden;
    }
    
    .ToolsContent {
        gap: 80px;
        width: 100%;
        overflow-x: hidden;
    }
    
    .ToolContent {
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
        padding: 0 20px;
    }
    
    .ToolContent .Content {
        width: 100%;
        box-sizing: border-box;
    }
    
    .ToolContent h4 {
        font-size: 38px;
        word-wrap: break-word;
        line-height: 1.3;
    }
    
    .ToolContent h4 br {
        display: inline;
    }
    
    .ToolContent p {
        font-size: 18px;
        padding: 0 20px;
    }
    
    .ToolContent img {
        width: 20%;
        max-width: 350px;
        height: auto;
    }
    
    .ToolsBrandSlider {
        height: 140px;
        padding-top: 50px;
        width: 100%;
        overflow-x: hidden;
    }
    
    .brand {
        min-width: 110px;
    }
    
    .brand img {
        width: 55px;
        height: auto;
    }
    
    /* Contact Section - Tablet */
    #Contact {
        height: auto;
        min-height: 800px;
        padding: 60px 0;
        overflow: hidden;
    }
    
    .ContactBox {
        height: auto;
        min-height: 500px;
        padding: 40px 30px;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .LeftContent {
        margin-left: 20px;
        width: 100%;
        box-sizing: border-box;
        padding-right: 20px;
    }
    
    .LeftContent h4 {
        font-size: 38px;
        word-wrap: break-word;
        line-height: 1.2;
    }
    
    .LeftContent p {
        font-size: 16px;
    }
    
    .RightContent {
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-group {
        width: 90%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Footer - Tablet */
    footer {
        height: auto;
        padding: 40px 0;
    }
    
    .Footer-Wrapper {
        margin-top: 60px;
        gap: 40px;
    }
    
    .footer-content {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-right {
        gap: 30px;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 30px;
        margin-top: 40px;
    }
    
    .contactInfos {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .contacts {
        flex-basis: calc(50% - 10px);
    }
}

@media screen and (max-width: 1024px) {
    .FeaturesBox {
        width: 50%;
    }
    
    /* First row */
    .FeaturesBox:nth-child(1) {
        border-radius: 20px 0 0 0 !important;
    }
    
    .FeaturesBox:nth-child(2) {
        border-radius: 0 20px 0 0 !important;
    }
    
    /* Second row */
    .FeaturesBox:nth-child(3) {
        border-radius: 0 0 0 0px !important;
    }
    
    .FeaturesBox:nth-child(4) {
        border-radius: 0 0 0px 0 !important;
    }
    .images-about{
        margin-bottom: -50px;
    }
    
    /* Third row - only visible on mobile */
    .FeaturesBox:nth-child(5) {
        border-radius: 0px 0 0 0 !important;
    }
    
    .FeaturesBox:nth-child(6) {
        border-radius: 0 0px 0 0 !important;
    }
    
    #Avantages {
        height: auto;
        padding: 60px 0;
    }
}

@media screen and (max-width: 768px) {
    /* Show hamburger button on mobile */
    .hamburger {
        display: flex;
    }
    
    .FeaturesBox {
        width: 100% !important;
        border-radius: 0 !important;
        border-left: 1px solid rgba(122, 184, 249, 0.1);
        border-right: 1px solid rgba(122, 184, 249, 0.1);
    }
    
    .FeaturesBox:first-child {
        border-radius: 20px 20px 0 0 !important;
        border-top: 1px solid rgba(122, 184, 249, 0.1);
    }
    
    .FeaturesBox:last-child {
        border-radius: 0 0 20px 20px !important;
        border-bottom: 1px solid rgba(122, 184, 249, 0.1);
    }
    
    /* Reset tablet-specific borders on mobile */
    .FeaturesBox:nth-child(1),
    .FeaturesBox:nth-child(2),
    .FeaturesBox:nth-child(3),
    .FeaturesBox:nth-child(4),
    .FeaturesBox:nth-child(5),
    .FeaturesBox:nth-child(6) {
        border-radius: 0 !important;
    }
    
    .Boxes {
        flex-direction: column;
    }
    
    .titles {
        width: 100%;
        padding: 0 20px;
    }
    
    .titles h3 {
        font-size: 32px;
    }
    
    .titles h4 {
        font-size: 16px;
    }
    
    /* Tools Section - Mobile */
    #Tools {
        height: auto;
        padding: 60px 0;
        overflow-x: hidden;
    }
    
    .ToolsContent {
        gap: 60px;
        width: 100%;
        overflow-x: hidden;
    }
    
    .ToolContent {
        padding: 0 20px;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .ToolContent .Content {
        width: 100%;
        box-sizing: border-box;
    }
    
    .ToolContent img {
        width: 40%;
        max-width: 280px;
        height: auto;
    }
    
    .ToolContent h4 {
        font-size: 28px;
        word-wrap: break-word;
        line-height: 1.4;
    }
    
    .ToolContent h4 br {
        display: none;
    }
    
    .ToolContent p {
        font-size: 16px;
        margin-top: 15px;
        padding: 0 10px;
    }
    
    .ToolsBrandSlider {
        height: 120px;
        padding-top: 40px;
        width: 100%;
        overflow-x: hidden;
    }

    .images-about{
        margin-bottom: 0;
    }
    
    .brand {
        min-width: 100px;
        gap: 15px;
    }
    
    .brand img {
        width: 50px;
        height: auto;
    }
    
    .brand span {
        font-size: 14px;
    }
    
    /* Hide Contact button on mobile */
    .header-content > .btn-primary {
        display: none;
    }
    
    /* Header content layout adjustment */
    .header-content {
        flex-wrap: wrap;
        height: auto;
        min-height: 50px;
        padding: 10px 20px;
        transition: all 0.3s ease;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    /* Keep logo and hamburger at fixed vertical position */
    .logo {
        margin-top: 5px;
        flex-shrink: 0;
    }
    
    .hamburger {
        margin-top: 13px;
        flex-shrink: 0;
    }
    
    /* Mobile menu styling - expand within header */
    .menu {
        position: relative;
        order: 3;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        background-color: transparent;
        padding: 0 20px;
        transition: max-height 0.4s ease, padding 0.4s ease;
    }
    
    .menu.active {
        max-height: 400px;
        padding: 20px 20px 30px 20px;
    }
    
    .menu ul {
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin-top: 20px;
    }
    
    .menu ul li {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(122, 184, 249, 0.1);
    }
    
    .menu ul li:last-child {
        border-bottom: none;
    }
    
    .menu ul li a {
        display: block;
        padding: 15px 0;
        font-size: 16px;
        transition: padding-left 0.2s ease;
    }
    
    .menu ul li a:hover {
        padding-left: 10px;
    }
    
    .logo {
        width: 80px;
    }
    
    /* Hero Section Responsive */
    #hero {
        height: auto;
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 40px;
        overflow: hidden;
    }
    
    .Hero-content {
        margin-top: 40px;
    }
    
    .Hero-content .top {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .Hero-content .top h1 {
        font-size: 40px;
    }
    
    .Hero-content .top span img {
        width: 50px;
        height: auto;
    }
    
    .Hero-content .bottom h1 {
        font-size: 40px;
    }
    
    .Hero-titles h5 {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .Hero-titles {
        gap: 25px;
    }
    
    .btn-primary-xl {
        padding: 14px 35px;
        font-size: 15px;
    }
    
    .brands-slider {
        margin-top: 90px;
        height: 60px;
    }
    
    .brands {
        gap: 50px;
    }
    
    .brand-item {
        min-width: 80px;
    }
    
    .brand-item img {
        height: 30px;
    }
    
    /* Contact Section - Mobile */
    #Contact {
        height: auto;
        padding: 60px 0;
        overflow: hidden;
    }
    
    .ContactBox {
        flex-direction: column;
        height: auto;
        padding: 40px 20px;
        gap: 40px;
        box-sizing: border-box;
        overflow: hidden;
        width: 100%;
    }
    
    .contact-wrapper {
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        max-width: 100%;
    }
    
    .LeftContent {
        flex: 1;
        margin-left: 0;
        padding-right: 0;
        padding-left: 0;
        text-align: center;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
    }
    
    .LeftContent h4 {
        font-size: 28px;
        word-wrap: break-word;
        line-height: 1.3;
        padding: 0 10px;
    }
    
    .LeftContent p {
        font-size: 15px;
        padding: 0 10px;
    }
    
    .RightContent {
        flex: 1;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
    
        box-sizing: border-box;
    }
    
    .form-group {
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group textarea {
        width: 100%;
        box-sizing: border-box;
    }
    
    .ButtonMaxSize {
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Footer - Mobile */
    footer {
        height: auto;
        padding: 40px 0 30px 0;
    }
    
    .Footer-Wrapper {
        flex-direction: column;
        margin-top: 40px;
        gap: 40px;
    }
    
    .footer-left {
        width: 100%;
    }
    
    .footer-content {
        width: 100%;
        max-width: 100%;
    }
    
    .footer-right {
        width: 100%;
        flex-direction: column;
        gap: 30px;
    }
    
    .footerMenu {
        gap: 15px;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 30px;
        margin-top: 40px;
    }
    
    .contactInfos {
        flex-direction: column;
        gap: 20px;
    }
    
    .contacts {
        width: 100%;
        justify-content: flex-start;
    }
    
    .socials {
        justify-content: flex-start;
    }
}

@media screen and (max-width: 480px) {
    .header-content {
        min-height: 50px;
        padding: 12px 15px;
    }
    
    header {
        top: 5px;
    }
    
    .logo {
        width: 70px;
    }
    
    .menu {
        padding: 0 15px;
    }
    
    .menu.active {
        padding: 15px 15px 25px 15px;
    }
    
    .menu ul {
        margin-top: 15px;
    }
    
    .menu ul li a {
        padding: 12px 0;
        font-size: 15px;
    }
    
    .hamburger {
        width: 26px;
        height: 20px;
    }
    
    .hamburger span {
        height: 2.5px;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8.75px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8.75px) rotate(-45deg);
    }
    
    /* Hero Section Mobile */
    #hero {
        height: auto;
        min-height: auto;
        padding-top: 70px;
        padding-bottom: 30px;
        overflow: hidden;
    }
    
    .Hero-content {
        margin-top: 30px;
    }
    
    .Hero-content .top h1 {
        font-size: 32px;
    }
    
    .Hero-content .top span img {
        width: 40px;
    }
    
    .Hero-content .bottom h1 {
        font-size: 32px;
    }
    
    .Hero-titles h5 {
        font-size: 14px;
    }
    
    .btn-primary-xl {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .brands-slider {
        margin-top: 40px;
        height: 50px;
    }
    
    .brands {
        gap: 40px;
    }
    
    .brand-item {
        min-width: 70px;
    }
    
    .brand-item img {
        height: 28px;
    }
    
    /* Apps Section Responsive */
    #Apps {
        height: auto;
        min-height: 100vh;
        padding: 80px 0 60px 0;
    }
    
    #Apps .innerContainer {
        gap: 60px;
    }
    
    .heading {
        margin-top: 60px;
        gap: 20px;
        padding: 0 20px;
    }
    
    .heading-content {
        width: 100%;
    }
    
    .heading-content h3 {
        font-size: 40px;
    }
    
    .heading-content h4 {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .badge {
        padding: 6px 15px;
        font-size: 14px;
    }
    
    .badge img {
        width: 18px;
        height: 18px;
    }
    
    .Buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        padding: 0 20px;
    }
    
    .Button {
        width: 100%;
        padding: 14px 30px;
    }
    
    .AppSlider {
        padding: 0 20px;
    }
    
    .AppBox {
        width: 260px;
        min-width: 260px;
        max-width: 260px;
        padding: 25px 18px;
    }
    
    /* Tools Section - Small Mobile */
    #Tools {
        height: auto;
        padding: 40px 0;
        overflow-x: hidden;
    }
    
    .ToolsContent {
        gap: 40px;
        width: 100%;
        overflow-x: hidden;
    }
    
    .ToolContent {
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .ToolContent .Content {
        width: 100%;
        box-sizing: border-box;
        padding: 0;
    }
    
    .ToolContent img {
        width: 100%;
        max-width: 220px;
    }
    
    .ToolContent h4 {
        font-size: 22px;
        line-height: 1.4;
        word-wrap: break-word;
        padding: 0 5px;
    }
    
    .ToolContent h4 br {
        display: none;
    }
    
    .ToolContent p {
        font-size: 14px;
        margin-top: 10px;
        padding: 0 5px;
    }
    
    .ToolsBrandSlider {
        height: 100px;
        padding-top: 30px;
        width: 100%;
        overflow-x: hidden;
    }
    
    .brand {
        min-width: 80px;
        gap: 10px;
    }
    
    .brand img {
        width: 40px;
        height: auto;
    }
    
    .brand span {
        font-size: 12px;
    }
    
    /* Contact Section - Small Mobile */
    #Contact {
        padding: 40px 0;
        overflow: hidden;
    }
    
    .titles {
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .titles h3 {
        font-size: 26px;
        word-wrap: break-word;
    }
    
    .titles h4 {
        font-size: 14px;
        word-wrap: break-word;
    }
    
    .ContactBox {
        padding: 30px 15px;
        gap: 30px;
        box-sizing: border-box;
        overflow: hidden;
        width: 100%;
    }

    
    .contact-wrapper {
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        padding: 0;
        max-width: 100%;
    }
    
    .LeftContent {
        width: 100%;
        box-sizing: border-box;
        padding: 0 5px;
    }
    
    .LeftContent h4 {
        font-size: 24px;
        word-wrap: break-word;
        line-height: 1.4;
    }
    
    .LeftContent p {
        font-size: 14px;
        word-wrap: break-word;
    }
    
    .RightContent {
        width: 100%;
        box-sizing: border-box;
        padding: 0;
       
    }
    
    .form-group {
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group textarea {
        padding: 15px;
        font-size: 14px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-group input[type="submit"] {
        padding: 15px;
        font-size: 14px;
        width: 100%;
        box-sizing: border-box;
    }
    
    
    /* Footer - Small Mobile */
    footer {
        padding: 30px 0 20px 0;
    }
    
    .Footer-Wrapper {
        margin-top: 30px;
        gap: 30px;
    }
    
    .footer-content {
        gap: 15px;
    }
    
    .footer-content p {
        font-size: 14px;
    }
    
    .footer-content span {
        font-size: 12px;
    }
    
    .footer-left img {
        width: 80px;
    }
    
    .footerMenu {
        gap: 12px;
    }
    
    .footerMenu p {
        font-size: 14px;
    }
    
    .smalltitle {
        font-size: 12px;
    }
    
    .footer-contact {
        margin-top: 30px;
        gap: 25px;
    }
    
    .contactInfos {
        gap: 15px;
    }
    
    .contacts {
        gap: 8px;
    }
    
    .contacts p {
        font-size: 13px;
    }
    
    .contactIcon {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }
    
    .contactIcon img {
        width: 16px;
        height: 16px;
    }
}

@media screen and (max-width: 768px) and (min-width: 481px) {
    /* Apps Section Tablet */
    #Apps {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 80px 0;
    }
    
    #Apps .innerContainer {
        gap: 80px;
    }
    
    .heading {
        margin-top: 80px;
    }
    
    .heading-content {
        width: 90%;
    }
    
    .heading-content h3 {
        font-size: 56px;
    }
    
    .heading-content h4 {
        font-size: 17px;
    }
    
    .Buttons {
        flex-direction: row;
        gap: 15px;
    }
    
    .Button {
        padding: 15px 32px;
    }
    
    /* Tools Section - Tablet (481-768px) */
    #Tools {
        height: auto;
        padding: 80px 0;
        overflow-x: hidden;
    }
    
    .ToolsContent {
        width: 100%;
        overflow-x: hidden;
    }
    
    .ToolContent {
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
        padding: 0 30px;
    }
    
    .ToolContent .Content {
        width: 100%;
        box-sizing: border-box;
    }
    
    .ToolContent h4 {
        font-size: 34px;
        word-wrap: break-word;
        line-height: 1.3;
        padding: 0 10px;
    }
    
    .ToolContent h4 br {
        display: inline;
    }
    
    .ToolContent p {
        font-size: 17px;
        padding: 0 10px;
    }
    
    .ToolContent img {
        width: 30%;
        max-width: 300px;
    }
    
    .ToolsBrandSlider {
        height: 130px;
        padding-top: 45px;
        width: 100%;
        overflow-x: hidden;
    }
    
    .brand {
        min-width: 110px;
    }
    
    .brand img {
        width: 50px;
    }
    
    .brand span {
        font-size: 15px;
    }
    
    /* Contact Section - Tablet (481-768px) */
    #Contact {
        height: auto;
        padding: 70px 0;
        overflow: hidden;
    }
    
    .ContactBox {
        height: auto;
        min-height: 450px;
        padding: 40px 25px;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .contact-wrapper {
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        max-width: 100%;
    }
    
    .LeftContent {
        width: 100%;
        box-sizing: border-box;
        margin-left: 30px;
        padding-right: 20px;
    }
    
    .LeftContent h4 {
        font-size: 36px;
        word-wrap: break-word;
        line-height: 1.3;
    }
    
    .LeftContent p {
        font-size: 16px;
    }
    
    .RightContent {
        width: 100%;
        box-sizing: border-box;
        padding-left: 20px;
    }
    
    .form-group {
        width: 85%;
        max-width: 100%;
        box-sizing: border-box;
    }
}