@font-face {
    font-family: 'Netmarble';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_four@1.1/netmarbleL.woff') format('woff');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Netmarble';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_four@1.1/netmarbleM.woff') format('woff');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Netmarble';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_four@1.1/netmarbleB.woff') format('woff');
    font-weight: 700;
    font-display: swap;
}

@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.min.css");


@font-face {
    font-family: 'Paperlogy-6SemiBold';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-6SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

:root {
    --main-margin: 100px;
    --sub-margin: 280px;
}

* {
  font-family: "Pretendard Variable";
}

html,
body {
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  background-color: black;
}

html {
  scroll-behavior: smooth;
}

.floating {
  position: fixed;
  bottom: 35px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  z-index: 98;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
}

.floating.show {
  opacity: 1;
  visibility: visible;
}

.floating > a > .gotoTop {
  display: flex;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  text-align: center;
  line-height: 60px;
  color: black;
  background: #7ea8e2;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}


.floating > a > .gotoTop > img {
  width: 20px;
}


.cursor {
    width: 15px;
    height: 15px;
    background-color: #55ffc6;
    border-radius: 100%;
    position: fixed;
    z-index: 999;
    transition: none;
    will-change: transform;
    pointer-events: none;
    transform: translate3d(0, 0, 0);
}





.navigation {
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    z-index: 99;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
}

.navigation.sticky {
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.656);
}

.navigation > .container {
    min-width: 1440px;
    height: 100%;
    margin: 0 var(--main-margin);
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    justify-content: flex-start;
}

.navigation > .container > .iconLine {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
}

.navigation > .container > .iconLine > img {
  width: 55px;
}

.navigation > .container > .iconLine > p {
    font-family: 'Netmarble';
    font-weight: 700;
    font-size: 36px;
    color: white;
}

.navigation > .container > .navLine {
    margin-left: 55px;
    height: 100%;
    display: flex;
    flex-direction: row;
    gap: 3rem;
    align-items: center;
}

.navigation > .container > .navLine > a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.navigation > .container > .navLine > a::after {
    content: '';
    width: 100%;
    height: 1px;
    background-color: white;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: all 0.3s;
}

.navigation > .container > .navLine > a:hover::after {
    opacity: 1;
}

.navigation > .container > .navLine > a:hover {
}



section {
    display: flex;
    align-items: center;
    justify-content: center;
}

section > .container {
    min-width: 1440px;
}

.topGradient {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.topGradient > .container > img {
    width: 100%;
}

.textBox {
    position: relative;
    z-index: 50;
}



section > .container > .contentLine > .textBox.topText {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

section > .container > .contentLine > .textBox.topText > .mainText {
    display: flex;
    flex-direction: column;

}

section > .container > .contentLine > .textBox.topText > .mainText > p {
    margin: 0;
    color: white;
    text-align: center;
    font-size: 50px;
    font-weight: bold;
}

section > .container > .contentLine > .textBox.topText > .subText {

}

section > .container > .contentLine > .textBox.topText > .subText > p {
    margin: 0;
    color: #CCCCD2;
    text-align: center;
    font-size: 18px;
    line-height: 1.5;
}



#section1 {
    width: 100%;
    height: 100vh;
    background-color: black;
}

#section1 > .container {
    height: 100%;
    margin: 0 var(--main-margin);
}

#section1 > .container > .contentLine {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

#section1 > .container > .contentLine > .textBox {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

#section1 > .container > .contentLine > .textBox > .mainText {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}

#section1 > .container > .contentLine > .textBox > .mainText > p {
    color: white;
    font-size: 80px;
    font-weight: bold;
    margin: 0;
}

#section1 > .container > .contentLine > .textBox > .mainText > .dot {
    width: 15px;
    height: 15px;
    background-color: #55ffc6;
    border-radius: 100%;
    position: relative;
    bottom: 10px;
    left: 10px;
}

#section1 > .container > .contentLine > .textBox > .subText {
}

#section1 > .container > .contentLine > .textBox > .subText > p {
    color: #CCCCD2;
    margin: 0;
    line-height: 1.5;
    font-size: 20px;
}






#section2 {
    background-color: #00277e;
    width: 100%;
}

#section2 > .container {
    margin: 0 var(--main-margin);
    padding: 100px 0;
}

#section2 > .container > .contentLine {
}

#section2 > .container > .contentLine > .boxList {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin-top: 5rem;
    align-items: center;
    justify-content: center;
}


@-webkit-keyframes glow {
    100% {
        transform: translate(-50%, -50%) rotate(225deg);
    }
}


@keyframes glow {
    100% {
        transform: translate(-50%, -50%) rotate(225deg);
    }
}


#section2 > .container > .contentLine > .boxList > .box {
    width: 300px;
    height: 300px;
    padding: 1px;
    background-color: #2D458C;
    background-size: 150%;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    justify-content: flex-start;
    gap: 1rem;
    box-shadow: 0 0 40px 10px rgb(0 0 0 / 22%);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}


#section2 > .container > .contentLine > .boxList > .box:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    height: 600px;
    width: 50px;
    background: #dfdfdf;
    box-shadow: 0 0 10px white,
    0 0 40px white,
    0 0 80px white;
    -webkit-animation: glow 5s linear infinite;
            animation: glow 5s linear infinite;
    z-index: 19;
    transition: all 0.3s;
}


#section2 > .container > .contentLine > .boxList > .box:hover:after {
    background: #2D8BE1;
    box-shadow: 0 0 10px #2D8BE1,
    0 0 40px #2D8BE1,
    0 0 80px #2D8BE1;
}

#section2 > .container > .contentLine > .boxList > .box:hover {
    transform: scale(1.05);
}

#section2 > .container > .contentLine > .boxList > .box > .innerBox {
    height: 100%;
    background: #2C448B;
    background-size: 150%;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    z-index: 20;
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

#section2 > .container > .contentLine > .boxList > .box:hover > .innerBox {
    background: url(img/resource/Gradient2.webp);
    background-size: 150%;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

#section2 > .container > .contentLine > .boxList > .box > .innerBox > .icon {
}

#section2 > .container > .contentLine > .boxList > .box > .innerBox > .icon > img {
    width: 40px;
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
    transition: all 0.3s;
}

#section2 > .container > .contentLine > .boxList > .box:hover > .innerBox > .icon > img {
    -webkit-filter: grayscale(0%);
            filter: grayscale(0%);
}

#section2 > .container > .contentLine > .boxList > .box > .innerBox > .mainText {
}

#section2 > .container > .contentLine > .boxList > .box > .innerBox > .mainText > p {
    margin: 0;
    color: #D0D3E0;
    font-size: 28px;
    font-weight: bold;
    line-height: 1.4;
    transition: all 0.3s;
}

#section2 > .container > .contentLine > .boxList > .box:hover > .innerBox > .mainText > p {
    color: white;
}


#section2 > .container > .contentLine > .boxList > .box > .innerBox > .subText {

}

#section2 > .container > .contentLine > .boxList > .box > .innerBox > .subText > p {
    margin: 0;
    color: #D0D3E0;
    font-size: 15px;
    line-height: 1.4;
    transition: all 0.3s;
    word-break: keep-all;
}

#section2 > .container > .contentLine > .boxList > .box:hover > .innerBox > .subText > p {
    color: white;
}







#section3 {
    background-color: #0e0c37;
}

#section3 > .container {
    margin: 0 var(--main-margin);
    padding: 100px 0;
}

#section3 > .container > .contentLine {

}

#section3 > .container > .contentLine > .contentBox {
    display: flex;
    flex-direction: row;
    margin-top: 5rem;
    justify-content: center;
    align-items: center;
    gap: 5rem;
}

#section3 > .container > .contentLine > .contentBox > .left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

#section3 > .container > .contentLine > .contentBox > .left > .selectList {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

#section3 > .container > .contentLine > .contentBox > .left > .selectList > .selectBox {
    width: 450px;
    height: 100px;
    border: 2px solid #11a9dd;
    border-radius: 10px;
    padding: 40px 22px;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.3s ease, height 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

#section3 > .container > .contentLine > .contentBox > .left > .selectList > .selectBox:hover {
    background-color: #4EA6D8;
}

#section3 > .container > .contentLine > .contentBox > .left > .selectList > .selectBox > .clickedContent {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#section3 > .container > .contentLine > .contentBox > .left > .selectList > .selectBox > .title {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

#section3 > .container > .contentLine > .contentBox > .left > .selectList > .selectBox > .title > p {
    color: #56d4ff;
    margin: 0;
    font-size: 27px;
    font-weight: bold;
    transition: all 0.3s;
}

#section3 > .container > .contentLine > .contentBox > .left > .selectList > .selectBox:hover > .title > p {
    color: white;
}

#section3 > .container > .contentLine > .contentBox > .left > .selectList > .selectBox > .title > .arrow {

}

#section3 > .container > .contentLine > .contentBox > .left > .selectList > .selectBox > .title > .arrow > span {
    color: black;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background-color: #56d4ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

#section3 > .container > .contentLine > .contentBox > .left > .selectList > .selectBox > .title > .arrow > span > svg {
    width: 15px;
    height: 15px;
    fill: #000000;
    transition: all 0.3s;
}

#section3 > .container > .contentLine > .contentBox > .left > .selectList > .selectBox:hover > .title > .arrow > span > svg {
    fill: #ffffff;
}


#section3 > .container > .contentLine > .contentBox > .left > .selectList > .selectBox.selected {
    background-color: #11a9dd;
    height: 200px;
}

#section3 > .container > .contentLine > .contentBox > .left > .selectList > .selectBox.selected > .title {
    display: none;
}
#section3 > .container > .contentLine > .contentBox > .left > .selectList > .selectBox.selected > .clickedContent {
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0);
}

#section3 > .container > .contentLine > .contentBox > .left > .selectList > .selectBox.selected > .clickedContent > p {
    margin: 0;
    color: white;
}

#section3 > .container > .contentLine > .contentBox > .left > .selectList > .selectBox.selected > .clickedContent > p.subT {
    font-size: 16px;
    font-weight: 600;
}

#section3 > .container > .contentLine > .contentBox > .left > .selectList > .selectBox.selected > .clickedContent > p.mainT {
    font-size: 27px;
    font-weight: bold;
    margin-top: 0.5rem;
}

#section3 > .container > .contentLine > .contentBox > .left > .selectList > .selectBox.selected > .clickedContent > p.infoT {
    font-size: 14.5px;
    line-height: 1.3;
    margin-top: 1rem;
}




#section3 > .container > .contentLine > .contentBox > .right {
    position: relative;
    width: 600px;
    height: 700px;
}

#section3 > .container > .contentLine > .contentBox > .right > .imgList {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    height: 100%;
}

#section3 > .container > .contentLine > .contentBox > .right > .imgList > .imgBox {
    width: 600px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

#section3 > .container > .contentLine > .contentBox > .right > .imgList > .imgBox.active {
    opacity: 1;
}

#section3 > .container > .contentLine > .contentBox > .right > .imgList > .imgBox > img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}





#section4 {
    background-image: url(img/main/sec4/Gradient.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#section4 > .container {
    margin: 0 var(--main-margin);
    padding: 100px 0;
}

#section4 > .container > .contentLine {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7rem;
    margin-top: 5rem;
}

#section4 > .container > .contentLine > .mainBox {
    width: 100%;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

#section4 > .container > .contentLine > .mainBox > .mainText {
    
}

#section4 > .container > .contentLine > .mainBox > .mainText > p {
    margin: 0;
    color: white;
    font-size: 50px;
    font-weight: bold;
    line-height: 1.4;
    text-align: center;

}

#section4 > .container > .contentLine > .mainBox > .mainText > p > span {
    color: #77dcff;
}

#section4 > .container > .contentLine > .mainBox > .brandIcons {
    width: 100%;
    height: 100%;
    position: absolute;
}

#section4 > .container > .contentLine > .mainBox > .brandIcons > .iconBox {
    width: 200px;
    height: 200px;
    padding: 1px;
    background-color: #0e0c37;
    border-radius: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    justify-content: flex-start;
    gap: 1rem;
    box-shadow: 0 0 40px 10px rgb(0 0 0 / 22%);
    transition: all 0.3s;
    overflow: hidden;
    position: absolute;
}


@-webkit-keyframes updown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(0);
    }
}


@keyframes updown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(0);
    }
}


@-webkit-keyframes updownMob {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0);
    }
}


@keyframes updownMob {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0);
    }
}


#section4 > .container > .contentLine > .mainBox > .brandIcons > .iconBox:nth-child(1) {
    left: -100px;
    top: 30%;
    -webkit-animation: updown 5s ease-in-out infinite;
            animation: updown 5s ease-in-out infinite;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
}

#section4 > .container > .contentLine > .mainBox > .brandIcons > .iconBox:nth-child(2) {
    left: 150px;
    top: -5%;
    -webkit-animation: updown 5s ease-in-out infinite;
            animation: updown 5s ease-in-out infinite;
    -webkit-animation-delay: 0.7s;
            animation-delay: 0.7s;
}

#section4 > .container > .contentLine > .mainBox > .brandIcons > .iconBox:nth-child(3) {
    left: 43%;
    top: -15%;
    -webkit-animation: updown 5s ease-in-out infinite;
            animation: updown 5s ease-in-out infinite;
    -webkit-animation-delay: 1.4s;
            animation-delay: 1.4s;
}

#section4 > .container > .contentLine > .mainBox > .brandIcons > .iconBox:nth-child(4) {
    right: 150px;
    top: -5%;
    -webkit-animation: updown 5s ease-in-out infinite;
            animation: updown 5s ease-in-out infinite;
    -webkit-animation-delay: 2.1s;
            animation-delay: 2.1s;
}

#section4 > .container > .contentLine > .mainBox > .brandIcons > .iconBox:nth-child(5) {
    right: -100px;
    top: 30%;
    -webkit-animation: updown 5s ease-in-out infinite;
            animation: updown 5s ease-in-out infinite;
    -webkit-animation-delay: 2.8s;
            animation-delay: 2.8s;
}

#section4 > .container > .contentLine > .mainBox > .brandIcons > .iconBox:nth-child(6) {
    right: 120px;
    top: 70%;
    -webkit-animation: updown 5s ease-in-out infinite;
            animation: updown 5s ease-in-out infinite;
    -webkit-animation-delay: 3.5s;
            animation-delay: 3.5s;
}

#section4 > .container > .contentLine > .mainBox > .brandIcons > .iconBox:nth-child(7) {
    left: 120px;
    top: 70%;
    -webkit-animation: updown 5s ease-in-out infinite;
            animation: updown 5s ease-in-out infinite;
    -webkit-animation-delay: 4.2s;
            animation-delay: 4.2s;
}



#section4 > .container > .contentLine > .mainBox > .brandIcons > .iconBox:hover {
    transform: scale(1.05);
}

#section4 > .container > .contentLine > .mainBox > .brandIcons > .iconBox::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    height: 600px;
    width: 50px;
    background: #dfdfdf;
    box-shadow: 0 0 10px white,
    0 0 40px white,
    0 0 80px white;
    -webkit-animation: glow 5s linear infinite;
            animation: glow 5s linear infinite;
    z-index: 19;
    transition: all 0.3s;
}

#section4 > .container > .contentLine > .mainBox > .brandIcons > .iconBox > .imgWrapper {
    height: 100%;
    background: #0e0c37;
    background-size: 150%;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 100%;
    padding: 2rem;
    position: relative;
    z-index: 20;
    display: flex;
    gap: 1rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#section4 > .container > .contentLine > .mainBox > .brandIcons > .iconBox > .imgWrapper > img {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}


#section4 > .container > .contentLine > .sliderLine {
    width: 1200px;
}

#section4 > .container > .contentLine > .sliderLine > .sec4Swiper {
    overflow: visible;
}

#section4 > .container > .contentLine > .sliderLine > .sec4Swiper > .swiper-wrapper {
}

#section4 > .container > .contentLine > .sliderLine > .sec4Swiper > .swiper-wrapper > .swiper-slide {
}

#section4 > .container > .contentLine > .sliderLine > .sec4Swiper > .swiper-wrapper > .swiper-slide > .imgWrapper {
    width: 100%;
    position: relative;
}


#section4 > .container > .contentLine > .sliderLine > .sec4Swiper > .swiper-wrapper > .swiper-slide > .imgWrapper > .hoverContent {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.641);
    padding: 1rem;
    border-radius: 10px;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    transition: all 0.3s;
    display: none;
}

#section4 > .container > .contentLine > .sliderLine > .sec4Swiper > .swiper-wrapper > .swiper-slide > .imgWrapper:hover > .hoverContent {
    opacity: 0;
}

#section4 > .container > .contentLine > .sliderLine > .sec4Swiper > .swiper-wrapper > .swiper-slide > .imgWrapper > .hoverContent > p {
    margin: 0;
}
#section4 > .container > .contentLine > .sliderLine > .sec4Swiper > .swiper-wrapper > .swiper-slide > .imgWrapper > .hoverContent > p.mainT {
    font-size: 20px;
    font-weight: bold;
    color: white;
}

#section4 > .container > .contentLine > .sliderLine > .sec4Swiper > .swiper-wrapper > .swiper-slide > .imgWrapper > .hoverContent > p.subT {
    font-size: 16px;
    font-weight: 400;
    color: white;
}


#section4 > .container > .contentLine > .sliderLine > .sec4Swiper > .swiper-wrapper > .swiper-slide > .imgWrapper > .imgBox {
    width: 100%;
    border-radius: 10px;
}

#section4 > .container > .contentLine > .sliderLine > .sec4Swiper > .swiper-wrapper > .swiper-slide > .imgWrapper > .imgBox > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}


#section4 > .container > .contentLine > .sliderLine > .sec4Swiper > .swiper-button-prev {
    color: white;
    left: -50px;
}

#section4 > .container > .contentLine > .sliderLine > .sec4Swiper > .swiper-button-next {
    color: white;
    right: -50px;
}







#section5 {
    background-color: #0e0c37;
    position: relative;
    overflow: hidden;
}

#section5 > .gradBox {
    width: 100%;
    position: absolute;
}

#section5 > .gradBox > img {
    width: 100%;
}

#section5 > .container {
    padding: 100px 0;
    margin: 0 var(--main-margin);
}

#section5 > .container > .contentLine {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5rem;
}

#section5 > .container > .contentLine > .sliderLine {
    width: 1200px;
    padding: 50px 0;
    margin: -50px 0;
}

#section5 > .container > .contentLine > .sliderLine > .sec5Swiper { 
    width: 100%;
    padding: 50px 0;
    margin: -50px 0;
}

#section5 > .container > .contentLine > .sliderLine > .sec5Swiper > .swiper-wrapper { 
    padding: 0;
    margin: 0;
}
#section5 > .container > .contentLine > .sliderLine > .sec5Swiper > .swiper-wrapper > .swiper-slide { 
    height: auto;
}

#section5 > .container > .contentLine > .sliderLine > .sec5Swiper > .swiper-wrapper > .swiper-slide > .cardBox { 
    position: relative;
    perspective: 1000px;
    cursor: pointer;
}

#section5 > .container > .contentLine > .sliderLine > .sec5Swiper > .swiper-wrapper > .swiper-slide > .cardBox > .imgBox { 
    position: relative;
    width: 100%;
    height: 500px;
    transform-style: preserve-3d;
    transition: transform 0.6s ease-in-out;
    border-radius: 10px;
    box-shadow: 0 0 10px 10px rgb(0 0 0 / 22%);
}

#section5 > .container > .contentLine > .sliderLine > .sec5Swiper > .swiper-wrapper > .swiper-slide > .cardBox > .imgBox > .front { 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    transform: rotateY(0deg);
}

#section5 > .container > .contentLine > .sliderLine > .sec5Swiper > .swiper-wrapper > .swiper-slide > .cardBox > .imgBox > .front > img { 
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px;
}

#section5 > .container > .contentLine > .sliderLine > .sec5Swiper > .swiper-wrapper > .swiper-slide > .cardBox > .imgBox > .back { 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    transform: rotateY(180deg);
}

#section5 > .container > .contentLine > .sliderLine > .sec5Swiper > .swiper-wrapper > .swiper-slide > .cardBox > .imgBox > .back > img { 
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px;
}

#section5 > .container > .contentLine > .sliderLine > .sec5Swiper > .swiper-wrapper > .swiper-slide > .cardBox:hover > .imgBox {
    transform: rotateY(180deg);
}






#section6 {
    background-color: #1f2170;
}

#section6 > .container {
    padding: 100px 0;
    margin: 0 var(--main-margin);
}

#section6 > .container > .contentLine {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5rem;
}

#section6 > .container > .contentLine > .boxList {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

#section6 > .container > .contentLine > .boxList > .box {
    width: 100%;
    padding: 1px;
    background-color: #36387B;
    background-size: 150%;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    justify-content: flex-start;
    gap: 1rem;
    box-shadow: 0 0 20px 10px rgb(0 0 0 / 22%);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

#section6 > .container > .contentLine > .boxList > .box:hover {
    transform: scale(1.05);
}



#section6 > .container > .contentLine > .boxList > .box::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    height: 600px;
    width: 100px;
    background: #dfdfdf;
    box-shadow: 0 0 10px white,
    0 0 40px white,
    0 0 80px white;
    -webkit-animation: glow 5s linear infinite;
            animation: glow 5s linear infinite;
    z-index: 19;
    transition: all 0.3s;
}

#section6 > .container > .contentLine > .boxList > .box:hover:after {
    background: #36387B;
    box-shadow: 0 0 10px #36387B,
    0 0 40px #36387B,
    0 0 80px #36387B;
}

#section6 > .container > .contentLine > .boxList > .box > .boxWrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 1.5rem 2rem;
    box-sizing: border-box;
    gap: 2rem;
    width: 100%;
    height: 100%;
    background: #36387B;
    position: relative;
    z-index: 20;
}

#section6 > .container > .contentLine > .boxList > .box:hover > .boxWrapper {
    background: url(img/resource/Gradient2.webp);
    background-size: 150%;
    background-position: 30% 40%;
    background-repeat: no-repeat;
    cursor: pointer;
}

#section6 > .container > .contentLine > .boxList > .box > .boxWrapper > .left {
    
}

#section6 > .container > .contentLine > .boxList > .box > .boxWrapper > .left > .icon {
    
}

#section6 > .container > .contentLine > .boxList > .box > .boxWrapper > .left > .icon > img {
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
    transition: all 0.3s;
}

#section6 > .container > .contentLine > .boxList > .box:hover > .boxWrapper > .left > .icon > img {
    -webkit-filter: grayscale(0%);
            filter: grayscale(0%);
}



#section6 > .container > .contentLine > .boxList > .box > .boxWrapper > .right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
}

#section6 > .container > .contentLine > .boxList > .box > .boxWrapper > .right > p {
    margin: 0;
}

#section6 > .container > .contentLine > .boxList > .box > .boxWrapper > .right > .mainT {
    font-size: 25px;
    color: #dfdfdf;
    font-weight: bold;
    transition: all 0.3s;
}
#section6 > .container > .contentLine > .boxList > .box:hover > .boxWrapper > .right > .mainT {
    color: white;
}

#section6 > .container > .contentLine > .boxList > .box > .boxWrapper > .right > .subT {
    font-size: 15px;
    color: #dfdfdf;
    transition: all 0.3s;
}

#section6 > .container > .contentLine > .boxList > .box:hover > .boxWrapper > .right > .subT {
    color: white;
}





#section7 {
    background-color: #0E0C35;
}

#section7 > .container {
    padding: 100px 0;
    margin: 0 var(--main-margin);
}

#section7 > .container > .contentLine {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


#section7 > .container > .contentLine > .contact-form {
    width: 80%;
    padding: 40px;
    border-radius: 20px;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
}

#section7 > .container > .contentLine > .contact-form > .form-group {
    margin-bottom: 30px;
}

#section7 > .container > .contentLine > .contact-form > .form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

#section7 > .container > .contentLine > .contact-form > .form-row > .form-group {
    flex: 1;
    margin-bottom: 0;
}

#section7 > .container > .contentLine > .contact-form  label {
    display: flex;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    flex-direction: row;
    align-items: center;
}

#section7 > .container > .contentLine > .contact-form  .required {
    color: #ff6b6b;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-bottom-color: #4facfe;
}

.form-input::-webkit-input-placeholder, .form-textarea::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input::-moz-placeholder, .form-textarea::-moz-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input:-ms-input-placeholder, .form-textarea:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input::-ms-input-placeholder, .form-textarea::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}


.project-type-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.project-type-btn {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.project-type-btn:hover {
    background: rgba(79, 172, 254, 0.1);
}

.project-type-btn.selected,
.project-type-btn.active {
    
    background: #3E3D5D;
    color: #ffffff;
    
}


.privacy-consent {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    display: block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #3E3D5D;
    border-color: transparent;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
}

.details-link {
    color: #4facfe;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.details-link:hover {
    color: #00f2fe;
}


.buttonBox {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}


.submit-btn {
    width: 40%;
    padding: 18px 0;
    background: linear-gradient(135deg, #2F5DB6 0%, #8599c3 100%);
    border: none;
    border-radius: 50px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}




.mobileNav {
    display: none;
}

.mobileLangToggle {
    display: none;
}



/* Language Toggle Styles */
.languageToggle {
    margin-left: auto;
    position: relative;
}

.langBtn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: white;
    padding: 8px 15px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}

.langBtn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.langArrow {
    font-size: 10px;
    transition: transform 0.3s;
}

.langBtn.active .langArrow {
    transform: rotate(180deg);
}

.langDropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
    margin-top: 5px;
}

.langDropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.langOption {
    background: transparent;
    border: none;
    color: white;
    padding: 10px 15px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.langOption:hover {
    background: rgba(255, 255, 255, 0.1);
}

.langOption:first-child {
    border-radius: 10px 10px 0 0;
}

.langOption:last-child {
    border-radius: 0 0 10px 10px;
}

/* Mobile Language Toggle */
.mobileLangToggle {
    margin-top: 2rem;
}

.mobileLangBtn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.mobileLangBtn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.mobileLangArrow {
    font-size: 12px;
    transition: transform 0.3s;
}

.mobileLangBtn.active .mobileLangArrow {
    transform: rotate(180deg);
}

.mobileLangDropdown {
    margin-top: 10px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
}

.mobileLangDropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobileLangDropdown .langOption {
    padding: 12px 20px;
    font-size: 16px;
}





footer {
    width: 100%;
    background-color: #050B22;
    padding: 60px 0;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer .container {
    width: 100%;
    padding: 0 150px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

footer .infoBox p {
    margin: 0;
}

footer .infoBox p.headT {
    font-size: 20px;
    font-weight: 600;
}
footer .infoBox p.subT {
    font-size: 14px;
    color: #999999;
}
footer .infoBox p.subT:nth-child(2) {
    margin-top: 10px;
}


footer .container > .top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

footer .container > .top > .left {

}

footer .container > .top > .right {

}

footer .container > .bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

footer .container > .bottom > .left {
}

footer .container > .bottom > .right {
    display: flex;
    flex-direction: column;
}

footer .container > .bottom > .right > .contactBox {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
}


footer .container > .bottom > .right > .contactBox > .linkBox {
    display: flex;
    flex-direction: row;
    gap: 30px;
}
footer .container > .bottom > .right > .contactBox > .linkBox > a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

footer .container > .bottom > .right > .contactBox > .linkBox > a:hover {
    color: #00f2fe;
}

footer .container > .bottom > .right > .contactBox > p {
    margin: 0;
}

footer .container > .bottom > .right > .contactBox > p.subT {
    font-size: 14px;
    color: #999999;
}

footer .container > .bottom > .right > .contactBox > p.subT:nth-child(2) {
    margin-top: 10px;
}





@media all and (max-width: 1600px) {
    .navigation > .container {
        min-width: 1200px;
    }

    section > .container {
        min-width: 1200px;
    }
}


@media all and (max-width: 1366px) {
    .navigation > .container {
        min-width: 1000px;
    }

    section > .container {
        min-width: 1000px;
    }
}


@media all and (max-width: 884px) {
    .cursor {
        display: none !important;
        opacity: 0 !important;
    }

    .navigation {
        display: none;
    }

    .mobileNav {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 80px;
        z-index: 99;
        transition: all 0.3s;
    }
    .mobileNav.sticky {
        -webkit-backdrop-filter: blur(10px);
                backdrop-filter: blur(10px);
        background-color: rgba(0, 0, 0, 0.656);
    }
    
    .mobileNav > .container {
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 40px;
    }

    .mobileNav > .container > .iconLine {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }

    .mobileNav > .container > .iconLine > img {
        width: 40px;
    }
    
    .mobileNav > .container > .iconLine > p {
        font-family: 'Paperlogy-6SemiBold';
        font-size: 30px;
        color: white;
        letter-spacing: 5px;
    }

    .hamburger {
        width: 30px;
        height: 25px;
        position: relative;
        cursor: pointer;
        z-index: 100;
    }
    
    .hamburger span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: white;
        position: absolute;
        left: 0;
        transition: all 0.3s ease;
    }
    
    .hamburger span:nth-child(1) {
        top: 0;
    }
    
    .hamburger span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }
    
    .hamburger span:nth-child(3) {
        bottom: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 50%;
        margin-top: -1.5px;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg);
        bottom: 50%;
        margin-bottom: -1.5px;
    }
    
    .mobileMenu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        -webkit-backdrop-filter: blur(15px);
                backdrop-filter: blur(15px);
        transition: right 0.4s ease;
        z-index: 98;
    }
    
    .mobileMenu.active {
        right: 0;
    }
    
    .mobileMenuContent {
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4rem;
        padding: 80px 20px 20px;
    }
    
    .mobileLogo {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .mobileLogo img {
        width: 80px;
    }
    
    .mobileLogo p {
        font-family: 'Paperlogy-6SemiBold';
        font-size: 28px;
        color: white;
        letter-spacing: 3px;
        margin: 0;
    }
    
    .mobileNavLinks {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .mobileNavLinks a {
        color: white;
        text-decoration: none;
        font-size: 24px;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
        padding: 10px 0;
    }
    
    .mobileNavLinks a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background-color: #55ffc6;
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }
    
    .mobileNavLinks a:hover::after {
        width: 100%;
    }
    
    .mobileNavLinks a:hover {
        color: #55ffc6;
    }

    section > .container {
        min-width: initial;
    }

    #section1 > .container > .contentLine {
        justify-content: center;
    }
    

    #section1 > .container > .contentLine > .textBox {
        gap: 3rem;
    }
    #section1 > .container > .contentLine > .textBox > .mainText > p {
        font-size: 65px;
    }

    #section1 > .container,
    #section2 > .container,
    #section4 > .container {
        margin: 0 20px;
        padding: 80px 0;
        min-width: 767px;
    }

    #section2 > .container > .contentLine > .boxList {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    section > .container > .contentLine > .textBox.topText > .mainText > p,
    #section4 > .container > .contentLine > .mainBox > .mainText > p {
        font-size: 45px;
        word-break: keep-all;
        line-height: 1.2;
    }

    section > .container > .contentLine > .textBox.topText > .subText > p {
        word-break: keep-all;
    }

    #section3 > .container > .contentLine > .contentBox {
        gap: 0;
        flex-direction: column;
    }

    #section3 > .container > .contentLine > .contentBox > .left {
        width: 100%;
    }

    #section3 > .container > .contentLine > .contentBox > .left > .selectList > .selectBox {
        width: 100%;
    }


    #section4 > .container > .contentLine > .mainBox > .brandIcons > .iconBox {
        width: 150px;
        height: 150px;
    }
    #section4 > .container > .contentLine > .mainBox > .brandIcons > .iconBox > .imgWrapper {
        padding: 1.5rem;
    }




    #section4 > .container > .contentLine > .mainBox > .brandIcons > .iconBox:nth-child(1) {
        left: 10px;
        top: 70%;
        -webkit-animation: updownMob 5s ease-in-out infinite;
                animation: updownMob 5s ease-in-out infinite;
        -webkit-animation-delay: 0s;
                animation-delay: 0s;
    }

    #section4 > .container > .contentLine > .mainBox > .brandIcons > .iconBox:nth-child(2) {
        left: 100px;
        top: 0%;
        -webkit-animation: updownMob 5s ease-in-out infinite;
                animation: updownMob 5s ease-in-out infinite;
        -webkit-animation-delay: 0.7s;
                animation-delay: 0.7s;
    }

    #section4 > .container > .contentLine > .mainBox > .brandIcons > .iconBox:nth-child(3) {
        left: 310px;
        top: 0%;
        -webkit-animation: updownMob 5s ease-in-out infinite;
                animation: updownMob 5s ease-in-out infinite;
        -webkit-animation-delay: 1.4s;
                animation-delay: 1.4s;
    }

    #section4 > .container > .contentLine > .mainBox > .brandIcons > .iconBox:nth-child(4) {
        right: 100px;
        top: 0%;
        -webkit-animation: updownMob 5s ease-in-out infinite;
                animation: updownMob 5s ease-in-out infinite;
        -webkit-animation-delay: 2.1s;
                animation-delay: 2.1s;
    }

    #section4 > .container > .contentLine > .mainBox > .brandIcons > .iconBox:nth-child(5) {
        right: 10px;
        top: 70%;
        -webkit-animation: updownMob 5s ease-in-out infinite;
                animation: updownMob 5s ease-in-out infinite;
        -webkit-animation-delay: 2.8s;
                animation-delay: 2.8s;
    }

    #section4 > .container > .contentLine > .mainBox > .brandIcons > .iconBox:nth-child(6) {
        right: 210px;
        top: 70%;
        -webkit-animation: updownMob 5s ease-in-out infinite;
                animation: updownMob 5s ease-in-out infinite;
        -webkit-animation-delay: 3.5s;
                animation-delay: 3.5s;
    }

    #section4 > .container > .contentLine > .mainBox > .brandIcons > .iconBox:nth-child(7) {
        left: 210px;
        top: 70%;
        -webkit-animation: updownMob 5s ease-in-out infinite;
                animation: updownMob 5s ease-in-out infinite;
        -webkit-animation-delay: 4.2s;
                animation-delay: 4.2s;
    }
    

    #section4 > .container > .contentLine > .sliderLine,
    #section5 > .container > .contentLine > .sliderLine {
        width: 600px;
    }

    #section4 > .container > .contentLine {
        gap: 3rem;
    }

    #section6 > .container > .contentLine > .boxList {
        grid-template-columns: repeat(1, 1fr);
    }
    #section6 > .container {
        min-width: 650px;
    }

    #section7 > .container {
        margin: 0 40px;
    }

    #section7 > .container > .contentLine > .contact-form {
        width: 80%;
        padding: 80px 0 0 0;
    }

    #section5 > .container > .contentLine > .sliderLine > .sec5Swiper > .swiper-wrapper > .swiper-slide > .cardBox > .imgBox {
        height: 400px;
    }


    footer .container {
        padding: 0 80px;
    }

    footer .container > .bottom {
        flex-direction: column;
        gap: 3rem;
    }
    
}


@media all and (max-width: 600px) {


    .topGradient {
        height: 100%;
    }
    .topGradient > .container {
        width: 100%;
        height: 100%;
    }
    .topGradient > .container > img {
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
    }
    .mobileNav > .container {
        padding: 0 30px;
    }
    .mobileNav > .container > .iconLine > p {
        font-size: 20px;
    }
    .mobileNav > .container > .iconLine {
        gap: 0.5rem;
    }
    .mobileMenuContent {
        padding: 10px 20px 20px;
    }
    #section1 > .container, #section2 > .container {
        min-width: 375px;
        margin: 0 10px;
    }
    #section1 > .container > .contentLine > .textBox > .subText > p {
        font-size: 16px;
    }
    #section1 > .container > .contentLine > .textBox > .mainText > p {
        font-size: 40px;
    }
    #section1 > .container > .contentLine > .textBox > .mainText > .dot {
        width: 10px;
        height: 10px;
        bottom: 5px;
        left: 5px;
    }


    section > .container > .contentLine > .textBox.topText > .mainText > p, #section4 > .container > .contentLine > .mainBox > .mainText > p {
        font-size: 30px;
    }

    section > .container > .contentLine > .textBox.topText > .subText > p {
        font-size: 15px;
    }
    section > .container > .contentLine > .textBox.topText > .subText > p > br {
        display: none;
    }
    #section2 > .container > .contentLine > .boxList > .box > .innerBox > .mainText > p {
        font-size: 24px;
    }

    #section3 > .container {
        min-width: 375px;
    }


    #section3 > .container > .contentLine > .contentBox > .left > .selectList > .selectBox > .title > p,
    #section3 > .container > .contentLine > .contentBox > .left > .selectList > .selectBox.selected > .clickedContent > p.mainT {
        font-size: 23px;
    }
    #section3 > .container > .contentLine > .contentBox > .left > .selectList > .selectBox.selected > .clickedContent > p.subT {
        font-size: 15px;
    }

    #section3 > .container > .contentLine > .contentBox > .left > .selectList > .selectBox.selected > .clickedContent > p.infoT {
        word-break: keep-all;
    }

    #section3 > .container > .contentLine > .contentBox > .left > .selectList > .selectBox.selected > .clickedContent > p.infoT > br {
        display: none;
    }

    #section3 > .container > .contentLine > .contentBox > .right
     {
        width: 470px;
        height: 470px;
    }
    #section3 > .container > .contentLine > .contentBox > .right > .imgList > .imgBox {
        width: 470px;
    }


    #section4 > .container {
        max-width: 478px;
        min-width: 478px;
        width: 478px;
    }
    #section4 > .container > .contentLine > .mainBox {
        height: 400px;
    }

    #section4 > .container > .contentLine > .mainBox > .brandIcons > .iconBox {
        width: 110px;
        height: 110px;
    }
    #section4 > .container > .contentLine > .mainBox > .brandIcons > .iconBox > .imgWrapper {
        padding: 1rem;
    }




    #section4 > .container > .contentLine > .mainBox > .brandIcons > .iconBox:nth-child(1) {
        left: 0px;
        top: 70%;
        -webkit-animation: updownMob 5s ease-in-out infinite;
                animation: updownMob 5s ease-in-out infinite;
        -webkit-animation-delay: 0s;
                animation-delay: 0s;
    }

    #section4 > .container > .contentLine > .mainBox > .brandIcons > .iconBox:nth-child(2) {
        left: 50px;
        top: 0%;
        -webkit-animation: updownMob 5s ease-in-out infinite;
                animation: updownMob 5s ease-in-out infinite;
        -webkit-animation-delay: 0.7s;
                animation-delay: 0.7s;
    }

    #section4 > .container > .contentLine > .mainBox > .brandIcons > .iconBox:nth-child(3) {
        left: 185px;
        top: 0%;
        -webkit-animation: updownMob 5s ease-in-out infinite;
                animation: updownMob 5s ease-in-out infinite;
        -webkit-animation-delay: 1.4s;
                animation-delay: 1.4s;
    }

    #section4 > .container > .contentLine > .mainBox > .brandIcons > .iconBox:nth-child(4) {
        right: 50px;
        top: 0%;
        -webkit-animation: updownMob 5s ease-in-out infinite;
                animation: updownMob 5s ease-in-out infinite;
        -webkit-animation-delay: 2.1s;
                animation-delay: 2.1s;
    }

    #section4 > .container > .contentLine > .mainBox > .brandIcons > .iconBox:nth-child(5) {
        right: 0px;
        top: 70%;
        -webkit-animation: updownMob 5s ease-in-out infinite;
                animation: updownMob 5s ease-in-out infinite;
        -webkit-animation-delay: 2.8s;
                animation-delay: 2.8s;
    }

    #section4 > .container > .contentLine > .mainBox > .brandIcons > .iconBox:nth-child(6) {
        right: 125px;
        top: 70%;
        -webkit-animation: updownMob 5s ease-in-out infinite;
                animation: updownMob 5s ease-in-out infinite;
        -webkit-animation-delay: 3.5s;
                animation-delay: 3.5s;
    }

    #section4 > .container > .contentLine > .mainBox > .brandIcons > .iconBox:nth-child(7) {
        left: 125px;
        top: 70%;
        -webkit-animation: updownMob 5s ease-in-out infinite;
                animation: updownMob 5s ease-in-out infinite;
        -webkit-animation-delay: 4.2s;
                animation-delay: 4.2s;
    }
    
    #section4 > .container > .contentLine > .sliderLine, #section5 > .container > .contentLine > .sliderLine {
        width: 400px;
    }

    #section4 > .container > .contentLine > .sliderLine > .sec4Swiper > .swiper-button-prev {
        color: white;
        left: -30px;
    }
    
    #section4 > .container > .contentLine > .sliderLine > .sec4Swiper > .swiper-button-next {
        color: white;
        right: -30px;
    }

    .swiper-button-next:after {
        font-size: 20px !important;
    }
    .swiper-button-prev:after {
        font-size: 20px !important;
    }

    #section4 > .container > .contentLine {
        margin-top: 1rem;
    }

    #section5 > .container > .contentLine {
        gap: 3rem;
    }

    #section6 > .container {
        max-width: 400px;
        min-width: 400px;
        width: 400px;
    }

    #section6 > .container > .contentLine {
        gap: 3rem;
    }

    #section6 > .container > .contentLine > .boxList > .box > .boxWrapper > .right {
        gap: 0.5rem;
    }
    #section6 > .container > .contentLine > .boxList > .box > .boxWrapper {
        padding: 1.5rem 1.5rem;
        gap: 1.3rem;
    }

    #section6 > .container > .contentLine > .boxList > .box > .boxWrapper > .right > .mainT {
        font-size: 17px;
    }

    #section6 > .container > .contentLine > .boxList > .box > .boxWrapper > .left > .icon {
        width: 40px;
    }

    #section6 > .container > .contentLine > .boxList > .box > .boxWrapper > .left > .icon > img {
        width: 100%;
    }

    #section6 > .container > .contentLine > .boxList > .box > .boxWrapper > .right > .subT {
        font-size: 13px;
        word-break: keep-all;
    }

    #section6 > .container > .contentLine > .boxList > .box > .boxWrapper > .right > .subT > br {
        display: none;
    }

    #section7 > .container {
        margin: 0 20px;
    }

    #section7 > .container > .contentLine > .contact-form > .form-row {
        flex-direction: column;
    }

    #section7 > .container > .contentLine > .contact-form label {
        font-size: 14px;
    }

    .submit-btn {
        width: 100%;
    }

    #section5 > .container > .contentLine > .sliderLine > .sec5Swiper > .swiper-wrapper > .swiper-slide > .cardBox > .imgBox {
        height: 250px;
    }



    
    footer .container {
        padding: 0 40px;
        gap: 2rem;
    }
    footer .infoBox {
        gap: 7px;
    }

    footer .infoBox p.headT {
        font-size: 18px;
    }

    footer .infoBox p.subT,
    footer .container > .bottom > .right > .contactBox > p.subT {
        font-size: 12px;
    }

    footer .container > .bottom > .right > .contactBox > .linkBox > a {
        font-size: 13px;
    }


    footer .infoBox p.subT:nth-child(2),
    footer .container > .bottom > .right > .contactBox > p.subT:nth-child(2) {
        margin-top: 7px;
    }
    
    /* Language toggle mobile responsive */
    .languageToggle {
        display: none;
    }
    
    .mobileLangToggle {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media all and (max-width: 478px) {

    .floating {
        right: 15px;
        bottom: 30px;
    }
    .floating > a > .gotoTop {
        width: 50px;
        height: 50px;
    }
    .floating > a > .gotoTop > img {
        width: 15px;
    }
    .hamburger {
        height: 25px;
    }
    .mobileNav {
        height: 70px;
    }
    .mobileNav > .container > .iconLine > img {
        width: 30px;
    }
    .mobileNav > .container > .iconLine > p {
        font-size: 17px;
    }

    .mobileMenuContent {
        gap: 3rem;
    }


    .mobileLogo img {
        width: 50px;
    }

    .mobileLogo p {
        font-size: 20px;
    }

    .mobileNavLinks a {
        font-size: 20px;
    }


    #section1 > .container > .contentLine > .textBox > .mainText > p {
        font-size: 30px;
    }

    #section1 > .container > .contentLine > .textBox > .subText > p {
        font-size: 14px;
    }
    #section1 > .container > .contentLine > .textBox {
        gap: 2rem;
    }

    #section1 > .container, #section2 > .container {
        min-width: 350px;
    }

    section > .container > .contentLine > .textBox.topText {
        gap: 2rem;
    }

    section > .container > .contentLine > .textBox.topText > .mainText > p, #section4 > .container > .contentLine > .mainBox > .mainText > p {
        font-size: 25px;
    }
    section > .container > .contentLine > .textBox.topText > .subText > p {
        font-size: 13px;
    }

    #section2 > .container > .contentLine > .boxList > .box {
        width: 250px;
        height: 250px;
    }

    #section2 > .container > .contentLine > .boxList > .box > .innerBox {
        padding: 1.5rem;
    }
    #section2 > .container > .contentLine > .boxList > .box > .innerBox > .mainText > p {
        font-size: 22px;
    }
    #section2 > .container > .contentLine > .boxList > .box > .innerBox > .subText > p {
        font-size: 13px;
    }
    #section2 > .container > .contentLine > .boxList > .box > .innerBox > .icon > img {
        width: 35px;
    }
    section > .container > .contentLine > .textBox.topText > .subText {
        margin: 0 40px;
    }

    #section2 > .container > .contentLine > .boxList {
        margin-top: 3rem;
    }

    #section3 > .container > .contentLine > .contentBox {
        margin-top: 3rem;
    }
    #section3 > .container {
        min-width: 340px;
        padding: 80px 0;
    }


    #section3 > .container > .contentLine > .contentBox > .left > .selectList > .selectBox > .title > p, #section3 > .container > .contentLine > .contentBox > .left > .selectList > .selectBox.selected > .clickedContent > p.mainT {
        font-size: 20px;
    }


    #section3 > .container > .contentLine > .contentBox > .left > .selectList > .selectBox > .title > .arrow > span > svg {
        width: 12px;
        height: 12px;
    }

    #section3 > .container > .contentLine > .contentBox > .left > .selectList > .selectBox.selected > .clickedContent > p.subT {
        font-size: 14px;
    }

    #section3 > .container > .contentLine > .contentBox > .left > .selectList > .selectBox > .title > .arrow > span {
        width: 25px;
        height: 25px;
    }

    #section3 > .container > .contentLine > .contentBox > .left > .selectList {
        gap: 1rem;
        height: 500px;
    }

    #section3 > .container > .contentLine > .contentBox > .left > .selectList > .selectBox {
        height: 80px;
    }

    #section3 > .container > .contentLine > .contentBox > .left > .selectList > .selectBox.selected {
        height: 170px;
    }

    #section3 > .container > .contentLine > .contentBox > .left > .selectList > .selectBox.selected > .clickedContent > p.infoT {
        font-size: 13px;
    }

    #section3 > .container > .contentLine > .contentBox > .right {
        width: 365px;
        height: 365px;
    }

    #section3 > .container > .contentLine > .contentBox > .right > .imgList > .imgBox {
        width: 365px;
    }

    #section4 > .container > .contentLine > .sliderLine, #section5 > .container > .contentLine > .sliderLine {
        width: 300px;
    }



    #section4 > .container {
        max-width: 350px;
        min-width: 350px;
        width: 350px;
    }
    #section4 > .container > .contentLine > .mainBox {
        height: 300px;
    }

    #section4 > .container > .contentLine > .mainBox > .brandIcons > .iconBox {
        width: 80px;
        height: 80px;
    }
    #section4 > .container > .contentLine > .mainBox > .brandIcons > .iconBox > .imgWrapper {
        padding: 0.7rem;
    }




    #section4 > .container > .contentLine > .mainBox > .brandIcons > .iconBox:nth-child(1) {
        left: 0px;
        top: 70%;
        -webkit-animation: updownMob 5s ease-in-out infinite;
                animation: updownMob 5s ease-in-out infinite;
        -webkit-animation-delay: 0s;
                animation-delay: 0s;
    }

    #section4 > .container > .contentLine > .mainBox > .brandIcons > .iconBox:nth-child(2) {
        left: 30px;
        top: 0%;
        -webkit-animation: updownMob 5s ease-in-out infinite;
                animation: updownMob 5s ease-in-out infinite;
        -webkit-animation-delay: 0.7s;
                animation-delay: 0.7s;
    }

    #section4 > .container > .contentLine > .mainBox > .brandIcons > .iconBox:nth-child(3) {
        left: 135px;
        top: 0%;
        -webkit-animation: updownMob 5s ease-in-out infinite;
                animation: updownMob 5s ease-in-out infinite;
        -webkit-animation-delay: 1.4s;
                animation-delay: 1.4s;
    }

    #section4 > .container > .contentLine > .mainBox > .brandIcons > .iconBox:nth-child(4) {
        right: 30px;
        top: 0%;
        -webkit-animation: updownMob 5s ease-in-out infinite;
                animation: updownMob 5s ease-in-out infinite;
        -webkit-animation-delay: 2.1s;
                animation-delay: 2.1s;
    }

    #section4 > .container > .contentLine > .mainBox > .brandIcons > .iconBox:nth-child(5) {
        right: 0px;
        top: 70%;
        -webkit-animation: updownMob 5s ease-in-out infinite;
                animation: updownMob 5s ease-in-out infinite;
        -webkit-animation-delay: 2.8s;
                animation-delay: 2.8s;
    }

    #section4 > .container > .contentLine > .mainBox > .brandIcons > .iconBox:nth-child(6) {
        right: 90px;
        top: 70%;
        -webkit-animation: updownMob 5s ease-in-out infinite;
                animation: updownMob 5s ease-in-out infinite;
        -webkit-animation-delay: 3.5s;
                animation-delay: 3.5s;
    }

    #section4 > .container > .contentLine > .mainBox > .brandIcons > .iconBox:nth-child(7) {
        left: 90px;
        top: 70%;
        -webkit-animation: updownMob 5s ease-in-out infinite;
                animation: updownMob 5s ease-in-out infinite;
        -webkit-animation-delay: 4.2s;
                animation-delay: 4.2s;
    }


    #section4 > .container > .contentLine > .mainBox > .brandIcons > .iconBox:nth-child(4) > .imgWrapper > img,
    #section4 > .container > .contentLine > .mainBox > .brandIcons > .iconBox:nth-child(6) > .imgWrapper > img,
    #section4 > .container > .contentLine > .mainBox > .brandIcons > .iconBox:nth-child(2) > .imgWrapper > img {
        width: 50px;
        height: 50px;
    }


    #section4 > .container > .contentLine > .sliderLine > .sec4Swiper > .swiper-button-prev {
        color: white;
        left: -30px;
    }
    
    #section4 > .container > .contentLine > .sliderLine > .sec4Swiper > .swiper-button-next {
        color: white;
        right: -30px;
    }

    #section5 > .container {
        padding: 80px 0;
    }
    

    #section6 > .container {
        max-width: 340px;
        min-width: 340px;
        width: 340px;
        padding: 80px 0;
    }

    #section6 > .container > .contentLine > .boxList {
        gap: 1rem;
    }

    #section6 > .container > .contentLine > .boxList > .box > .boxWrapper {
        padding: 1.5rem 1rem;
    }

    #section6 > .container > .contentLine > .boxList > .box > .boxWrapper > .left > .icon {
        width: 35px;
    }

    #section6 > .container > .contentLine > .boxList > .box > .boxWrapper > .right > .mainT {
        font-size: 15px;
        word-break: keep-all;
    }

    #section6 > .container > .contentLine > .boxList > .box > .boxWrapper > .right > .subT {
        font-size: 11px;
    }

    .project-type-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    #section7 > .container > .contentLine > .contact-form {
        padding: 50px 0 0 0;
    }

    #section7 > .container {
        margin: 0 10px;
    }

    .submit-btn {
        font-size: 15px;
    }

    #section5 > .container > .contentLine > .sliderLine > .sec5Swiper > .swiper-wrapper > .swiper-slide > .cardBox > .imgBox {
        height: 400px;
    }
    
    /* Language toggle mobile styles for smaller screens */
    .mobileLangToggle {
        margin-top: 1.5rem;
    }
    
    .mobileLangBtn {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .mobileLangDropdown .langOption {
        padding: 10px 16px;
        font-size: 14px;
    }

    #section1 > .container > .contentLine > .textBox > .mainText > .dot {
        width: 8px;
        height: 8px;
        bottom: 4.5px;
        left: 3px;
    }
    
}

