*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    justify-content: center;
    background-color: #0A0A0A;
    color: #E5E5E5;
    font-family: Poppins;
}

body h2{
    text-align: center;
}

html{
    scroll-behavior: smooth;
    scroll-padding-top: 250px;
}

#header{
    width: 100%;
    height: 800px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
}

.navigation{
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background-color: rgba(12, 12, 12, 0.4);
    backdrop-filter: blur(5px);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 5;
}

.navigation .logo{
    text-decoration: none;
}

.navigation .logo img{
    width: 50px;
    height: 50px;
    border-radius: 30px;
}

.navigation nav ul{
    display: flex;
    align-items: center;
    list-style: none;
    gap: 20px;
}

.navigation nav ul li{
    position: relative;
}

.navigation nav ul li .title{
    position: absolute;
    right: 0px;
    bottom: 100%;
    width: 100px;
    color: #E5E5E5;
    background-color: #0A0A0A;
    font-size: 13px;
    opacity: 0;
    transition: all 1s ease;
    padding: 5px;
}

.mode-toggle:hover .title{
    opacity: 1;
    
}

.navigation nav ul li #mode-toggle{
    font-size: 25px;
    cursor: pointer;
}

.navigation nav ul li a{
    text-decoration: none;
    color: #E5E5E5;
    position: relative;
    padding: 10px;
}
.navigation nav ul li a::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1px;
    background-color: #00FFFF;
    transition: all 1s ease;
}

.navigation nav ul li a:hover::before{
    width: 100%;
}


.navigation .fa-bars{
    display: none;
}



.mobile-menu{
    width: 100%;
    height: 100vh;
    background-color: #0A0A0A;
    padding: 40px 10px;
    z-index: 10;
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 1s ease-in-out;
    transform: translateX(-100%);
}

.mobile-menu.active{
    transform: translateX(0);
}

.mobile-menu nav{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu .fa-xmark{
    position: absolute;
    right: 5%;
    top: 5%;
    font-size: 25px;
}

.mobile-menu a{
    text-decoration: none;
    color: #E5E5E5;
}
.mobile-menu nav ul{
    width: 70%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    list-style: none;
}

.mobile-menu nav ul li #mode-toggle{
    font-size: 25px;
    cursor: pointer;
}

.header-imp{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 10px;
    flex-wrap: wrap;
}

.header-imp .text-side{
    max-width: 100%;
    width: 400px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.header-imp .text-side div{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-links{
    width: 150px;
    padding: 13px;
    text-decoration: none;
    color: #0A0A0A;
    border-radius: 3px;
    background-color: #00FFFF;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 1s ease-in-out;
}

.cta-links:hover{
    background-color: #603cff;
    color: #E5E5E5;
}

.header-imp .image-side {
    max-width: 100%;
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header-imp .image-side .bg{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    /* background-color: #00ffff42; */
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* box-shadow: 40px 40px 100px 50px #00FFFF; */
    z-index: -1;
}

.header-imp .image-side #main-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 25%;
}

#main{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

#about{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 20px;
}

#about img{
    max-width: 100%;
    width: 500px;
    height: 500px;
    object-fit: contain;
}

#about div{
    max-width: 100%;
    width: 400px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#gallery , #gallery .gallery-images{
    height: auto;
    display: flex;
}

#gallery {
    width: 100%;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

#gallery .gallery-images{
    flex-wrap: wrap;
    padding: 10px;
    gap: 30px;
    /* justify-content: space-evenly; */
    max-width: 100%;
    width: 1000px;
}
#gallery .gallery-images img, .all-images img, #gallery .gallery-images .video-cont, .all-images .video-cont {
    max-width: 45%;
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: all .5s ease;
    position: relative;
    overflow: hidden;
}

.video-cont video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-cont i{
    position: absolute;
    left: 3%;
    bottom: 3%;
    z-index: 1;
    width:25px;
    height:25px;
    font-size: 20px;
    color: #E5E5E5;
}

#gallery .gallery-images img:hover, .all-images img:hover, #gallery .gallery-images .video-cont:hover, .all-images video:hover{
    filter: saturate(0%) brightness(70%);
}

#gallery button, #contact .form-wrapper form input[type='submit']{
    cursor: pointer;
    border: none;
}


.all-images, .image-full-view{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    display: flex;
    justify-content: center;
    padding: 10px;
    flex-wrap: wrap;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 6;
    opacity: 0;
    visibility: hidden;
    transition: opacity .1s ease;
}

.all-images{
    padding-top: 50px;
}

.image-full-view{
    align-items: center;
    z-index: 7;
}

.image-full-view::-webkit-scrollbar{
    -webkit-appearance: none;
    appearance: none;

}

.image-full-view img, .image-full-view video{
    width: 90%;
    height: 80%;
    object-fit: contain;
}


.all-images::-webkit-scrollbar{
    -webkit-appearance: none;
    appearance: none;
    width: 5px;
    border-radius: 10px;
    background-color: #0A0A0A;
}

.all-images::-webkit-scrollbar-thumb{
    appearance: none;
    background-color: #00FFFF;
    border-radius: 10px;
}

.all-images.active, .image-full-view.active{
    opacity: 1;
    visibility: visible;
}



.all-images i, .image-full-view i{
    position: absolute;
    right: 2%;
    top: 2%;
    font-size: 25px;
    cursor: pointer;
    color: #E5E5E5;
}

.all-images div{
    max-width: 100%;
    width: 1000px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}


/* Services Section */
#services {
    width: 100%;
    padding: 50px 20px;
    color: #E5E5E5;
    text-align: center;
}
  
.services-container {
    max-width: 100%;
    width: 1000px;
    margin: 0 auto;
}
  
.section-title {
    font-size: 2.5rem;
    color: #00FFFF;
    margin-bottom: 30px;
}
  
.service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
  
.service-item {
    background-color: #1A1A1A;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    padding: 20px;
    max-width: 100%;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-item div{
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 200px;
}
  
.service-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}
  
.service-item h3 {
    font-size: 1.5rem;
    color: #00FFFF;
    margin-bottom: 10px;
}
  
.service-item p {
    font-size: 1rem;
    color: #A1A1A1;
}
  
.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8);
}
  



.testimonial-slider {
    max-width: 95%;
    width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #1A1A1A;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    cursor: grab;
}

.swiper{
    height: 300px;
}

.swiper-slide {
    text-align: center;
    padding: 20px;
}
.swiper-slide img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
    object-fit: cover;
    object-position: 50% 25%;
}
.swiper-slide h3 {
    font-size: 1.2rem;
    color: #00FFFF;
}
.swiper-slide p {
    font-size: 0.9rem;
    color: #A1A1A1;
}

.swiper-pagination{
    position: absolute;
    bottom: -30px;
}

.swiper-pagination-bullet {
    background-color: #00FFFF;
}


#contact{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 20px;
    flex-wrap: wrap;
    padding: 10px;
}

#contact .info{
    max-width: 100%;
    width: 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.socials{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
}

.socials a{
    text-decoration: none;
    font-size: 25px;
}

.socials a:nth-child(1){
    color: #0040ff;
}

.socials a:nth-child(2){
    color: #000000;
}

.socials a:nth-child(3){
    color: #0073ff;
}

.socials a:nth-child(4){
    color: #ff0051;
}

#contact .form-wrapper{
    max-width: 100%;
    padding: 10px;
    width: 500px;
    display: flex;
    flex-direction: column;
}

#contact .form-wrapper form{
    width: 100%;
    padding: 30px 10px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border: 1px solid #00FFFF;
    border-radius: 5px;
}

#contact .form-wrapper form input[type='text'], #contact .form-wrapper form input[type='email'], #contact .form-wrapper form input[type='tel'], #contact .form-wrapper form textarea{
    padding: 13px;
    border: none;
    border-radius: 3px;
    width: 80%;
}

#contact .form-wrapper form textarea{
    height: 100px;
}

#contact .form-wrapper form input[type='text']:focus, #contact .form-wrapper form input[type='email']:focus, #contact .form-wrapper form input[type='tel']:focus, #contact .form-wrapper form textarea:focus{
    outline: none;
}

.error{
    color: red;
}


.message-confirmation{
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: 80%;
    height: auto;
    padding: 40px 0;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    display: none;
}

.message-confirmation.success-return{
    background-color: rgba(0, 255, 89, 0.684);
    color: #0A0A0A;
    border: 1px solid rgb(0, 255, 4);
    display: flex;
}

.message-confirmation.error-return{
    background-color: rgba(255, 0, 0, 0.635);
    color: #0A0A0A;
    border: 1px solid rgb(255, 0, 0);
    display: flex;
}

footer{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    height: auto;
    padding: 50px 0;
    align-items: center;
    justify-content: center;
    position: relative;
}

footer .deco1, footer .deco2{
    width: 70%;
    height: 300px;
    position: absolute;
    border-radius: 50%;
    border-top:1px solid #00ffff;
    background-color: #0A0A0A;
    z-index: -1;
}

footer .decos.light{
    background-color: #E5E5E5;
    border-top: 1px solid #00a6ff;
}

footer .deco1{
    top: 0%;
    left: 0px;
}

footer .deco2{
    top: 0%;
    right: 0px;
}

footer a{
    color: #E5E5E5;
    text-decoration: none;
}

footer .upper-sect{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 20px;
}

footer .upper-sect .first, footer .upper-sect .second, footer .upper-sect .third{
    max-width: 95%;
    width: 300px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: auto;
}

footer .upper-sect .first div, footer .upper-sect .second div, footer .upper-sect .third div:not(.socials){
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}


/* footer .upper-sect .second div, footer .upper-sect .second{
    align-items: center;
    justify-content: center;
} */

footer .upper-sect .first div span{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}




footer hr{
    width: 90%;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.7);
}


footer .lower-sect{
    text-align: center;
}



/* Light Mode */
body.light-mode {
    background-color: #E5E5E5;
    color: #0A0A0A;
  }
  
  body.light-mode .navigation {
    background-color: rgba(255, 255, 255, 0.4);
  }
  
  body.light-mode .navigation nav ul li a {
    color: #0A0A0A;
  }
  
  body.light-mode .mode-toggle .title {
    background-color: #E5E5E5;
    color: #0A0A0A;
  }
  
  body.light-mode #main-image {
    filter: brightness(150%);
  }
  
  body.light-mode .cta-links {
    background-color: #00A6FF;
  }
  
  body.light-mode .testimonial-slider {
    background-color: #E5E5E5;
    color: #0A0A0A;
  }
  
  body.light-mode .swiper-slide h3 {
    color: #00A6FF;
  }
  
  body.light-mode .swiper-slide p, body.light-mode footer a {
    color: #0A0A0A;
  }

body.light-mode .service-item{
    background-color: #d1d1d1;
}

body.light-mode .service-item h3{
    color: #00A6FF;
}

body.light-mode .mobile-menu{
    background-color: #E5E5E5;
}

body.light-mode .mobile-menu a, body.light-mode .service-item p{
    color: #0A0A0A;
}
body.light-mode footer{
    background-color: #c4dfff5f;
}
