*{
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
    /* background: #000 !important;
    color: #0f0 !important;
    outline: solid #f00 1px !important; */
}
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.fade-in-section {
    opacity: 0;
    transform: translateY(100px);
    visibility: hidden;
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    will-change: opacity, visibility;
}
.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
    visibility: visible;
}
html{
    scroll-behavior: smooth;
    height: 100%;
    width: 100%;
}
body{
    height: 100%;
    width: 100%;
    background-color: #fff;
    overflow-x: hidden;
}

/* -----------Header----------- */
#header{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}
#header .container{
    background-color: rgba(0,0,0,0.69);
    padding: 4px 2%;
    width: 100%;
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
nav .fa-solid {
    display: none;
}
nav .logo {
    display: flex;
    align-items: center;
}
nav .logo img{
    width: 35px;
    margin-right: 15px;
}
nav .logo p{
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
}
nav ul li{
    display: inline-block;
    list-style: none;
    margin: 3px 20px;
}
nav ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}
nav ul li a::after{
    content: '';
    width: 0;
    height: 3px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: -6px;
}
nav ul li a:hover::after{
    content: '';
    width: 100%;
    height: 3px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}

/* ---------------Dropdown------------------ */
.dropdown{
    display: inline-block;
}
.dropdown .dropbtn{
    font-size: 18px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    margin: 0;
}
.dropdown-content{
    display: none;
    position: absolute;
    background-color: rgba(0,0,0,0.69);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
.dropdown-content a{
    float: none;
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}
.dropdown-content a:hover{
    background-color: C5C5C5;
}
  .dropdown:hover .dropdown-content{
    display: block;
}

/* ---------------Home------------------ */
#home{
    background-image: url('image/home2.webp');
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
}
#home .container{
    color: #fff;
    margin-left: 10%;
    opacity: 0;
    animation: fadeInRight 2s forwards;
}
#home .container h1{
    font-size: 40px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}
#home .container p{
    font-size: 24px;
    margin-bottom: 16px;
}
#home .container .button{
    width: fit-content;
    padding: 14px 20px;
    border-radius: 25px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}
#home .container .button:hover{
    transform: scale(1.05);
    border-radius: 30px;
}
#home .container .button .video-background{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
#home .container .button .button-content{
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: white;
    font-size: 16px;
}
#home .container .button .button-content .btn{
    text-decoration: none;
    color: #fff;
}

/* ---------------About Us------------------ */
#about{
    padding: 20px;
    height: 100%;
    position: relative;
}
#about .deco{
    position: absolute;
    top: 0;
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: fit-content;
}
#about .deco img{
    width: 130px;
    margin: 0 400px;
}
#about .header{
    text-align: center;
    margin-top: 5%;
}
#about .header h1{
    margin-bottom: 20px;
}
#about .container{
    position: relative;
    top: -120px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.side-by-side {
    display: flex;
    justify-content: center;
    padding: 0 10%;
}
.side-by-side .box {
    padding: 30px 40px;
    width: 100%;
    height: 250px;
    margin: 0 30px;
    border-radius: 15px;
    background-color: #f6f6f6;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.3);
}
.side-by-side .box p{
    text-align: justify;
    font-size: 15px;
}
.side-by-side .box .new{
    margin-bottom: 20px;
}
.side-by-side .box img{
    width: 20px;
}
.side-by-side .box h1{
    font-size: 28px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 25px;
}
.side-by-side .box .skill{
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}
.side-by-side .box .skill p{
    margin-right: 5px;
}
.progress-bar {
    position: relative;
    width: 95%;
    height: 1px;
    background-color: #000;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.progress96 {
    position: absolute;
    top: -2px;
    left: 0;
    height: 5px;
    width: 96%;
    background-color: #000;
    border-radius: 10px;
}
.progress85 {
    position: absolute;
    top: -2px;
    left: 0;
    height: 5px;
    width: 85%;
    background-color: #000;
    border-radius: 10px;
}
.progress90 {
    position: absolute;
    top: -2px;
    left: 0;
    height: 5px;
    width: 90%;
    background-color: #000;
    border-radius: 10px;
}
.progress-label {
    position: absolute;
    right: -35px;
    font-size: 14px;
    color: #000;
}

/* ---------------Software------------------ */
#software{
    padding: 20px;
    height: 120%;
    background-color: #f3f9ff;
    position: relative;
    overflow: hidden;
}
#software .deco{
    position: absolute;
    top: 0;
    display: none;
    justify-content: center;
    width: 100%;
    height: fit-content;
}
#software .deco .img1{
    width: 300px;
    position: relative;
    top: -40px;
}
#software .deco .img21{
    position: absolute;
    width: 80px;
    left: 37%;
}
#software .deco .img22{
    position: absolute;
    width: 80px;
    left: 56%;
}
#software .deco .img3{
    width: 300px;
    position: relative;
    top: -60px;
}
#software .header{
    text-align: center;
    margin-top: 7%;
}
#software .header h1{
    margin-bottom: 20px;
}
#software .container{
    position: relative;
    top: -170px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#software .software-info{
    display: flex;
}
.software-info .box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
    width: 220px;
    margin: 50px;
    padding: 10px;
    background-color: #fff;
    box-shadow: 10px 0px 10px rgba(0,0,0,0.4), -10px 0px 10px rgba(0,0,0,0.4);
}
.software-info .box img{
    margin: 15px;
    width: 50px;
}
.software-info .box h1{
    font-size: 15px;
    text-decoration: underline;
    text-align: center;
    margin: 12px 0;
  
}
.software-info .box p{
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    margin: 0 12px;
    margin-top: 12px;
}
.software-info .box .btn{
    position: relative;
    background-color: #0455B2;
    border-style: solid;
    border-width: 3px;
    border-color: #003c82;
    color: white;
    bottom: -35px;
    padding: 6px 24px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}
.software-info .box .RM50{
    bottom: -25px;
}
.software-info .box .RM29::before{
    content: "RM 29";
}
.software-info .box .RM50::before{
    content: "RM 50";
}
.software-info .box .RM60::before{
    content: "RM 60";
}
.software-info .box .btn:hover::before {
    display: inline-block;
    content: "Get Now";
}
.more-info{
    position: absolute;
    bottom: 0;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.more-info p{
    text-decoration: underline;
    font-weight: 500;
    color: #0966c6;
    margin-right: 5px;
}
.more-info img{
    width: 20px;
}

/* ---------------Portfolio------------------ */
#portfolio{
    padding: 20px;
    height: 130%;
    overflow: hidden;
}
#portfolio .header{
    text-align: center;
    margin-top: 5%;
    margin-bottom: 40px;
}
#portfolio .header h1{
    margin-bottom: 20px;
}
#portfolio .container{
    display: flex;
    justify-content: center;
}
.carousel-container {
    position: relative;
    width: 800px;
    height: 500px;
}
.carousel-content {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}
.carousel-item {
    flex: 0 0 100%;
    overflow: hidden;
    position: relative;
    transition: transform 0.7s;
    width: 800px;
    height: 500px;
    background-color: #000;
    border-radius: 20px;
}
.carousel-item:not(.active) {
    transform: scale(0.8) translateY(50px);
}
.carousel-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel-controls {
    position: absolute;
    top: 50%;
    right: -20%;
    transform: translateY(-50%);
    width: 140%;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}
.carousel-controls button {
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.3);
    padding: 10px;
    outline: none;
}
.carousel-description {
    text-align: center;
    margin-top: 35px;
    font-size: 20px;
    font-weight: 600;
}
.carousel-dots {
    left: 41%;
    width: fit-content;
    border: solid;
    border-color: #7e7e7e;
    border-radius: 20px;
    text-align: center;
    margin-top: 20px;
    position: relative;
    padding: 0 7px;
    z-index: 1;
}
.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #5d5d5d;
    margin: 0 5px;
    cursor: pointer;
}
.dot.active {
    background-color: #000;
}

/* ---------------Hardware------------------ */
#hardware{
    padding: 20px;
    height: 120%;
    background-color: #fff8f5;
    overflow: hidden;
    position: relative;
}
#hardware .deco{
    position: absolute;
    top: 0;
    display: none;
    justify-content: center;
    width: 100%;
    height: fit-content;
}
#hardware .deco .img1{
    width: 300px;
    position: relative;
    top: -40px;
}
#hardware .deco .img21{
    position: absolute;
    width: 80px;
    left: 37%;
}
#hardware .deco .img22{
    position: absolute;
    width: 80px;
    left: 56%;
}
#hardware .deco .img3{
    width: 300px;
    position: relative;
    top: -60px;
}
#hardware .header{
    text-align: center;
    margin-top: 7%;
}
#hardware .header h1{
    margin-bottom: 20px;
}
#hardware .container{
    position: relative;
    top: -170px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#hardware .hardware-info{
    display: flex;
}
.hardware-info .box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
    width: 220px;
    margin: 50px;
    padding: 10px;
    background-color: #fff;
    box-shadow: 10px 0px 10px rgba(0,0,0,0.4), -10px 0px 10px rgba(0,0,0,0.4);
}
.hardware-info .box img{
    margin: 15px;
    width: 50px;
}
.hardware-info .box h1{
    font-size: 15px;
    text-decoration: underline;
    text-align: center;
    margin: 12px 0;
  
}
.hardware-info .box p{
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    margin: 0 12px;
    margin-top: 12px;
}
.hardware-info .box .btn{
    position: relative;
    background-color: #ff730e;
    border-style: solid;
    border-width: 3px;
    border-color: #cf5700;
    color: white;
    bottom: -35px;
    padding: 6px 24px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}
.hardware-info .box .batt{
    bottom: -40px;
}
.hardware-info .box .ram{
    bottom: -50px;
}
.hardware-info .box .stor{
    bottom: -25px;
}
.hardware-info .box .RM300{
    bottom: -32px;
}
.hardware-info .box .RM150::before{
    content: "RM 150";
}
.hardware-info .box .RM300::before{
    content: "RM 300";
}
.hardware-info .box .btn:hover::before {
    display: inline-block;
    content: "Get Now";
}

/* ---------------Update------------------ */
#update{
    position: relative;
    padding: 20px;
    height: 130%;
    background-color: #fff;
}
#update .header{
    text-align: center;
    margin-top: 5%;
    margin-bottom: 40px;
}
#update .header h1{
    margin-bottom: 20px;
}
#update .container{
    display: flex;
    justify-content: center;
}
.carousel-container-u {
    position: relative;
    width: 800px;
    height: 500px;
}
.carousel-content-u {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}
.carousel-item-u {
    flex: 0 0 100%;
    overflow: hidden;
    position: relative;
    transition: transform 0.7s;
}
.carousel-item-u:not(.active) {
    transform: scale(0.8) translateY(50px);
}
.carousel-item-u img, .carousel-item-u video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel-controls-u {
    position: absolute;
    top: 50%;
    right: -20%;
    transform: translateY(-50%);
    width: 140%;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}
.carousel-controls-u button {
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.3);
    padding: 10px;
    outline: none;
}
.carousel-description-u {
    text-align: center;
    margin-top: 35px;
    font-size: 20px;
    font-weight: 600;
}
.carousel-dots-u {
    left: 42%;
    width: fit-content;
    border: solid;
    border-color: #7e7e7e;
    border-radius: 20px;
    text-align: center;
    margin-top: 20px;
    position: relative;
    padding: 0 7px;
    z-index: 1;
}
.dot-u {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #5d5d5d;
    margin: 0 5px;
    cursor: pointer;
}
.dot-u.active {
    background-color: #000;
}

/* ---------------Cleaning------------------ */
#cleaning{
    padding: 20px;
    height: 120%;
    background-color: #f8f8f8;
    position: relative;
    overflow: hidden;
}
#cleaning .deco{
    position: absolute;
    top: 0;
    display: none;
    justify-content: center;
    width: 100%;
    height: fit-content;
}
#cleaning .deco .img1{
    width: 300px;
    position: relative;
    top: -40px;
}
#cleaning .deco .img21{
    position: absolute;
    width: 80px;
    left: 37%;
}
#cleaning .deco .img22{
    position: absolute;
    width: 80px;
    left: 56%;
}
#cleaning .deco .img3{
    width: 300px;
    position: relative;
    top: -60px;
}
#cleaning .header{
    text-align: center;
    margin-top: 7%;
}
#cleaning .header h1{
    margin-bottom: 20px;
}
#cleaning .container{
    position: relative;
    top: -170px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#cleaning .cleaning-info{
    display: flex;
}
.cleaning-info .box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
    width: 220px;
    margin: 50px;
    padding: 10px;
    background-color: #fff;
    box-shadow: 10px 0px 10px rgba(0,0,0,0.4), -10px 0px 10px rgba(0,0,0,0.4);
}
.cleaning-info .box img{
    margin: 15px;
    width: 50px;
}
.cleaning-info .box h1{
    font-size: 15px;
    text-decoration: underline;
    text-align: center;
    margin: 12px 0;
  
}
.cleaning-info .box p{
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    margin: 0 12px;
    margin-top: 12px;
}
.cleaning-info .box .btn{
    position: relative;
    background-color: #7e7e7e;
    border-style: solid;
    border-width: 3px;
    border-color: #505050;
    color: white;
    bottom: -35px;
    padding: 6px 24px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}
.cleaning-info .box .RM30::before{
    content: "RM 30";
}
.cleaning-info .box .renew::before{
    content: "RM 50";
}
.cleaning-info .box .RM75::before{
    content: "RM 75";
}
.cleaning-info .box .RM30{
    bottom: -32px;
}
.cleaning-info .box .renew{
    bottom: -25px;
}
.cleaning-info .box .RM75{
    bottom: -32px;
}
.cleaning-info .box .btn:hover::before {
    display: inline-block;
    content: "Get Now";
}
.img-com{
    display: flex;
    align-items: center;
    justify-content: center;
}
.img-com .plus::before {
    content: "+";
    font-size: 30px;
}
.img-com img{
    margin: 10px;
}

/* ---------------Choose------------------ */
#choose{
    padding: 20px;
    height: 120%;
    position: relative;
}
#choose .header{
    text-align: center;
    margin-top: 5%;
}
#choose .header h1{
    margin-bottom: 20px;
}
#choose .container{
    position: relative;
    top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#choose .choose-info{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 90%;
}
.choose-info .box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 180px;
    width: 330px;
    margin: 25px 50px;
    padding: 10px;
    background-color: #f8f8f8;
    border-radius: 25px;
    box-shadow: 10px 0px 10px rgba(0,0,0,0.4), -10px 0px 10px rgba(0,0,0,0.4);
}
.choose-info .box img{
    margin: 7px;
    width: 80px;
}
.choose-info .box h1{
    font-size: 20px;
    text-align: center;
    margin: 2px 0;
  
}
.choose-info .box p{
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    margin: 0 12px;
    margin-top: 12px;
}
.ranking{
    position: absolute;
    bottom: 60px;
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    width: 100%;
}

/* ---------------Review------------------ */
#review{
    padding: 20px;
    height: 100%;
}
#review .header{
    text-align: center;
    margin-top: 5%;
}
#review .header h1{
    margin-bottom: 20px;
}
#review .container{
    display: flex;
    justify-content: center;
}
.carousel-container-r{
    background-image: linear-gradient(to right, black, rgba(0, 0, 0, 0.87));
    position: relative;
    width: 110%;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items:center ;
}
.carousel-content-r{
    display: flex;
    align-items: center;
    transition: transform 0.5s ease;
    height: 80%;
}
.carousel-item-r {
    background-color: #fff;
    padding: 20px 30px;
    text-align: center;
    width: 350px;
    height: 280px;
    margin: 10px;
    margin-right: 600px;
}
.customer-image {
    position: relative;
    top: -70px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}
.rate{
    position: relative;
    top: -70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
}
.rate img{
    width: 15px;
    margin: 0 3px;
}
.review-description {
    position: relative;
    top: -70px;
    font-size: 14px;
    font-weight: 600;
    text-align: justify;
    margin-bottom: 10px;
}
.r-line {
    position: relative;
    top: -30px;
    width: 75%;
    height: 2px;
    background-color: #000;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    left: 13%;
}
.customer-name {
    position: relative;
    top: -30px;
    font-size: 15px;
    font-weight: 600;
    color: #7e7e7e;
}
.carousel-controls-r {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}
.carousel-controls-r button {
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: grey;
    padding: 10px;
    outline: none;
}
.carousel-description-r {
    text-align: center;
    margin-top: 35px;
    font-size: 20px;
    font-weight: 600;
}
.carousel-dots-r {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    border-radius: 20px;
    text-align: center;
    padding: 0 7px;
    z-index: 1;
}
.dot-r {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(50,50,50,0.5);
    opacity: 50%;
    margin: 0 15px;
    cursor: pointer;
}
.dot-r.active {
    background-color: #505050;
}

/* ---------------Contact------------------ */
#contact{
    padding: 20px;
    height: 100%;
}
#contact .header{
    text-align: center;
    margin-top: 2%;
}
#contact .header h1{
    margin-bottom: 20px;
}
#contact .container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#contact .container iframe{
    margin-top: 60px;
    margin-bottom: 30px;
    border-radius: 20px;
}
#contact .container .contacts{
    display: flex;
    justify-content: center;
    align-items: center;
}
#contact .container .contacts .box{
    background-color: #000;
    padding: 1px;
    width: 120px;
    height: 30px;
    margin: 0 10px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#contact .container .contacts .box i{
    color: #fff;
    width: 10px;
    margin-right: 12px;
}
#contact .container .contacts .box p{
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}
#contact .container .socials{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}
#contact .container .socials .link{
    padding: 1px;
    width: 120px;
    height: 30px;
    margin: 0 10px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#contact .container .socials .link i{
    color: #505050;
    font-size: 22px;
    margin-right: 12px;
}
#contact .container .socials .link p{
    color: #505050;
    font-size: 13px;
    font-weight: 400;
}
.c-line {
    width: 90%;
    height: 1.5px;
    background-color: #5d5d5d;
    display: flex;
    align-items: center;
    margin-top: 10px;
}
#contact a{
    text-decoration: none;
}

/* ---------------Footer------------------ */
#footer{
    background-color: #000;
    width: 100%;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#footer p{
    color: #fff;
    margin: 0 40px;
    font-size: 14px;
    font-weight: 650;
}

/* ---------------Description------------------ */
#format{
    margin-top: 5%;
}
#battery{
    margin-top: 5%;
}
#dust{
    margin-top: 5%;
}
.desc-container{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #eaeaea;
}
.desc-img{
    height: 350px;
}
.desc{
    padding: 40px;
    background-color: #fff;
    height: 310px;
}
.desc .title{
    position: relative;
    left: -10px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: underline;
    margin-bottom: 30px;
}
.desc .explain{
    text-align: justify;
}

/* ---------------CSS For Small Screen------------------ */

@media only screen and (max-width: 320px){
    nav .fa-solid {
        display: block;
        font-size: 25px;
        color: #fff;
    }
    nav ul{
        background: rgba(0,0,0,0.69);
        position: fixed;
        top: 0;
        right: -200px;
        width: 200px;
        height: 100vh;
        padding-top: 50px;
        z-index: 10;
        transition: right 0.5s;
    }
    nav ul li{
        display: block;
        margin: 25px;
    }
    nav ul .fa-solid{
        position: absolute;
        top: 25px;
        left: 25px;
        cursor: pointer;
        color: #fff;
    }
    nav .logo img{
        width: 18px;
        margin-right: 7px;
        margin-left: 5px;
    }
    nav .logo p{
        color: #fff;
        font-size: 12px;
        font-weight: 600;
        text-decoration: none;
    }
    
    #home{
        background-image: url('image/homeP.webp');
    }
    #home .container {
        margin-left: 5%;
    }
    
      #home .container h1 {
        font-size: 24px;
      }
    
      #home .container p {
        font-size: 11px;
        margin-top: 10px;
        margin-bottom: 22px;
      }
    
      #home .container .button {

        padding: 10px 16px;
        border-radius: 20px;
      }
    
      #home .container .button .button-content .btn {
        font-size: 12px;
      }


      #about{
        height: 750px;
      }
      #about .header h1{
        font-size: 24px;
      }
      #about .header p{
        font-size: 12px;
      }
      #about .deco{
        display: none;
      }
      #about .container{
        top: -50px;
      }
      .side-by-side {
        flex-direction: column;
        padding: 0;
        justify-content: center;
        align-items: center;
      }
    
      .side-by-side .box {
        width: 260px;
        padding: 40px 25px;
        margin: 20px 0;
      }
    
      .side-by-side .box h1 {
        font-size: 20px;
        margin-bottom: 20px;
      }
    
      .side-by-side .box p {
        font-size: 11px;
      }
      .side-by-side .box img{
        width: 14px;
      }
      .box .skill p{
        font-size: 12px;
      }
      .progress-bar {
        width: 90%;
        margin-bottom: 20px;
      }
    
      .progress-label {
        font-size: 12px;
        right: -30px;
      }

      #software{
        height: 1500px;
      }
      #software .header h1{
        font-size: 24px;
      }
      #software .header p{
        font-size: 12px;
      }
      #software .deco{
        top: -10px;
    }
    #software .deco .img1 {
        width: 100px;
        position: static;
        margin: 0;
    }
    
    #software .deco .img21 {
        display: none;
    }
    
    #software .deco .img22 {
        display: none;
    }
    
    #software .deco .img3 {
        width: 100px;
        position: static;
        top: 0;
    }
    
    #software .header {
        margin-top: 5%;
    }
    
      #software .container{
        top: -60px;
        justify-content: center;
        align-items: center;
        display: flex;
      }
      #software .container .software-info{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #software .container .software-info .fade-in-section.is-visible{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .software-info .box {
        width: 75%;
        height: 280px;
        margin: 20px 0;
    }
    
    .software-info .box h1 {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .software-info .box p {
        font-size: 12px;
        margin: 0;
    }
    
    .software-info .box .btn {
        bottom: -38px;
    }
    
    .more-info {
        position: static;
        margin-top: 20px;
    }
    
    .more-info p {
        font-size: 10.5px;
    }
    
    .more-info img {
        width: 15px;
    }    

      #portfolio .header h1{
        font-size: 24px;
      }
      #portfolio .header p{
        font-size: 12px;
      }
      #portfolio {
        height: 580px;
        overflow: hidden;
        overflow-x: hidden;
    }
    
    .carousel-container {
        width: 250px;
        height: 300px;
    }
    
    .carousel-item {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }
    
    .carousel-controls {
        right: -15%;
        top: 50%;
        width: 130%;
    }
    
    .carousel-controls button {
        font-size: 22px;
    }
    
    .carousel-description {
        font-size: 16px;
        margin-top: 20px;
    }    
    
      .carousel-dots {
        left: 50%;
        transform: translateX(-50%);
        width: 110px;
        height: 20px;
        padding: 0;
        margin-top: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
      }
    
      .dot {
        margin: 0 4px;
        width: 8px;
        height: 8px;
      }
      #hardware {
        height: 1500px;
        overflow: hidden;
      }
      #hardware .deco{
        top: -10px;
    }
      #hardware .deco .img1 {
        width: 100px;
        position: static;
        margin: 0;
      }
    
      #hardware .deco .img21,
      #hardware .deco .img22 {
        display: none;
      }
    
      #hardware .deco .img3 {
        width: 100px;
        position: static;
        top: 0;
      }
      #hardware .header h1{
        font-size: 24px;
      }
      #hardware .header p{
        font-size: 12px;
      }
      
      #hardware .container{
        top: -60px;
        justify-content: center;
        align-items: center;
        display: flex;
      }
      #hardware .container .hardware-info{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #hardware .container .hardware-info .fade-in-section.is-visible{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .hardware-info .box {
        width: 75%;
        height: 280px;
        margin: 20px 0;
      }
    
      .hardware-info .box h1 {
        font-size: 14px;
        margin-bottom: 10px;
      }
    
      .hardware-info .box p {
        font-size: 12px;
        margin: 0;
      }
    
      .hardware-info .box a .batt{
        position: relative;
        bottom: -48px;
      }
      .hardware-info .box a .ram{
        position: relative;
        bottom: -55px;
      }
      .hardware-info .box a .stor{
        position: relative;
        bottom: -40px;
      }
      .hardware-info .box a .lcd{
        position: relative;
        bottom: -50px;
      }

      #update .header h1{
        font-size: 24px;
      }
      #update .header p{
        font-size: 12px;
      }
      #update {
        height: 580px;
        overflow: hidden;
      }
    
      .carousel-container-u {
        width: 250px;
        height: 320px;
      }
    
      .carousel-item-u {
        width: 100%;
        height: auto;
        border-radius: 10px;
      }
    
      .carousel-controls-u {
        right: -15%;
        top: 50%;
        width: 130%;
      }
      .carousel-controls-u button{
        font-size: 22px;
      }
    
      .carousel-description-u {
        font-size: 16px;
        margin-top: 20px;
      }
    
      .carousel-dots-u {
        left: 50%;
        transform: translateX(-50%);
        width: 110px;
        height: 20px;
        padding: 0;
        margin-top: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
      }
    
      .dot-u {
        margin: 0 4px;
        width: 8px;
        height: 8px;
      }


      #cleaning {
        height: 1150px;
        overflow: hidden;
      }
      #cleaning .header h1{
        font-size: 24px;
      }
      #cleaning .header p{
        font-size: 12px;
      }
      #cleaning .deco{
        top: -10px;
    }
      #cleaning .deco .img1 {
        width: 100px;
        position: static;
        margin: 0;
      }
    
      #cleaning .deco .img21{
        display: none;
    }
    #cleaning .deco .img22{
        display: none;
    }
    
      #cleaning .deco .img3 {
        width: 100px;
        position: static;
        top: 0;
      }
    
      #cleaning .container{
        top: -45px;
        justify-content: center;
        align-items: center;
        display: flex;
      }
      #cleaning .container .cleaning-info{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #cleaning .container .cleaning-info .fade-in-section.is-visible{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
      .cleaning-info .box {
        width: 75%;
        height: 280px;
        margin: 20px 0;
      }
    
      .cleaning-info .box h1 {
        font-size: 14px;
        margin-bottom: 10px;
      }
    
      .cleaning-info .box p {
        font-size: 12px;
        margin: 0;
      }
    
      .cleaning-info .box .btn {
        bottom: -40px;
      }
    
      .img-com .plus::before {
        font-size: 20px;
      }
    
      .img-com img {
        margin: 5px;
      }

      #choose .header h1{
        font-size: 24px;
      }
      #choose .header p{
        font-size: 12px;
      }
      #choose {
        height: 1550px;
        overflow: hidden;
      }
      .choose-info .fade-in-section{
        display: flex;
        justify-content: center;
        align-items: center;
      }
    
      .choose-info .box {
        width: 85%;
        margin: 20px 10px;
      }
      .choose-info .box h1{
        font-size: 16px;
      }
      .choose-info .box p{
        font-size: 12px;
      }
    
      .choose-info .box img {
        width: 50px;
      }
    
      .ranking {
        bottom: 20px;
        font-size: 20px;
        left: 0;
      }

      #review .header h1{
        font-size: 24px;
      }
      #review {
        height: 580px;
        overflow: hidden;
      }
    
      .carousel-container-r {
        width: 120%;
        margin: 0;
        padding: 20px 0;
      }
    
      .carousel-content-r {
        width: 180%;
        transition: transform 0.5s ease;
      }
    
      .carousel-content-r .carousel-item-r {
        width: 250px;
        position: relative;
        left: -10px;
      }
    
      .carousel-item-r .customer-image {
        width: 80px;
        height: 80px;
        top: -50px;
      }
    
      .carousel-item-r .rate {
        top: -50px;
      }
    
      .carousel-item-r .review-description {
        height: 120px;
        top: -50px;
        font-size: 10px;
        text-align: left;
      }
    
      .carousel-item-r .r-line {
        top: -30px;
      }
    
      .carousel-item-r .customer-name {
        top: -30px;
        font-size: 12px;
      }
    
      .carousel-controls-r {
        display: none;
      }
      .carousel-dots-r {
        left: 50%;
        bottom: -30px;
        transform: translateX(-50%);
        width: 200px;
        padding: 0;
        margin-top: 15px;
      }
    
      .dot-r {
        margin: 0 3px;
      }

      #contact .header h1{
        font-size: 24px;
      }
      #contact .header p{
        font-size: 12px;
      }
      #contact {
        height: 480px;
        overflow: hidden;
      }
    
      #contact .container iframe {
        margin-top: 20px;
        margin-bottom: 20px;
        width: 250px;
        height: 220px;
      }
    
      #contact .container .contacts .box {
        width: 90px;
        height: 25px;
        margin: 0 5px;
      }
    
      #contact .container .contacts .box i {
        font-size: 12px;
        margin-right: 8px;
      }
    
      #contact .container .contacts .box p {
        font-size: 12px;
      }
    
      #contact .container .socials {
        margin-top: 40px;
      }
    
      #contact .container .socials .link {
        width: 60px;
        height: 25px;
        margin: 0 5px;
      }
    
      #contact .container .socials .link i {
        font-size: 14px;
        margin-right: 4px;
      }
    
      #contact .container .socials .link p {
        font-size: 8px;
      }
    
      #footer {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 24px;
        padding: 2px 3px;
      }
    
      #footer p {
        margin: 0 6px;
        font-size: 9px;
      }
      #footer .femail, #footer .own{
        display: none;
      }


    #format{
        margin-top: 5%;
    }
    #battery{
        margin-top: 5%;
    }
    #dust{
        margin-top: 5%;
    }
    .desc-container{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: #eaeaea;
    }
    .desc-img{
        width: 100%;
        height: auto;
    }
    .desc{
        padding: 30px;
        background-color: #fff;
        height: auto;
    }
    .desc .title{
        position: relative;
        left: -10px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: underline;
        margin-bottom: 30px;
    }
    .desc .explain{
        text-align: justify;
        font-size: 12px;
    }
}






@media only screen and (max-device-width: 375px) and (min-width: 321px){
    nav .fa-solid {
        display: block;
        font-size: 25px;
        color: #fff;
    }
    nav ul{
        background: rgba(0,0,0,0.69);
        position: fixed;
        top: 0;
        right: -200px;
        width: 200px;
        height: 100vh;
        padding-top: 50px;
        z-index: 10;
        transition: right 0.5s;
    }
    nav ul li{
        display: block;
        margin: 25px;
    }
    nav ul .fa-solid{
        position: absolute;
        top: 25px;
        left: 25px;
        cursor: pointer;
        color: #fff;
    }
    nav .logo img{
        width: 18px;
        margin-right: 7px;
        margin-left: 5px;
    }
    nav .logo p{
        color: #fff;
        font-size: 12px;
        font-weight: 600;
        text-decoration: none;
    }
    
    #home{
        background-image: url('image/homeP.webp');
    }
    #home .container {
        margin-left: 5%;
    }
    
      #home .container h1 {
        font-size: 26px;
      }
    
      #home .container p {
        font-size: 12px;
        margin-top: 10px;
        margin-bottom: 22px;
      }
    
      #home .container .button {

        padding: 10px 16px;
        border-radius: 20px;
      }
    
      #home .container .button .button-content .btn {
        font-size: 12px;
      }


      #about{
        height: 720px;
      }
      #about .header h1{
        font-size: 24px;
      }
      #about .header p{
        font-size: 12px;
      }
      #about .deco{
        display: none;
      }
      #about .container{
        top: -50px;
      }
      .side-by-side {
        flex-direction: column;
        padding: 0;
        justify-content: center;
        align-items: center;
      }
    
      .side-by-side .box {
        width: 260px;
        padding: 45px 25px;
        margin: 20px 0;
      }
    
      .side-by-side .box h1 {
        font-size: 22px;
        margin-bottom: 20px;
      }
    
      .side-by-side .box p {
        font-size: 11.5px;
      }
      .side-by-side .box img{
        width: 14px;
      }
      .box .skill p{
        font-size: 12px;
      }
      .progress-bar {
        width: 90%;
        margin-bottom: 20px;
      }
    
      .progress-label {
        font-size: 12px;
        right: -30px;
      }

      #software{
        height: 1500px;
      }
      #software .header h1{
        font-size: 24px;
      }
      #software .header p{
        font-size: 12px;
      }
      #software .deco{
        top: -10px;
    }
    #software .deco .img1 {
        width: 100px;
        position: static;
        margin: 0;
    }
    
    #software .deco .img21 {
        display: none;
    }
    
    #software .deco .img22 {
        display: none;
    }
    
    #software .deco .img3 {
        width: 100px;
        position: static;
        top: 0;
    }
    
    #software .header {
        margin-top: 5%;
    }
    
      #software .container{
        top: -60px;
        justify-content: center;
        align-items: center;
        display: flex;
      }
      #software .container .software-info{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #software .container .software-info .fade-in-section.is-visible{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .software-info .box {
        width: 65%;
        height: 280px;
        margin: 20px 0;
    }
    
    .software-info .box h1 {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .software-info .box p {
        font-size: 12px;
        margin: 0;
    }
    
    .software-info .box .btn {
        bottom: -38px;
    }
    
    .more-info {
        position: static;
        margin-top: 20px;
    }
    
    .more-info p {
        font-size: 12px;
    }
    
    .more-info img {
        width: 15px;
    }    

      #portfolio .header h1{
        font-size: 24px;
      }
      #portfolio .header p{
        font-size: 12px;
      }
      #portfolio {
        height: 580px;
        overflow: hidden;
        overflow-x: hidden;
    }
    
    .carousel-container {
        width: 250px;
        height: 300px;
    }
    
    .carousel-item {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }
    
    .carousel-controls {
        right: -15%;
        top: 50%;
        width: 130%;
    }
    
    .carousel-controls button {
        font-size: 22px;
    }
    
    .carousel-description {
        font-size: 16px;
        margin-top: 20px;
    }    
    
      .carousel-dots {
        left: 50%;
        transform: translateX(-50%);
        width: 110px;
        height: 20px;
        padding: 0;
        margin-top: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
      }
    
      .dot {
        margin: 0 4px;
        width: 8px;
        height: 8px;
      }
      #hardware {
        height: 1500px;
        overflow: hidden;
      }
      #hardware .deco{
        top: -10px;
    }
      #hardware .deco .img1 {
        width: 100px;
        position: static;
        margin: 0;
      }
    
      #hardware .deco .img21,
      #hardware .deco .img22 {
        display: none;
      }
    
      #hardware .deco .img3 {
        width: 100px;
        position: static;
        top: 0;
      }
      #hardware .header h1{
        font-size: 24px;
      }
      #hardware .header p{
        font-size: 12px;
      }
      
      #hardware .container{
        top: -60px;
        justify-content: center;
        align-items: center;
        display: flex;
      }
      #hardware .container .hardware-info{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #hardware .container .hardware-info .fade-in-section.is-visible{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .hardware-info .box {
        width: 65%;
        height: 280px;
        margin: 20px 0;
      }
    
      .hardware-info .box h1 {
        font-size: 14px;
        margin-bottom: 10px;
      }
    
      .hardware-info .box p {
        font-size: 12px;
        margin: 0;
      }
    
      .hardware-info .box a .batt{
        position: relative;
        bottom: -56px;
      }
      .hardware-info .box a .ram{
        position: relative;
        bottom: -55px;
      }
      .hardware-info .box a .stor{
        position: relative;
        bottom: -40px;
      }
      .hardware-info .box a .lcd{
        position: relative;
        bottom: -50px;
      }

      #update .header h1{
        font-size: 24px;
      }
      #update .header p{
        font-size: 12px;
      }
      #update {
        height: 580px;
        overflow: hidden;
      }
    
      .carousel-container-u {
        width: 250px;
        height: 320px;
      }
    
      .carousel-item-u {
        width: 100%;
        height: auto;
        border-radius: 10px;
      }
    
      .carousel-controls-u {
        right: -15%;
        top: 50%;
        width: 130%;
      }
      .carousel-controls-u button{
        font-size: 22px;
      }
    
      .carousel-description-u {
        font-size: 16px;
        margin-top: 20px;
      }
    
      .carousel-dots-u {
        left: 50%;
        transform: translateX(-50%);
        width: 110px;
        height: 20px;
        padding: 0;
        margin-top: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
      }
    
      .dot-u {
        margin: 0 4px;
        width: 8px;
        height: 8px;
      }


      #cleaning {
        height: 1150px;
        overflow: hidden;
      }
      #cleaning .header h1{
        font-size: 24px;
      }
      #cleaning .header p{
        font-size: 12px;
      }
      #cleaning .deco{
        top: -10px;
    }
      #cleaning .deco .img1 {
        width: 100px;
        position: static;
        margin: 0;
      }
    
      #cleaning .deco .img21{
        display: none;
    }
    #cleaning .deco .img22{
        display: none;
    }
    
      #cleaning .deco .img3 {
        width: 100px;
        position: static;
        top: 0;
      }
    
      #cleaning .container{
        top: -45px;
        justify-content: center;
        align-items: center;
        display: flex;
      }
      #cleaning .container .cleaning-info{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #cleaning .container .cleaning-info .fade-in-section.is-visible{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
      .cleaning-info .box {
        width: 65%;
        height: 280px;
        margin: 20px 0;
      }
    
      .cleaning-info .box h1 {
        font-size: 14px;
        margin-bottom: 10px;
      }
    
      .cleaning-info .box p {
        font-size: 12px;
        margin: 0;
      }
    
      .cleaning-info .box a .RM30 {
        bottom: -50px;
      }
      .cleaning-info .box a .renew {
        bottom: -40px;
      }
      .cleaning-info .box a .RM75 {
        bottom: -40px;
      }
    
      .img-com .plus::before {
        font-size: 20px;
      }
    
      .img-com img {
        margin: 5px;
      }

      #choose .header h1{
        font-size: 24px;
      }
      #choose .header p{
        font-size: 12px;
      }
      #choose {
        height: 1520px;
        overflow: hidden;
      }
      .choose-info .fade-in-section{
        display: flex;
        justify-content: center;
        align-items: center;
      }
    
      .choose-info .box {
        width: 75%;
        margin: 20px 10px;
      }
      .choose-info .box h1{
        font-size: 16px;
      }
      .choose-info .box p{
        font-size: 12px;
      }
    
      .choose-info .box img {
        width: 50px;
      }
    
      .ranking {
        bottom: 20px;
        font-size: 20px;
        left: 0;
      }

      #review .header h1{
        font-size: 24px;
      }
      #review {
        height: 580px;
        overflow: hidden;
      }
    
      .carousel-container-r {
        width: 120%;
        margin: 0;
        padding: 20px 0;
      }
    
      .carousel-content-r {
        width: 180%;
        transition: transform 0.5s ease;
      }
    
      .carousel-content-r .carousel-item-r {
        width: 250px;
        position: relative;
        left: -10px;
      }
    
      .carousel-item-r .customer-image {
        width: 80px;
        height: 80px;
        top: -50px;
      }
    
      .carousel-item-r .rate {
        top: -50px;
      }
    
      .carousel-item-r .review-description {
        height: 120px;
        top: -50px;
        font-size: 10px;
        text-align: left;
      }
    
      .carousel-item-r .r-line {
        top: -30px;
      }
    
      .carousel-item-r .customer-name {
        top: -30px;
        font-size: 12px;
      }
    
      .carousel-controls-r {
        display: none;
      }
      .carousel-dots-r {
        left: 50%;
        bottom: -30px;
        transform: translateX(-50%);
        width: 200px;
        padding: 0;
        margin-top: 15px;
      }
    
      .dot-r {
        margin: 0 3px;
      }

      #contact .header h1{
        font-size: 24px;
      }
      #contact .header p{
        font-size: 12px;
      }
      #contact {
        height: 480px;
        overflow: hidden;
      }
    
      #contact .container iframe {
        margin-top: 20px;
        margin-bottom: 20px;
        width: 250px;
        height: 220px;
      }
    
      #contact .container .contacts .box {
        width: 90px;
        height: 25px;
        margin: 0 5px;
      }
    
      #contact .container .contacts .box i {
        font-size: 12px;
        margin-right: 8px;
      }
    
      #contact .container .contacts .box p {
        font-size: 12px;
      }
    
      #contact .container .socials {
        margin-top: 40px;
      }
    
      #contact .container .socials .link {
        width: 60px;
        height: 25px;
        margin: 0 5px;
      }
    
      #contact .container .socials .link i {
        font-size: 14px;
        margin-right: 4px;
      }
    
      #contact .container .socials .link p {
        font-size: 8px;
      }
    
      #footer {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 24px;
        padding: 2px 3px;
      }
    
      #footer p {
        margin: 0 6px;
        font-size: 10px;
      }
      #footer .femail, #footer .own{
        display: none;
      }


    #format{
        margin-top: 5%;
    }
    #battery{
        margin-top: 5%;
    }
    #dust{
        margin-top: 5%;
    }
    .desc-container{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: #eaeaea;
    }
    .desc-img{
        width: 100%;
        height: auto;
    }
    .desc{
        padding: 30px;
        background-color: #fff;
        height: auto;
    }
    .desc .title{
        position: relative;
        left: -10px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: underline;
        margin-bottom: 30px;
    }
    .desc .explain{
        text-align: justify;
        font-size: 12px;
    }
}




@media only screen and (max-device-width: 425px) and (min-width:376px){
    nav .fa-solid {
        display: block;
        font-size: 25px;
        color: #fff;
    }
    nav ul{
        background: rgba(0,0,0,0.69);
        position: fixed;
        top: 0;
        right: -200px;
        width: 200px;
        height: 100vh;
        padding-top: 50px;
        z-index: 10;
        transition: right 0.5s;
    }
    nav ul li{
        display: block;
        margin: 25px;
    }
    nav ul .fa-solid{
        position: absolute;
        top: 25px;
        left: 25px;
        cursor: pointer;
        color: #fff;
    }
    nav .logo img{
        width: 18px;
        margin-right: 7px;
        margin-left: 5px;
    }
    nav .logo p{
        color: #fff;
        font-size: 12px;
        font-weight: 600;
        text-decoration: none;
    }
    
    #home{
        background-image: url('image/homeP.webp');
    }
    #home .container {
        margin-left: 5%;
    }
    
      #home .container h1 {
        font-size: 26px;
      }
    
      #home .container p {
        font-size: 15.5px;
        margin-top: 10px;
        margin-bottom: 22px;
      }
    
      #home .container .button {

        padding: 10px 16px;
        border-radius: 20px;
      }
    
      #home .container .button .button-content .btn {
        font-size: 12px;
      }


      #about{
        height: 740px;
      }
      #about .header h1{
        font-size: 24px;
      }
      #about .header p{
        font-size: 12px;
      }
      #about .deco{
        display: none;
      }
      #about .container{
        top: -50px;
      }
      .side-by-side {
        flex-direction: column;
        padding: 0;
        justify-content: center;
        align-items: center;
      }
    
      .side-by-side .box {
        width: 260px;
        padding: 40px 25px;
        margin: 20px 0;
      }
    
      .side-by-side .box h1 {
        font-size: 22px;
        margin-bottom: 20px;
      }
    
      .side-by-side .box p {
        font-size: 11.5px;
      }
      .side-by-side .box img{
        width: 14px;
      }
      .box .skill p{
        font-size: 12px;
      }
      .progress-bar {
        width: 90%;
        margin-bottom: 20px;
      }
    
      .progress-label {
        font-size: 12px;
        right: -30px;
      }

      #software{
        height: 1500px;
      }
      #software .header h1{
        font-size: 24px;
      }
      #software .header p{
        font-size: 12px;
      }
      #software .deco{
        top: -10px;
    }
    #software .deco .img1 {
        width: 100px;
        position: static;
        margin: 0;
    }
    
    #software .deco .img21 {
        display: none;
    }
    
    #software .deco .img22 {
        display: none;
    }
    
    #software .deco .img3 {
        width: 100px;
        position: static;
        top: 0;
    }
    
    #software .header {
        margin-top: 5%;
    }
    
      #software .container{
        top: -60px;
        justify-content: center;
        align-items: center;
        display: flex;
      }
      #software .container .software-info{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #software .container .software-info .fade-in-section.is-visible{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .software-info .box {
        width: 65%;
        height: 280px;
        margin: 20px 0;
    }
    
    .software-info .box h1 {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .software-info .box p {
        font-size: 12px;
        margin: 0;
    }
    
    .software-info .box .btn {
        bottom: -47px;
    }
    
    .more-info {
        position: static;
        margin-top: 20px;
    }
    
    .more-info p {
        font-size: 13px;
    }
    
    .more-info img {
        width: 16px;
    }    

      #portfolio .header h1{
        font-size: 24px;
      }
      #portfolio .header p{
        font-size: 12px;
      }
      #portfolio {
        height: 600px;
        overflow: hidden;
        overflow-x: hidden;
    }
    
    .carousel-container {
        width: 300px;
        height: 350px;
    }
    
    .carousel-item {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }
    
    .carousel-controls {
        right: -15%;
        top: 50%;
        width: 130%;
    }
    
    .carousel-controls button {
        font-size: 24px;
    }
    
    .carousel-description {
        font-size: 16px;
        margin-top: 20px;
    }    
    
      .carousel-dots {
        left: 50%;
        transform: translateX(-50%);
        width: 110px;
        height: 20px;
        padding: 0;
        margin-top: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
      }
    
      .dot {
        margin: 0 4px;
        width: 8px;
        height: 8px;
      }
      #hardware {
        height: 1500px;
        overflow: hidden;
      }
      #hardware .deco{
        top: -10px;
    }
      #hardware .deco .img1 {
        width: 100px;
        position: static;
        margin: 0;
      }
    
      #hardware .deco .img21,
      #hardware .deco .img22 {
        display: none;
      }
    
      #hardware .deco .img3 {
        width: 100px;
        position: static;
        top: 0;
      }
      #hardware .header h1{
        font-size: 24px;
      }
      #hardware .header p{
        font-size: 12px;
      }
      
      #hardware .container{
        top: -60px;
        justify-content: center;
        align-items: center;
        display: flex;
      }
      #hardware .container .hardware-info{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #hardware .container .hardware-info .fade-in-section.is-visible{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .hardware-info .box {
        width: 65%;
        height: 280px;
        margin: 20px 0;
      }
    
      .hardware-info .box h1 {
        font-size: 14px;
        margin-bottom: 10px;
      }
    
      .hardware-info .box p {
        font-size: 12px;
        margin: 0;
      }
    
      .hardware-info .box a .batt{
        position: relative;
        bottom: -55px;
      }
      .hardware-info .box a .ram{
        position: relative;
        bottom: -55px;
      }
      .hardware-info .box a .stor{
        position: relative;
        bottom: -48px;
      }
      .hardware-info .box a .lcd{
        position: relative;
        bottom: -50px;
      }

      #update .header h1{
        font-size: 24px;
      }
      #update .header p{
        font-size: 12px;
      }
      #update {
        height: 600px;
        overflow: hidden;
      }
    
      .carousel-container-u {
        width: 300px;
        height: 350px;
      }
    
      .carousel-item-u {
        width: 100%;
        height: auto;
        border-radius: 10px;
      }
    
      .carousel-controls-u {
        right: -15%;
        top: 50%;
        width: 130%;
      }
      .carousel-controls-u button{
        font-size: 24px;
      }
    
      .carousel-description-u {
        font-size: 16px;
        margin-top: 20px;
      }
    
      .carousel-dots-u {
        left: 50%;
        transform: translateX(-50%);
        width: 110px;
        height: 20px;
        padding: 0;
        margin-top: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
      }
    
      .dot-u {
        margin: 0 4px;
        width: 8px;
        height: 8px;
      }


      #cleaning {
        height: 1150px;
        overflow: hidden;
      }
      #cleaning .header h1{
        font-size: 24px;
      }
      #cleaning .header p{
        font-size: 12px;
      }
      #cleaning .deco{
        top: -10px;
    }
      #cleaning .deco .img1 {
        width: 100px;
        position: static;
        margin: 0;
      }
    
      #cleaning .deco .img21{
        display: none;
    }
    #cleaning .deco .img22{
        display: none;
    }
    
      #cleaning .deco .img3 {
        width: 100px;
        position: static;
        top: 0;
      }
    
      #cleaning .container{
        top: -45px;
        justify-content: center;
        align-items: center;
        display: flex;
      }
      #cleaning .container .cleaning-info{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #cleaning .container .cleaning-info .fade-in-section.is-visible{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
      .cleaning-info .box {
        width: 65%;
        height: 280px;
        margin: 20px 0;
      }
    
      .cleaning-info .box h1 {
        font-size: 14px;
        margin-bottom: 10px;
      }
    
      .cleaning-info .box p {
        font-size: 12px;
        margin: 0;
      }
    
      .cleaning-info .box a .RM30 {
        bottom: -50px;
      }
      .cleaning-info .box a .renew {
        bottom: -50px;
      }
      .cleaning-info .box a .RM75 {
        bottom: -40px;
      }
    
      .img-com .plus::before {
        font-size: 20px;
      }
    
      .img-com img {
        margin: 5px;
      }

      #choose .header h1{
        font-size: 24px;
      }
      #choose .header p{
        font-size: 12px;
      }
      #choose {
        height: 1550px;
        overflow: hidden;
      }
      .choose-info .fade-in-section{
        display: flex;
        justify-content: center;
        align-items: center;
      }
    
      .choose-info .box {
        width: 70%;
        margin: 20px 10px;
      }
      .choose-info .box h1{
        font-size: 16px;
      }
      .choose-info .box p{
        font-size: 12px;
      }
    
      .choose-info .box img {
        width: 50px;
      }
    
      .ranking {
        bottom: 20px;
        font-size: 20px;
        left: 0;
      }

      #review .header h1{
        font-size: 24px;
      }
      #review {
        height: 580px;
        overflow: hidden;
      }
    
      .carousel-container-r {
        width: 120%;
        margin: 0;
        padding: 20px 0;
      }
    
      .carousel-content-r {
        width: 180%;
        transition: transform 0.5s ease;
      }
    
      .carousel-content-r .carousel-item-r {
        width: 250px;
        position: relative;
        left: -10px;
      }
    
      .carousel-item-r .customer-image {
        width: 80px;
        height: 80px;
        top: -50px;
      }
    
      .carousel-item-r .rate {
        top: -50px;
      }
    
      .carousel-item-r .review-description {
        height: 120px;
        top: -50px;
        font-size: 10px;
        text-align: left;
      }
    
      .carousel-item-r .r-line {
        top: -30px;
      }
    
      .carousel-item-r .customer-name {
        top: -30px;
        font-size: 12px;
      }
    
      .carousel-controls-r {
        display: none;
      }
      .carousel-dots-r {
        left: 50%;
        bottom: -30px;
        transform: translateX(-50%);
        width: 200px;
        padding: 0;
        margin-top: 15px;
      }
    
      .dot-r {
        margin: 0 3px;
      }

      #contact .header h1{
        font-size: 24px;
      }
      #contact .header p{
        font-size: 12px;
      }
      #contact {
        height: 480px;
        overflow: hidden;
      }
    
      #contact .container iframe {
        margin-top: 20px;
        margin-bottom: 20px;
        width: 250px;
        height: 220px;
      }
    
      #contact .container .contacts .box {
        width: 90px;
        height: 25px;
        margin: 0 5px;
      }
    
      #contact .container .contacts .box i {
        font-size: 12px;
        margin-right: 8px;
      }
    
      #contact .container .contacts .box p {
        font-size: 12px;
      }
    
      #contact .container .socials {
        margin-top: 40px;
      }
    
      #contact .container .socials .link {
        width: 60px;
        height: 25px;
        margin: 0 5px;
      }
    
      #contact .container .socials .link i {
        font-size: 14px;
        margin-right: 4px;
      }
    
      #contact .container .socials .link p {
        font-size: 8px;
      }
    
      #footer {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 24px;
        padding: 2px 3px;
      }
    
      #footer p {
        margin: 0 6px;
        font-size: 11px;
      }
      #footer .femail, #footer .own{
        display: none;
      }


    #format{
        margin-top: 5%;
    }
    #battery{
        margin-top: 5%;
    }
    #dust{
        margin-top: 5%;
    }
    .desc-container{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: #eaeaea;
    }
    .desc-img{
        width: 100%;
        height: auto;
    }
    .desc{
        padding: 30px;
        background-color: #fff;
        height: auto;
    }
    .desc .title{
        position: relative;
        left: -10px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: underline;
        margin-bottom: 30px;
    }
    .desc .explain{
        text-align: justify;
        font-size: 12px;
    }
}




@media only screen and (max-device-width: 768px) and (min-width: 426px){
  nav .fa-solid {
    display: block;
    font-size: 25px;
    color: #fff;
}
nav ul{
    background: rgba(0,0,0,0.69);
    position: fixed;
    top: 0;
    right: -200px;
    width: 200px;
    height: 100vh;
    padding-top: 50px;
    z-index: 10;
    transition: right 0.5s;
}
nav ul li{
    display: block;
    margin: 25px;
}
nav ul .fa-solid{
    position: absolute;
    top: 25px;
    left: 25px;
    cursor: pointer;
    color: #fff;
}
nav .logo img{
    width: 18px;
    margin-right: 7px;
    margin-left: 5px;
}
nav .logo p{
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

#home{
    background-image: url('image/home2.webp');
}
#home .container {
    margin-left: 5%;
}

  #home .container h1 {
    font-size: 36px;
  }

  #home .container p {
    font-size: 21.5px;
    margin-top: 10px;
    margin-bottom: 22px;
  }

  #home .container .button {

    padding: 10px 16px;
    border-radius: 20px;
  }

  #home .container .button .button-content .btn {
    font-size: 12px;
  }


  #about{
    height: 480px;
  }
  #about .header h1{
    font-size: 24px;
  }
  #about .header p{
    font-size: 12px;
  }
  #about .deco{
    display: none;
  }
  #about .container{
    top: -50px;
  }
  .side-by-side {
    padding: 0;
    justify-content: center;
    align-items: center;
  }

  .side-by-side .box {
    width: calc(100% - 100px);
    padding: 40px 25px;
    margin: 20px 15px;
  }

  .side-by-side .box h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .side-by-side .box p {
    font-size: 12.5px;
  }
  .side-by-side .box img{
    width: 14px;
  }
  .box .skill p{
    font-size: 12px;
  }
  .progress-bar {
    width: 90%;
    margin-bottom: 20px;
  }

  .progress-label {
    font-size: 12px;
    right: -30px;
  }

  #software{
    height: 880px;
  }
  #software .header h1{
    font-size: 24px;
  }
  #software .header p{
    font-size: 12px;
  }
  #software .deco{
    top: -10px;
}
#software .deco .img1 {
    width: 100px;
    position: static;
    margin: 0;
}

#software .deco .img21 {
    display: none;
}

#software .deco .img22 {
    display: none;
}

#software .deco .img3 {
    width: 100px;
    position: static;
    top: 0;
}

#software .header {
    margin-top: 5%;
}

  #software .container{
    top: -60px;
    justify-content: center;
    align-items: center;
    display: flex;
  }
  #software .container .software-info{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
#software .container .software-info .fade-in-section.is-visible{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.software-info .box {
    width: 250px;
    height: 280px;
    margin: 20px 30px;
}

.software-info .box h1 {
    font-size: 14px;
    margin-bottom: 10px;
}

.software-info .box p {
    font-size: 12px;
    margin: 0;
}

.software-info .box .btn {
    bottom: -47px;
}

.more-info {
    position: static;
    margin-top: 20px;
}

.more-info p {
    font-size: 13px;
}

.more-info img {
    width: 16px;
}    

  #portfolio .header h1{
    font-size: 24px;
  }
  #portfolio .header p{
    font-size: 12px;
  }
  #portfolio {
    height: 600px;
    overflow: hidden;
    overflow-x: hidden;
}

.carousel-container {
    width: 550px;
    height: 350px;
}

.carousel-item {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.carousel-controls {
    right: -15%;
    top: 50%;
    width: 130%;
}

.carousel-controls button {
    font-size: 24px;
}

.carousel-description {
    font-size: 16px;
    margin-top: 20px;
}    

  .carousel-dots {
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 20px;
    padding: 0;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .dot {
    margin: 0 4px;
    width: 8px;
    height: 8px;
  }
  #hardware {
    height: 880px;
    overflow: hidden;
  }
  #hardware .deco{
    top: -10px;
}
  #hardware .deco .img1 {
    width: 100px;
    position: static;
    margin: 0;
  }

  #hardware .deco .img21,
  #hardware .deco .img22 {
    display: none;
  }

  #hardware .deco .img3 {
    width: 100px;
    position: static;
    top: 0;
  }
  #hardware .header h1{
    font-size: 24px;
  }
  #hardware .header p{
    font-size: 12px;
  }
  
  #hardware .container{
    top: -60px;
    justify-content: center;
    align-items: center;
    display: flex;
  }
  #hardware .container .hardware-info{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
#hardware .container .hardware-info .fade-in-section.is-visible{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.hardware-info .box {
    width: 250px;
    height: 280px;
    margin: 20px 30px;
  }

  .hardware-info .box h1 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .hardware-info .box p {
    font-size: 12px;
    margin: 0;
  }

  .hardware-info .box a .batt{
    position: relative;
    bottom: -55px;
  }
  .hardware-info .box a .ram{
    position: relative;
    bottom: -55px;
  }
  .hardware-info .box a .stor{
    position: relative;
    bottom: -48px;
  }
  .hardware-info .box a .lcd{
    position: relative;
    bottom: -50px;
  }

  #update .header h1{
    font-size: 24px;
  }
  #update .header p{
    font-size: 12px;
  }
  #update {
    height: 600px;
    overflow: hidden;
  }

  .carousel-container-u {
    width: 550px;
    height: 350px;
  }

  .carousel-item-u {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .carousel-controls-u {
    right: -15%;
    top: 50%;
    width: 130%;
  }
  .carousel-controls-u button{
    font-size: 24px;
  }

  .carousel-description-u {
    font-size: 16px;
    margin-top: 20px;
  }

  .carousel-dots-u {
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 20px;
    padding: 0;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .dot-u {
    margin: 0 4px;
    width: 8px;
    height: 8px;
  }


  #cleaning {
    height: 880px;
    overflow: hidden;
  }
  #cleaning .header h1{
    font-size: 24px;
  }
  #cleaning .header p{
    font-size: 12px;
  }
  #cleaning .deco{
    top: -10px;
}
  #cleaning .deco .img1 {
    width: 100px;
    position: static;
    margin: 0;
  }

  #cleaning .deco .img21{
    display: none;
}
#cleaning .deco .img22{
    display: none;
}

  #cleaning .deco .img3 {
    width: 100px;
    position: static;
    top: 0;
  }

  #cleaning .container{
    top: -45px;
    justify-content: center;
    align-items: center;
    display: flex;
  }
  #cleaning .container .cleaning-info{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
#cleaning .container .cleaning-info .fade-in-section.is-visible{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
  .cleaning-info .box {
    width: 250px;
    height: 280px;
    margin: 20px 30px;
  }

  .cleaning-info .box h1 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .cleaning-info .box p {
    font-size: 12px;
    margin: 0;
  }

  .cleaning-info .box a .RM30 {
    bottom: -50px;
  }
  .cleaning-info .box a .renew {
    bottom: -50px;
  }
  .cleaning-info .box a .RM75 {
    bottom: -40px;
  }

  .img-com .plus::before {
    font-size: 20px;
  }

  .img-com img {
    margin: 5px;
  }

  #choose .header h1{
    font-size: 24px;
  }
  #choose .header p{
    font-size: 12px;
  }
  #choose {
    height: 880px;
    overflow: hidden;
  }
  .choose-info .fade-in-section{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .choose-info .box {
    width: 250px;
    margin: 20px 30px;
  }
  .choose-info .box h1{
    font-size: 16px;
  }
  .choose-info .box p{
    font-size: 12px;
  }

  .choose-info .box img {
    width: 50px;
  }

  .ranking {
    bottom: 20px;
    font-size: 20px;
    left: 0;
  }

  #review .header h1{
    font-size: 24px;
  }
  #review {
    height: 600px;
    overflow: hidden;
  }

  .carousel-container-r {
    width: 120%;
    margin: 0;
    padding: 20px 0;
  }

  .carousel-content-r {
    width: 180%;
    transition: transform 0.5s ease;
  }

  .carousel-content-r .carousel-item-r {
    width: 250px;
    position: relative;
    left: -10px;
  }

  .carousel-item-r .customer-image {
    width: 80px;
    height: 80px;
    top: -50px;
  }

  .carousel-item-r .rate {
    top: -50px;
  }

  .carousel-item-r .review-description {
    top: -50px;
    font-size: 10px;
    text-align: left;
  }

  .carousel-item-r .r-line {
    top: -30px;
  }

  .carousel-item-r .customer-name {
    top: -30px;
    font-size: 12px;
  }

  .carousel-controls-r {
    display: none;
  }
  .carousel-dots-r {
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    width: 200px;
    padding: 0;
    margin-top: 15px;
  }

  .dot-r {
    margin: 0 3px;
  }

  #contact .header h1{
    font-size: 24px;
  }
  #contact .header p{
    font-size: 12px;
  }
  #contact {
    height: 480px;
    overflow: hidden;
  }

  #contact .container iframe {
    margin-top: 20px;
    margin-bottom: 20px;
    width: 250px;
    height: 220px;
  }

  #contact .container .contacts .box {
    width: 90px;
    height: 25px;
    margin: 0 5px;
  }

  #contact .container .contacts .box i {
    font-size: 12px;
    margin-right: 8px;
  }

  #contact .container .contacts .box p {
    font-size: 12px;
  }

  #contact .container .socials {
    margin-top: 40px;
  }

  #contact .container .socials .link {
    width: 60px;
    height: 25px;
    margin: 0 5px;
  }

  #contact .container .socials .link i {
    font-size: 14px;
    margin-right: 4px;
  }

  #contact .container .socials .link p {
    font-size: 8px;
  }

  #footer {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    padding: 2px 3px;
  }

  #footer p {
    margin: 0 6px;
    font-size: 11px;
  }
  #footer .femail, #footer .own{
    display: none;
  }


#format{
    margin-top: 5%;
}
#battery{
    margin-top: 5%;
}
#dust{
    margin-top: 5%;
}
.desc-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #eaeaea;
}
.desc-img{
    width: 100%;
    height: auto;
}
.desc{
    padding: 30px;
    background-color: #fff;
    height: auto;
}
.desc .title{
    position: relative;
    left: -10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
    margin-bottom: 30px;
}
.desc .explain{
    text-align: justify;
    font-size: 12px;
}
}