* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
    font-family: "Poppins";
}

:root {
    --bg-color: #080808;
    --second-bg-color: #101010;
    --text-color: white;
    --main-color:  #144E5A;
}

html {
    font-size: 60%;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 1rem 5%;
    background: var(--logo-base);
    /* background-color: rgba(0, 0, 0, 0.3); */
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    /* height: 20px; */
}

#menu-icon {
    font-size: 3.5rem;
    color: var(--main-color);
    display: none;
}

.logo img {
    width: 60px;
    margin-left:6px;
}

.logo {
    font-size: 2rem;
    color: var(--text-color);
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.logo p {
    margin-top: -10px;
}

.logo:hover {
    transform: scale(1.1);
}

span {
     background: linear-gradient(315deg, #1b4248, #57957a, #173b43);
    background-clip: text;
    color: transparent;
}

.navbar a {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-left: 4rem;
    font-weight: 500;
    transition: 0.2s ease-in-out;
    border-bottom: 3px solid transparent;
}

.navbar a:hover {
    color: var(--main-color);
    border-bottom: 3px solid var(--main-color);
}

.gradient-btn {
    font-size: 1.8rem;
    padding: 1rem 2rem;
    border-radius: 3rem;
     background: linear-gradient(315deg, #1b4248, #57957a, #173b43);

    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    color: rgb(232, 215, 215);
    border: none;
    text-wrap: nowrap;
    transition: 0.3S ease-in-out;
}

.gradient-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--main-color)
                0 0 55px var(--main-color);
}

.gradient-bten {
    display: none;
}

section {
    min-height: 100vh;
    padding: 10rem 15%;
}


        /* home */

/* Home Section */
.home {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Star Container */
.star-container {
    height: 100%;
    width: 100%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
}

/* Snow Layers */
.box-of-star1,
.box-of-star2,
.box-of-star3,
.box-of-star4 {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(0px);
    height: 700px;
    animation: snow 5s linear infinite;
}

.box-of-star2 {
    animation-delay: -1.64s;
}

.box-of-star3 {
    animation-delay: -2.30s;
}

.box-of-star4 {
    animation-delay: -3.30s;
}

/* Star Styling */
.star {
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background-color: #FFF;
    position: absolute;
    opacity: 0.7;
}

/* Star Positions - Responsive */
.star-position1 { top: 4vh; left: 5vw; }
.star-position2 { top: 10vh; left: 25vw; }
.star-position3 { top: 6vh; left: 45vw; }
.star-position4 { top: 15vh; left: 65vw; }
.star-position5 { top: 2vh; left: 75vw; }
.star-position6 { top: 10vh; left: 90vw; }
.star-position7 { top: 5vh; left: 110vw; }
.star-position8 { top: 20vh; left: 30vw; }
.star-position9 { top: 18vh; left: 55vw; }
.star-position10 { top: 7vh; left: 80vw; }

/* Home Content */
.home-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 10;
    padding: 2rem;
}

.home-content h2 {
    font-size: 6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.home-content h2 span {
    color: #20c997;
}

.home-content p {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.6;
    color: rgb(162, 155, 147);
    max-width: 820px;
     /* margin-right: 70px;
    margin-left: 70px; */
    padding: 0 2rem;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 2rem;
}

.social-icons a {
    font-size: 3rem;
    color: #20c997;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #17a589;
}

/* Snow Animation */
@keyframes snow {
    0% {
        opacity: 0;
        transform: translateY(0px);
    }
    20% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: translateY(650px);
    }
}

/* Responsive for Tablets */
@media (max-width: 992px) {
    .home-content h2 {
        font-size: 4.5rem;
    }

    .home-content p {
        font-size: 2rem;
    }

    .social-icons a {
        font-size: 2.5rem;
    }
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .home-content h2 {
        font-size: 3.5rem;
    }

    .home-content p {
        font-size: 1.8rem;
        padding: 0 1.5rem;
    }

    .social-icons a {
        font-size: 2rem;
    }

    /* Hide Snowfall on Mobile */
    .box-of-star1,
    .box-of-star2,
    .box-of-star3,
    .box-of-star4 {
        display: none;
    }
}

/* Extra Small Screens */
@media (max-width: 480px) {
    .home-content h2 {
        font-size: 3rem;
    }

    .home-content p {
        font-size: 1.6rem;
    }

    .social-icons a {
        font-size: 1.8rem;
    }
}






        /* container send botton */

.card {
    overflow: visible;
    width: 300px;
    height: 255px;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 30px;
  }
  
  .content {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 300ms;
    box-shadow: 0px 0px 10px 1px #000000ee;
    border-radius: 5px;
  }
  
  .front, .back {
    background-color: #151515;
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 5px;
    overflow: hidden;
  }
  
  .back {
    width: 100%;
    height: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  
  .back::before {
    position: absolute;
    content: ' ';
    display: block;
    width: 160px;
    height: 160%;
    background: linear-gradient(90deg, transparent, #ff9966, #ff9966, #ff9966, #ff9966, transparent);
    animation: rotation_481 5000ms infinite linear;
  }
  
  .back-content {
    position: absolute;
    width: 99%;
    height: 99%;
    background-color: #151515;
    border-radius: 5px;
    color: var(--main-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
  
  .card:hover .content {
    transform: rotateY(180deg);
  }
  
  @keyframes rotation_481 {
    0% {
      transform: rotateZ(0deg);
    }
  
    0% {
      transform: rotateZ(360deg);
    }
  }
  
  .front {
    transform: rotateY(180deg);
    color: white;
  }
  
  .front .front-content {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .front-content .badge {
    background-color: #00000055;
    padding: 2px 10px;
    border-radius: 10px;
    backdrop-filter: blur(2px);
    width: fit-content;
  }
  
  .description {
    box-shadow: 0px 0px 10px 5px #00000088;
    width: 100%;
    padding: 10px;
    background-color: #00000099;
    backdrop-filter: blur(5px);
    border-radius: 5px;
  }
  
  .title {
    font-size: 11px;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
  }
  
  .title p {
    width: 50%;
  }
  
  .card-footer {
    color: #ffffff88;
    margin-top: 5px;
    font-size: 8px;
  }
  
  .front .img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  .circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #ffbb66;
    position: relative;
    filter: blur(15px);
    animation: floating 2600ms infinite linear;
  }
  
  #bottom {
    background-color: #ff8866;
    left: 50px;
    top: 0px;
    width: 150px;
    height: 150px;
    animation-delay: -800ms;
  }
  
  #right {
    background-color: #ff2233;
    left: 160px;
    top: -80px;
    width: 30px;
    height: 30px;
    animation-delay: -1800ms;
  }
  
  @keyframes floating {
    0% {
      transform: translateY(0px);
    }
  
    50% {
      transform: translateY(10px);
    }
  
    100% {
      transform: translateY(0px);
    }
  }
.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--main-color);
    border-radius: 50%;
    color: var(--main-color);
    margin: 3rem 0.5rem;
    transition: 0.3s ease-in-out;
    
}

.social-icons a:hover {
    color: var(--text-color);
    background-color: var(--main-color);
    transform: scale(1.2) translateY(-5px);
    box-shadow: 0 0 8px var(--main-color);
}

.btn-group {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--main-color);
    box-shadow: 0 0 15px var(--main-color);
    border-radius: 3rem;
    font-size: 1.8rem;
    color: white;
    border: 2px solid transparent;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--main-color),
                0 0 55px var(--main-color);
}

.btn-group a:nth-child(2) {
    background-color: black;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    box-shadow: 0 0 25px transparent; 
}

.btn-group a:nth-child(2):hover {
    box-shadow: 0 0 10px var(--main-color);
    background: var(--main-color);
    color: var(--bg-color);
}
   
 
                              /* about  */
.wrapper{
    display: none;
}
  .about {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10rem;
    background: var(--second-bg-color);
    flex-wrap: wrap;
    padding: 3rem;
}

.img {
  display: flex;
}
                            
.about-img img {
    width: 20vw;
    border-radius: 5%;
    box-shadow: 0 0 25px var(--main-color);
    transition: 0.4s ease-in-out;
    margin: 30px 0;
    display: flex;
}

.about-img img:hover {
    box-shadow: 0 0 25px var(--main-color),
                0 0 50px var(--main-color),
                0 0 100px var(--main-color);
}

.about-content {
    max-width: 600px;
}

.about-content h2 {
    font-size: 5rem;
    text-align: left;
    margin-bottom: 5px;
}

.about-content p {
    font-size: 1.8rem;
    text-align: left;
    margin-bottom: 2rem;
}

.skill {
    font-size: 30px;
    /* text-align: left; */
    margin-bottom: 20px;
}

.about-skill {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.item {
    font-size: 20px;
    padding-left: 5px;
    display: inline-flex;
    align-items: center;
    transition: 0.3s ease-in-out;
}

.item:hover {
    transform: scale(1.1);
}

.item i {
    margin-right: 10px;
}
                            

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
}

::-webkit-scrollbar-track {
    background-color: var(--bg-color);
}




        /* team */

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #121111;
  color: white;
}

/* Heading Styling */
.team .heading {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  background: linear-gradient(90deg, #fcd34d, #6ee7b7, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

/* Make H1 bigger and centered */
.team h1 {
  text-align: center;
  font-size: 5rem;
  margin-top: 20px;
  background: linear-gradient(90deg, #fcd34d, #6ee7b7, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

/* Style the paragraph under H1 */
/* Team Section Text */
.team p {
  text-align: center;
  font-size: 1.5rem;
  color: #cccccc;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Team Container - Single Row with Horizontal Scroll */
.team-container {
  display: flex;
  justify-content: flex-start; /* Align items to the start */
  gap: 10px; /* Space between cards */
  flex-wrap: nowrap; /* Force one line */
  overflow-x: auto; /* Enable horizontal scroll */
  padding: 0 10px;
  scroll-behavior: smooth; /* Smooth scrolling */
}

/* Optional: Hide Scrollbar for Clean Look */
.team-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.team-container {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;     /* Firefox */
}

/* Card Styling */
.member-card {
  background-color: #1a1a1a;
  border-radius: 8px;
  text-align: center;
  padding: 20px;
  min-width: 300px; /* Ensure minimum card width */
  max-width: 400px;
  flex-shrink: 0; /* Prevent cards from shrinking */
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Team Member Image */
.member-card img {
  width: 300px;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.member-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Name Styling */
.member-card h3 {
  margin-top: 15px;
  font-size: 1.2rem;
  color: white;
  transition: color 0.3s ease;
}

.member-card:hover h3 {
  color: #6ee7b7; /* Change color on hover */
}

/* Role Styling */
.member-card .role {
  color: #cccccc;
  font-style: italic;
  font-size: 1rem;
}

/* Responsive Adjustment */
@media (max-width: 768px) {
  .member-card img {
    width: 250px;
    height: 350px;
  }

  .member-card {
    min-width: 250px;
  }
}







        /* service */

.heading {
    text-align: center;
    font-size: 7rem;
    margin: 5rem 0;
}

.services {
    background-color: var(--bg-color);
    color: black;
    /* padding: 10rem 15%; */
}

.services h2 {
    color: var(--text-color);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 1.5rem;
}

.service-box {
    display: flex;
    justify-content: center;
    align-items: center;
    background:linear-gradient(30deg, #1b4248 0%,  #1b4248 51%, #173b43 100%);
    height: 300px;
    border-radius: 3rem;
    cursor: pointer;
    border: 5px solid transparent;
    transition: 0.4s ease-in-out;
}

.service-box:hover {
    background: linear-gradient(315deg, #1b4248, #57957a, #173b43);
    color: rgb(224, 200, 200);
    border: 5px solid var(--main-color);
    transform: scale(1.03);
}

.service-info {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 3rem;
}

.service-info h4 {
    font-size: 4rem;
    margin: 2rem 0;
    font-weight: 800;
}

.service-info p {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.5;
}

.service-info  {
    font-size: 15rem;
}

.big {
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    margin-right: 40px;

}

        /* project */


.projects {
    background-color: var(--second-bg-color);
    /* padding: 1rem 1rem; */
}

.project-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    justify-items: center;
}

.project-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--bg-color);
    border: 2px solid var(--main-color);
    border-radius: 2rem;
    gap: 1rem;
    padding: 2rem 1rem;
    cursor: pointer;
    box-shadow: 0 0 5px var(--main-color);
    transition: 0.3s ease;
    max-width: 350px;
    width: 100%;
    margin-bottom: 2.5rem;
   
}

.project-card:hover {
    box-shadow: 0 0 25px var(--main-color), 0 0 50px var(--main-color);
    transform: scale(1.05);
}

.project-card img {
    max-width: 100%;
    border-radius: 1.5rem;
    object-fit: cover;
}

.project-card h3 {
    font-size: 1.5rem;
    margin: 0;
}

.project-card p {
    font-size: 1.4rem;
    margin: 0;
}

/* Button Styling (Fixed) */
.animated-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    font-size: 1.4rem;
    background: linear-gradient(315deg, #1b4248, #57957a, #173b43);
    border-radius: 100px;
    font-weight: 600;
    color: white;
    box-shadow: 0 0 0 2px #57957a;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button svg {
    position: absolute;
    width: 20px;
    fill: white;
    z-index: 9;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
    right: 16px;
}

.animated-button .arr-2 {
    left: -25%;
}

.animated-button .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: rgb(208, 212, 203);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
    position: relative;
    z-index: 1;
    transform: translateX(-8px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    color: black;
}

.animated-button:hover {
    box-shadow: 0 0 0 12px transparent;
    color: #aea6a6;
    border-radius: 12px;
}

.animated-button:hover .arr-1 {
    right: -25%;
}

.animated-button:hover .arr-2 {
    left: 16px;
}

.animated-button:hover .text {
    transform: translateX(8px);
}

.animated-button:hover svg {
    fill: #212121;
}

.animated-button:active {
    scale: 0.95;
    box-shadow: 0 0 0 4px rgb(222, 224, 218);
}

.animated-button:hover .circle {
    width: 220px;
    height: 220px;
    opacity: 1;
}

  


                /* contact */


.contact {
    background-color:var(--bg-color);
}

.contact h2 {
    margin-bottom: 3rem;
    color: var(--text-color);
}

.contact form {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 3rem;
    margin: 5rem 0;
    text-align: center;
}

.contact form  .input-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact form .input-box input, 
.contact form textarea { 
    width: 100%;
    padding: 2.5rem;
    font-size: 1.8rem;
    color: var(--text-color);
    background-color: var(--bg-color);
    border-radius: 2rem;
    border: 2px solid var(--main-color);
    margin: 1.5rem 0;
}

.contact form .input-box input {
    width: 49%;
}

.contact h3{
    font-size: 4rem;
    margin-bottom: 3rem;
}

.contact form textarea {
    resize: none;
}

.container-icon {
    display: flex;

    justify-content: center;
    align-items: center;
    margin-right: 20px;
    gap: 2rem;
}

.container-icon li {
    list-style: none;
    font-size: 2rem;
    margin-right: 10px;

}

.container-icon li i {
    font-size: 2rem;
}



            /* button send */
button {
    font-family: inherit;
    font-size: 20px;
    background: var(--main-color);
    color: white;
    padding: 0.7em 1em;
    padding-left: 0.9em;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.2s;
    cursor: pointer;

  }
  
  button span {
    display: block;
    margin-left: 0.3em;
    transition: all 0.3s ease-in-out;
  }
  
  button svg {
    display: block;
    transform-origin: center center;
    transition: transform 0.3s ease-in-out;
  }
  
  button:hover .svg-wrapper {
    animation: fly-1 0.7s ease-in-out infinite alternate;
  }
  
  button:active svg {
    transform: translateX(1.3em) rotate(45deg) scale(1.1);
  }
  
  button:active span {
    transform: translateX(5em);
  }
  
  button:active {
    transform: scale(0.95);
  }
  
  @keyframes fly-1 {
    from {
      transform: translateY(0.1em);
    }
  
    to {
      transform: translateY(-0.1em);
    }
  }

                    /* footer */

.footer {
    background-color: var(--second-bg-color);
    padding: 50px 0;
}

.footer .social-icons {
    display: flex;               
    justify-content: center;     
    align-items: center;         
    gap: 20px;                   
    margin-bottom: 20px;
}

.footer ul {
    text-align: center;
    font-size: 1.8rem;
}

.footer ul li {
    display: inline-block;
    margin: 20px;
}

.footer ul li a {
    color: white;
    border-bottom: 3px solid transparent;
    transition: 0.3s ease-in-out;
}

.footer ul li a:hover {
    border-bottom:3px solid var(--main-color);
}

.footer {
    text-align: center;
    margin-top: 40px;
    font-size: 16px;
}

#copyright {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 16px;
}


.small{
    display: none;
}

@media  (max-width:750px ){
    #menu-icon{
        display:inline;
    }

    .small {
        display: block;
    }

    .cont-img {
      display: none;
    }

    .big {
        display: none;
    }

    .navbar {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        width: 50%;
        padding: 1rem 5rem;
        background: rgba(0, 0, 0, 0.8);
        border-bottom-left-radius: 2rem;
        border-left: 2px solid var(--main-color);
        border-bottom: 2px solid var(--main-color);
    }

    .navbar a {
        display:block;
        font-size: 2rem;
        margin: 3rem 0 ;
        color: var(--text-color);
    }
    .navbar.active {
        display:block;
    }
    .gradient-btn {
        display: none;
    }

    .social-icons a {
        font-size: 2rem;
    }

    .btn-group a {
        font-size:12px;
        font-weight: 600;
    }

    /* .home{
        flex-direction: column-reverse;
        margin: 5rem o;
        gap: 5rem;
    }

    .home-content {
        align-items: center;
        text-align: center;
    }

    .home-img img {
        margin-top: 20px;
        width: 50vw;
    }

    .home-content h2 {
        font-size: 33px;
    }

    .home-content h3{
        font-size: 20px;
        padding-bottom: 10px;
    }

    .home-content p {
        text-align: center;
        font-size: 15px;
    } */

    .services-container {
        width: 100px;
    }

    .projects .heading h2 {
        font-size: 15px
    }

    .services-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        align-items: center;
        gap: 2rem;
    }
    
    .service-box {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--main-color);
        height: 300px;
        border-radius: 3rem;
        cursor: pointer;
        /* margin-right: 20px; */
        border: 5px solid transparent;
        transition: 0.4s ease-in-out;
    }

    .service-info p {
        font-size: 10px;
    }

    .gradient-bten{
        display: inline-block;
        padding: 1rem 2rem;
        background-color: var(--main-color);
        box-shadow: 0 0 10px var(--main-color);
        border-radius: 3rem;
        font-size: 1.5rem;
        color: white;
        border: 2px solid transparent;
        font-weight: 600;
        transition: 0.3s ease-in-out;

    }
    
    .gradient-bten:hover {
        transform: scale(1.05);
    }

    .gradient-bten {
        display: block;
    }

    .projects h2 {
        font-size: 40px;
    }

    .services h2 {
        font-size: 40px;
    }

    .service-info i{
        font-size: 50px;
    }

    .service-info p{
        font-size: 15px;
        color: rgb(235, 235, 195);
        font-weight: 10px;
    }

    .service-info h4 {
        font-size: 30px;
    }

    .wrapper {
        display: block
    }
    .about-content h2 {
        font-size: 40px;
    }

    .container-icon  {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        color: rgb(183, 179, 209);
    }

    .container-icon li i{
        font-size: 12px;
    }

    .about {
        flex-direction: column-reverse;
        text-align: center;
    }

    .about h2 {
        text-align: center;
        margin: 2rem 0;
    }

    .about img {
        display: none;
        /* width: 50%;
        height: 50%;
        float: top; */

    }

    .about-content p {
        font-size: 1.5rem;
        text-align:left;
        margin-right:0px;
        /* margin-left: 10px; */
        margin-bottom: 20px;
        color: rgb(164, 162, 159);
    }

    .skill {
        text-align:center;
        margin-left: 30px;
    }

    .item{
        text-align: left;
        padding-left:5px;
        display:inline-flex;
        /* margin-right: 8px;
        margin-left: 5px; */
        margin-bottom: 10px;
    }

    .item i {
        margin-right:10px;
    }

    .contact form {
        flex-direction: column;
    }

    .projects {
        background-color: var(--second-bg-color);
    }

    .project-box {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        place-items:center;
        gap: 3rem;
        row-gap: 5rem;
    } 

    .project-card img {
        max-width: 150px;
        border-radius: 2rem;
        object-fit: cover;
    }

    .project-card h3 {
        font-size: 3rem;
    }

    .project-card p {
        font-size: 1rem;
    }

    .contact h2 {
        font-size:40px;
        margin-bottom: 40px;
    }

    .contact h3 {
        font-size: 22px;
    }

   #copyright {
    font-size: 1.3rem;
   }



}

/* From Uiverse.io by JkHuger */ 
/* Snowfall Animation */
/* @keyframes snow {
  0% {
    opacity: 0;
    transform: translateY(0px);
  }

  20% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translateY(650px);
  }
}

@keyframes astronaut {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
} */

/* Snow Layers
.box-of-star1,
.box-of-star2,
.box-of-star3,
.box-of-star4 {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(0px);
  height: 700px;
}

.box-of-star1 {
  animation: snow 5s linear infinite;
}

.box-of-star2 {
  animation: snow 5s -1.64s linear infinite;
}

.box-of-star3 {
  animation: snow 5s -2.30s linear infinite;
}

.box-of-star4 {
  animation: snow 5s -3.30s linear infinite;
}

.star-container {
  height: 70vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.star {
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background-color: #FFF;
  position: absolute;
  opacity: 0.7;
}

.star:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #FFF;
  position: absolute;
  top: 10vh;
  left: 5vw;
}

.star:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #FFF;
  position: absolute;
  top: 1vh;
  left: 15vw;
}

/* Star Positions - Responsive using vw units */
.star-position1 { top: 4vh; left: 2vw; }
.star-position2 { top: 15vh; left: 35vw; }
.star-position3 { top: 8vh; left: 55vw; }
.star-position4 { top: 17vh; left: 75vw; }
.star-position5 { top: 3vh; left: 85vw; }
.star-position6 { top: 12vh; left: 95vw; }
.star-position7 { top: 5vh; left: 115vw; }

/* Hide Snow on Smaller Screens */
@media (max-width: 768px) {
  .box-of-star1,
  .box-of-star2,
  
}

@media (max-width: 480px) {
  .box-of-star1,
  .box-of-star2,
  .box-of-star3,
  .box-of-star4 
  
  
} */



/* .astronaut {
  width: 250px;
  height: 300px;
  position: absolute;
  z-index: 11;
  top: calc(50% - 150px);
  left: calc(50% - 125px);
  animation: astronaut 5s linear infinite;
} */

/* .schoolbag {
  width: 100px;
  height: 150px;
  position: absolute;
  z-index: 1;
  top: calc(50% - 75px);
  left: calc(50% - 50px);
  background-color: #94b7ca;
  border-radius: 50px 50px 0 0 / 30px 30px 0 0;
}

.head {
  width: 97px;
  height: 80px;
  position: absolute;
  z-index: 3;
  background: -webkit-linear-gradient(left, #e3e8eb 0%, #e3e8eb 50%, #fbfdfa 50%, #fbfdfa 100%);
  border-radius: 50%;
  top: 34px;
  left: calc(50% - 47.5px);
}

.head:after {
  content: "";
  width: 60px;
  height: 50px;
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 30px);
  background: -webkit-linear-gradient(top, #15aece 0%, #15aece 50%, #0391bf 50%, #0391bf 100%);
  border-radius: 15px;
}

.head:before {
  content: "";
  width: 12px;
  height: 25px;
  position: absolute;
  top: calc(50% - 12.5px);
  left: -4px;
  background-color: #618095;
  border-radius: 5px;
  box-shadow: 92px 0px 0px #618095;
} */

/* .body {
  width: 85px;
  height: 100px;
  position: absolute;
  z-index: 2;
  background-color: #fffbff;
  border-radius: 40px / 20px;
  top: 105px;
  left: calc(50% - 41px);
  background: -webkit-linear-gradient(left, #e3e8eb 0%, #e3e8eb 50%, #fbfdfa 50%, #fbfdfa 100%);
}

.panel {
  width: 60px;
  height: 40px;
  position: absolute;
  top: 20px;
  left: calc(50% - 30px);
  background-color: #b7cceb;
}

.panel:before {
  content: "";
  width: 30px;
  height: 5px;
  position: absolute;
  top: 9px;
  left: 7px;
  background-color: #fbfdfa;
  box-shadow: 0px 9px 0px #fbfdfa, 0px 18px 0px #fbfdfa;
}

.panel:after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 9px;
  right: 7px;
  background-color: #fbfdfa;
  border-radius: 50%;
  box-shadow: 0px 14px 0px 2px #fbfdfa;
}

.arm {
  width: 80px;
  height: 30px;
  position: absolute;
  top: 121px;
  z-index: 2;
}

.arm-left {
  left: 30px;
  background-color: #e3e8eb;
  border-radius: 0 0 0 39px;
}

.arm-right {
  right: 30px;
  background-color: #fbfdfa;
  border-radius: 0 0 39px 0;
}

.arm-left:before,
.arm-right:before {
  content: "";
  width: 30px;
  height: 70px;
  position: absolute;
  top: -40px;
}

.arm-left:before {
  border-radius: 50px 50px 0px 120px / 50px 50px 0 110px;
  left: 0;
  background-color: #e3e8eb;
}

.arm-right:before {
  border-radius: 50px 50px 120px 0 / 50px 50px 110px 0;
  right: 0;
  background-color: #fbfdfa;
}

.arm-left:after,
.arm-right:after {
  content: "";
  width: 30px;
  height: 10px;
  position: absolute;
  top: -24px;
}

.arm-left:after {
  background-color: #6e91a4;
  left: 0;
}

.arm-right:after {
  right: 0;
  background-color: #b6d2e0;
}

.leg {
  width: 30px;
  height: 40px;
  position: absolute;
  z-index: 2;
  bottom: 70px;
}

.leg-left {
  left: 76px;
  background-color: #e3e8eb;
  transform: rotate(20deg);
}

.leg-right {
  right: 73px;
  background-color: #fbfdfa;
  transform: rotate(-20deg);
}

.leg-left:before,
.leg-right:before {
  content: "";
  width: 50px;
  height: 25px;
  position: absolute;
  bottom: -26px;
}

.leg-left:before {
  left: -20px;
  background-color: #e3e8eb;
  border-radius: 30px 0 0 0;
  border-bottom: 10px solid #6d96ac;
}

.leg-right:before {
  right: -20px;
  background-color: #fbfdfa;
  border-radius: 0 30px 0 0;
  border-bottom: 10px solid #b0cfe4;
} */




/* From Uiverse.io by Juanes200122 */ 
#svg-global {
  zoom: 2;
  overflow: visible;
}

@keyframes fade-particles {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes floatUp {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translateY(-40px);
    opacity: 0;
  }
}

#particles {
  animation: fade-particles 5s infinite alternate;
}
.particle {
  animation: floatUp linear infinite;
}

.p1 {
  animation-duration: 2.2s;
  animation-delay: 0s;
}
.p2 {
  animation-duration: 2.5s;
  animation-delay: 0.3s;
}
.p3 {
  animation-duration: 2s;
  animation-delay: 0.6s;
}
.p4 {
  animation-duration: 2.8s;
  animation-delay: 0.2s;
}
.p5 {
  animation-duration: 2.3s;
  animation-delay: 0.4s;
}
.p6 {
  animation-duration: 3s;
  animation-delay: 0.1s;
}
.p7 {
  animation-duration: 2.1s;
  animation-delay: 0.5s;
}
.p8 {
  animation-duration: 2.6s;
  animation-delay: 0.2s;
}
.p9 {
  animation-duration: 2.4s;
  animation-delay: 0.3s;
}

@keyframes bounce-lines {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

#line-v1,
#line-v2,
#node-server,
#panel-rigth,
#reflectores,
#particles {
  animation: bounce-lines 3s ease-in-out infinite alternate;
}
#line-v2 {
  animation-delay: 0.2s;
}

#node-server,
#panel-rigth,
#reflectores,
#particles {
  animation-delay: 0.4s;
}

  
  







 