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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #ecf0f3;
    overflow-x: hidden;
}

html{
  overflow-x: hidden;
}

nav {
    width: 100%;
    padding: 12px 0;
    background: #ecf0f3;
    box-shadow: -3px -3px 7px #ffffff, 3px 3px 5px #ceced1, inset -3px -3px 7px #ffffff, inset 3px 3px 5px #ceced1;
    position: fixed;
    z-index: 1000000;
}

nav .menu {
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu .logo img {
    width: 200px;
}

.menu ul {
    list-style: none;
    display: flex;
}

.menu ul a {
    margin: 0 8px;
    text-decoration: none;
    font-size: 1rem;
    color: #31344b;
    font-weight: 400;
    display: inline-flex;
    padding: 10px 12px;
    border-radius: 15px;
    box-shadow: -3px -3px 7px #ffffff, 3px 3px 5px #ceced1;
    position: relative;
}

.menu ul a:hover:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    box-shadow: inset -3px -3px 7px #ffffff, inset 3px 3px 5px #ceced1;
  }
  
  .menu ul a:hover {
    color: #538d6f; 
}

nav label.btn {
    color: #31344b;
    font-size: 18px;
    cursor: pointer;
    display: none;
}

nav label.cancel {
    position: absolute;
    top: 20px;
    left: 85%;
    font-size: 2rem;
    color: #1e556a;
}

nav label.bars{
  font-size: 2rem;
  position: relative;
  top: 10px;
  left: 0;
  color: #1e556a;
}

#check {
    display: none;
}

.nav-menu-right{
  position: relative;
  display: flex;
  justify-content: space-between;
}

.contact-support-btn {
  margin: 0 8px 0 8rem;
  text-decoration: none;
  font-size: 1rem;
  color: #000;
  font-weight: 400;
  display: inline-flex;
  padding: 10px 20px;
  border-radius: 40px;
  box-shadow: -3px -3px 7px #ffffff, 3px 3px 5px #ceced1;
  position: relative;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}

.contact-support-btn span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.contact-support-btn:before,
.contact-support-btn:after {
  position: absolute;
  content: "";
  height: 0%;
  width: 1px;
 box-shadow:
   -1px -1px 20px 0px rgba(255,255,255,1),
   -4px -4px 5px 0px rgba(255,255,255,1),
   7px 7px 20px 0px rgba(0,0,0,.9),
   4px 4px 5px 0px rgba(0,0,0,.8);
}
.contact-support-btn:before {
  right: 0;
  top: 0;
  transition: all 500ms ease;
}
.contact-support-btn:after {
  left: 0;
  bottom: 0;
  transition: all 500ms ease;
}
.contact-support-btn:hover{
  background: transparent;
  color: #76aef1;
  box-shadow: none;
}
.contact-support-btn:hover:before {
  transition: all 500ms ease;
  height: 100%;
}
.contact-support-btn:hover:after {
  transition: all 500ms ease;
  height: 100%;
}
.contact-support-btn span:before,
.contact-support-btn span:after {
  position: absolute;
  content: "";
  box-shadow:
   -1px -1px 20px 0px rgba(255,255,255,1),
   -4px -4px 5px 0px rgba(255,255,255,1),
   7px 7px 20px 0px rgba(0,0,0,.4),
   4px 4px 5px 0px rgba(0,0,0,.3);
}
.contact-support-btn span:before {
  left: 0;
  top: 0;
  width: 0%;
  height: .5px;
  transition: all 500ms ease;
}
.contact-support-btn span:after {
  right: 0;
  bottom: 0;
  width: 0%;
  height: .5px;
  transition: all 500ms ease;
}
.contact-support-btn span:hover:before {
  width: 100%;
}
.contact-support-btn span:hover:after {
  width: 100%;
}


@media (max-width: 940px) {
  
    .menu ul {
        display: block;
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        max-width: 400px;
        padding-top: 45px;
        height: 100%;
        background: #ecf0f3;
        box-shadow: 0 5px 10px #b0b0b5;
        z-index: 12;
        transition: all 0.3s ease;
    }

    .menu ul a {
        display: block;
        font-size: 23px;
        width: 100%;
        margin-top: 30px;
        box-shadow: none;
        text-align: center;
    }

    .menu ul a:hover:before {
        box-shadow: none;
    }

    nav label.bars {
        display: block;
    }

    #check:checked ~ .nav-menu-right ul {
      left: 0; /* Slide in when checked */
  }

  #check:checked ~ .nav-menu-right label.bars {
    display: none;
}

    #check:checked ~ .nav-menu-right label.cancel {
      display: block;
  }

  .contact-support-btn {
    margin: 8rem 2.5rem;
    width: 80%;
    text-align: center;
    text-decoration: none;
    font-size: 1.5rem;
    color: #000;
    font-weight: 400;
    display: block;
    padding: 10px 20px;
    border-radius: 40px;
    box-shadow: -3px -3px 7px #ffffff, 3px 3px 5px #ceced1;
    position: relative;
    transition: all 0.3s ease;
    border: none;
    outline: none;
  
  }

  .menu .logo img {
    width: 150px;
}
    
   
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: transparent;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    top: 105%;
    left: 0%;
    border-radius: 1rem;
    filter: drop-shadow(0.25rem 0.25rem 0.5rem #0005);
}

.dropdown-content .drop-list {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
    transform-style: preserve-3d;
    perspective: 1000px;
    border-radius: 20px;
}

.dropdown-content .drop-list .drop-list-item {
    height: 3rem;
    display: flex;
    align-items: center;
    background: linear-gradient(#00000005, #0000), #fff;
    box-shadow: inset 0 0 1rem -0.15rem #0002;
    transition: transform 0.35s, box-shadow 0.35s, background 0.35s;
    opacity: 0;
    animation: firstShow 0.5s ease-in-out, show 0.15s linear forwards;
}

.dropdown-content .drop-list .drop-list-item a {
    background: #fff;
    width: 100%;
    margin: auto;
    text-decoration: none;
    font-size: 1rem;
}

.dropdown-content .drop-list .drop-list-item a:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0 0 0 0;
    box-shadow: 0 5px 10px #b0b0b5;
    
}

.dropdown-content .drop-list .drop-list-item:nth-child(1) {
    animation-delay: 0.20s;
}

.dropdown-content .drop-list .drop-list-item:nth-child(2) {
    animation-delay: 0.30s;
}

.dropdown-content .drop-list .drop-list-item:nth-child(3) {
    animation-delay: 0.40s;
}

.dropdown-content .drop-list .drop-list-item:nth-child(4) {
    animation-delay: 0.50s;
}

.dropdown-content .drop-list .drop-list-item:nth-child(5) {
    animation-delay: 0.60s;
}

.dropdown-content .drop-list .drop-list-item:nth-child(2) a,
.dropdown-content .drop-list .drop-list-item:nth-child(3) a,
.dropdown-content .drop-list .drop-list-item:nth-child(4) a,
.dropdown-content .drop-list .drop-list-item:nth-child(5) a {
    border-radius: 0 0 0 0;
}

.dropdown-content .drop-list .drop-list-item:first-child {
    border-radius: 1rem 1rem 0 0;
}

.dropdown-content .drop-list .drop-list-item:nth-child(1) a {
    border-radius: 1rem 1rem 0 0;
}

.dropdown-content .drop-list .drop-list-item:last-child {
    border-radius: 0 0 1rem 1rem;
}

.dropdown-content .drop-list .drop-list-item:nth-child(5) a {
    border-radius: 0 0 1rem 1rem;
}

.dropdown-content .drop-list .drop-list-item:hover,
.dropdown-content .drop-list .drop-list-item:focus-within {
    transform: translate3d(0, 0, 3rem);
}

.dropdown-content .drop-list .drop-list-item:hover+.drop-list-item,
.dropdown-content .drop-list .drop-list-item:focus-within+.drop-list-item {
    box-shadow: inset 0 1rem 1rem -1rem #0003;
    transform: translate3d(0, 0, 2rem);
}

.dropdown-content .drop-list .drop-list-item:hover+.drop-list-item+.drop-list-item,
.dropdown-content .drop-list .drop-list-item:focus-within+.drop-list-item+.drop-list-item {
    box-shadow: inset 0 1rem 0.5rem -0.75rem #0002;
}

.dropdown-content .drop-list .drop-list-item:hover+.drop-list-item+.drop-list-item+.drop-list-item,
.dropdown-content .drop-list .drop-list-item:focus-within+.drop-list-item+.drop-list-item+.drop-list-item {
    box-shadow: inset 0 1rem 0.5rem -0.75rem #0002;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #31344b;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0 1rem;
}




/* Styles for the dropdown content */
@media(max-width: 940px) {
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    top: 105%;
    left: 28%;  /* You can adjust this value if needed */
    border-radius: 1rem;
    filter: drop-shadow(0.25rem 0.25rem 0.5rem #0005);
  }

  .dropdown-content.active {
    display: block;
  }



  .dropdown-content .drop-list .drop-list-item a {
    background: #fff;
    width: 100%;
    margin: auto;
    text-decoration: none;
    text-align: left;
  }

  .drop-list-item {
    width: 100%; /* Ensure this is 100% */
  }
}




@keyframes firstShow {

    0%,
    100% {
        transform: perspective(1000px) translate3d(0, 0, 0em);
    }

    50% {
        transform: perspective(1000px) translate3d(0, 0, 3em);
    }
}

@keyframes show {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media (prefers-reduced-motion) {
    nav * {
        transition-duration: 0s !important;
        animation-duration: 0s !important;
    }
}

/* --------------------------------------------------------------------SERVICES PAGE STYLES-------------------------------------------------------------------- */

/* carousel */
.carousel{
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    position: relative;
}
.carousel .list .item{
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0 0 0 0;
}
.carousel .list .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel .list .item .content{
    position: absolute;
    top: 18%;
    width: 1140px;
    max-width: 80%;
    left: 50%;
    transform: translateX(-50%);
    padding-right: 30%;
    box-sizing: border-box;
    color: #2b2b2b;
    font-size: 1rem;
    text-shadow: 0 5px 10px #0004;
}
.carousel .list .item .author{
    font-weight: bold;
    letter-spacing: 10px;
    color: #538d6f;
    padding-bottom: 1rem;
}
.carousel .list .item .title,
.carousel .list .item .topic{
    font-size: 5em;
    font-weight: bold;
    line-height: 1.3em;
    color: #000;
    padding-bottom: 1rem;
}
.carousel .list .item .buttons{
    width: 150px;
    margin-top: 20px;
}

.carousel .list .item .buttons button {
    border: none;
    color: #000;
    font-size: 1rem;
    font-weight: 400;
    background-color: #fff;
    padding: 10px 25px;
    cursor: pointer;
  }
  .carousel .list .item .buttons button:after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    direction: ltr;
    z-index: -1;
    box-shadow:
     -7px -7px 20px 0px #f0f0f0,
     -4px -4px 5px 0px #f0f0f0,
     7px 7px 20px 0px #0002,
     4px 4px 5px 0px #0001;
    transition: all 0.3s ease;
  }
  .carousel .list .item .buttons button:hover {
    color: #1f9156;
  }
  .carousel .list .item .buttons button:hover:after {
    left: 0;
    right: auto;
    width: 100%;
  }
  .carousel .list .item .buttons button:active {
    top: 2px;
  }

/* thumbail */
.thumbnail{
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: max-content;
    z-index: 100;
    display: flex;
    gap: 20px;
}
.thumbnail .item{
    width: 150px;
    height: 220px;
    flex-shrink: 0;
    position: relative;
    border: 2px solid #538d6f;
    border-radius: 20px;
}
.thumbnail .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    cursor: pointer;
}
.thumbnail .item .content{
    color: #000;
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
}
.thumbnail .item .content .title{
    font-weight: 500;
}

.thumbnail .item .thumbnail-icons{
    width: 60%;
    filter: contrast(.3);
}

.thumbnail .item .thumbnail-icons {
    border-radius: 0px;
}

/* arrows */
.arrows{
    position: absolute;
    top: 80%;
    right: 52%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}
.arrows button{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #1e556a;
    border: none;
    color: #fff;
    font-family: monospace;
    font-weight: bold;
    transition: .5s;
    cursor: pointer;
}
.arrows button:hover{
    background-color: #cdcdcd;
    color: #000;
}

/* animation */
.carousel .list .item:nth-child(1){
    z-index: 1;
}

/* animation text in first item */

.carousel .list .item:nth-child(1) .content .author,
.carousel .list .item:nth-child(1) .content .title,
.carousel .list .item:nth-child(1) .content .topic,
.carousel .list .item:nth-child(1) .content .des,
.carousel .list .item:nth-child(1) .content .buttons
{
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s 1s linear 1 forwards;
}
@keyframes showContent{
    to{
        transform: translateY(0px);
        filter: blur(0px);
        opacity: 1;
    }
}
.carousel .list .item:nth-child(1) .content .title{
    animation-delay: 1.2s!important;
}
.carousel .list .item:nth-child(1) .content .topic{
    animation-delay: 1.4s!important;
}
.carousel .list .item:nth-child(1) .content .des{
    animation-delay: 1.6s!important;
}
.carousel .list .item:nth-child(1) .content .buttons{
    animation-delay: 1.8s!important;
}
/* create animation when next click */
.carousel.next .list .item:nth-child(1) img{
    width: 150px;
    height: 220px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    border-radius: 30px;
    animation: showImage .5s linear 1 forwards;
}
@keyframes showImage{
    to{
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

.carousel.next .thumbnail .item:nth-last-child(1){
    overflow: hidden;
    animation: showThumbnail .5s linear 1 forwards;
}
.carousel.prev .list .item img{
    z-index: 100;
}
@keyframes showThumbnail{
    from{
        width: 0;
        opacity: 0;
    }
}
.carousel.next .thumbnail{
    animation: effectNext .5s linear 1 forwards;
}

@keyframes effectNext{
    from{
        transform: translateX(150px);
    }
}

/* running time */

.carousel .time{
    position: absolute;
    z-index: 1000;
    width: 0%;
    height: 3px;
    background-color: #538c6f;
    left: 0;
    top: 0;
}

.carousel.next .time,
.carousel.prev .time{
    animation: runningTime 3s linear 1 forwards;
}
@keyframes runningTime{
    from{ width: 100%}
    to{width: 0}
}


/* prev click */

.carousel.prev .list .item:nth-child(2){
    z-index: 2;
}

.carousel.prev .list .item:nth-child(2) img{
    animation: outFrame 0.5s linear 1 forwards;
    position: absolute;
    bottom: 0;
    left: 0;
}
@keyframes outFrame{
    to{
        width: 150px;
        height: 220px;
        bottom: 50px;
        left: 50%;
        border-radius: 20px;
    }
}

.carousel.prev .thumbnail .item:nth-child(1){
    overflow: hidden;
    opacity: 0;
    animation: showThumbnail .5s linear 1 forwards;
}
.carousel.next .arrows button,
.carousel.prev .arrows button{
    pointer-events: none;
}
.carousel.prev .list .item:nth-child(2) .content .author,
.carousel.prev .list .item:nth-child(2) .content .title,
.carousel.prev .list .item:nth-child(2) .content .topic,
.carousel.prev .list .item:nth-child(2) .content .des,
.carousel.prev .list .item:nth-child(2) .content .buttons
{
    animation: contentOut 1.5s linear 1 forwards!important;
}

@keyframes contentOut{
    to{
        transform: translateY(-150px);
        filter: blur(20px);
        opacity: 0;
    }
}
@media screen and (max-width: 678px) {
    .carousel .list .item .content{
        padding-right: 0;
    }

    .carousel .list .item .content .title{
        font-size: 30px;
    }

    .carousel .list .item .content .des{
        font-size: 15px;
    }

    .thumbnail{
        display: none;
    }

    .arrows{
        position: absolute;
        top: 80%;
        right: 52%;
        z-index: 100;
        width: 300px;
        max-width: 30%;
        display: flex;
        gap: 10px;
        align-items: center;
    }
}



/* ----------------------------------FOOTER------------------------------- */


.footer{
    display: flex;
    gap: 10rem;
    width: 100%;
    padding: 4rem 6rem;
    background: #ecf0f3; 
    box-shadow: -3px -3px 7px #ffffff, 3px 3px 5px #ceced1, inset -3px -3px 7px #ffffff, inset 3px 3px 5px #ceced1;
}

.socials img{
    margin-left: 5rem;
    width: 60%;
    margin-bottom: 1rem;
    text-decoration: none;
    font-size: 2rem;
    color: #31344b;
    font-weight: 400;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: -3px -3px 7px #ffffff, 3px 3px 5px #ceced1;
    position: relative;
    transition: all 0.3s ease;
}

.socials p{
    margin-bottom: 2rem;
}

.socials a{
    place-items: center;
    margin: 1rem 8px;
    text-decoration: none;
    font-size: 2rem;
    color: #31344b;
    font-weight: 400;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    box-shadow: -3px -3px 7px #ffffff, 3px 3px 5px #ceced1;
    position: relative;
    transition: all 0.3s ease;
}

.socials a:hover::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    box-shadow: inset -3px -3px 7px #ffffff, inset 3px 3px 5px #ceced1;
}

.socials a i{
  margin-top: 2rem;
}

.socials{
    max-width: 30%;
    background-color: #ecf0f3;
}

.footer-nav,
.footer-nav-2,
.links{
  display: grid;
  align-content: flex-start;
  gap: 30px;
  background-color: #ecf0f3;
}

.footer-nav h3,
.footer-nav-2 h3,
.links h3{
    text-decoration: none;
    font-size: 1.5rem;
    color: #1e556a;
}

.footer-nav a,
.footer-nav-2 a,
.links a{
    text-decoration: none;
    color: #000;
}

.footer-nav a:hover,
.footer-nav-2 a:hover,
.links a:hover{
    text-decoration: none;
    color: #538d6f;
}

.footer-zip-btn{
    box-shadow:   -3px -3px 7px #ffffff,  3px 3px 5px #ceced1;
    padding: 10px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all .5s ease;
  }
  .footer-zip-btn:hover{
    box-shadow:  -3px -3px 7px inset #ffffff, inset 3px 3px 5px #ceced1;
    padding: 10px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .footer-zip-btn i{
    color: #538d6f;
  }

@media(max-width: 1300px){

  .footer{
    display: block;
    gap: 15rem;
    width: 100%;
    padding: 4rem 2rem;
    background: #ecf0f3; 
    box-shadow: -3px -3px 7px #ffffff, 3px 3px 5px #ceced1, inset -3px -3px 7px #ffffff, inset 3px 3px 5px #ceced1;
}

.socials {
  max-width: 100%;
  text-align: center;

}

.socials img{
  margin-left: 0rem;
  width: 50%;
}

.socials a{
  place-items: center;
  margin: 2rem 8px;
  text-decoration: none;
  font-size: 2rem;
  color: #31344b;
  font-weight: 400;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  box-shadow: -3px -3px 7px #ffffff, 3px 3px 5px #ceced1;
  position: relative;
  transition: all 0.3s ease;
}

.socials a i{
  margin-top: 2rem;
}

.footer-nav h3,
.footer-nav-2 h3,
.links h3{
    text-decoration: none;
    color: #1e556a;
    margin-top: 2rem;
}
}

@media(max-width: 600px){
.socials img{
  width: 100%;
}

.footer-zip-btn{
    box-shadow:   -3px -3px 7px #ffffff,  3px 3px 5px #ceced1;
    padding: 10px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all .5s ease;
    width: fit-content;
  }
  .footer-zip-btn:hover{
    box-shadow:  -3px -3px 7px inset #ffffff, inset 3px 3px 5px #ceced1;
    padding: 10px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
  }

}



:root {
    --cursor-size: 28px;
    --bg: #538c6f;
  }
  
  .page-wrap {
    background: var(--bg);
    min-height: 100vh;
  }
  
  #cursor {
    position: fixed;
    top: calc(var(--cursor-size) * -0.5);
    left:  calc(var(--cursor-size) * -0.5);
    pointer-events: none;
    /* mix-blend-mode: difference;   */
    filter: url(#goo);
    z-index: 1000;
  }
  
  .cursor-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    height: 28px;
    border-radius: 28px;
    background: var(--bg);
    transform-origin: center center;
  }
  
  body {
    overflow-x: hidden;
  }
  
  h1 {
    margin: 0;
    padding: 50px;
    text-align: center;
    font-size: 48px;
    line-height: 1;
    font-family: sans-serif;
    text-transform: uppercase;
    user-select: none;
  }
  
  .goo {
    display: none;
  }








