@import url(https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);
@charset "UTF-8";
.ai-navbar {
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  perspective: 1500px;
  width: calc(100% - 40px);
  max-width: 1200px;
}

.ai-nav-container {
  background: rgba(26, 40, 35, 0.8);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: 50px;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  transform-style: preserve-3d;
  animation: floatNav 6s ease-in-out infinite;
}

@keyframes floatNav {
  0%, 100% {
    transform: translateZ(0) rotateX(0deg);
  }
  50% {
    transform: translateZ(10px) rotateX(2deg);
  }
}
.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  position: relative;
  padding: 5px;
  flex-shrink: 0;
}

.logo-sphere-container {
  position: relative;
  width: 50px;
  height: 50px;
  transform-style: preserve-3d;
  perspective: 800px;
}

.logo-sphere {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: rotateSphere 12s linear infinite;
}

@keyframes rotateSphere {
  from {
    transform: rotateY(0deg) rotateX(0deg);
  }
  to {
    transform: rotateY(360deg) rotateX(360deg);
  }
}
.sphere-core {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.4), rgba(5, 150, 105, 0.4), rgba(4, 120, 87, 0.4));
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.6), 0 0 60px rgba(5, 150, 105, 0.4), inset 0 0 30px rgba(255, 255, 255, 0.1);
  animation: spherePulse 3s ease-in-out infinite;
}

@keyframes spherePulse {
  0%, 100% {
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.6), 0 0 60px rgba(5, 150, 105, 0.4), inset 0 0 30px rgba(255, 255, 255, 0.1);
  }
  50% {
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.8), 0 0 80px rgba(5, 150, 105, 0.6), inset 0 0 40px rgba(255, 255, 255, 0.2);
  }
}
.ai-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(15px);
  font-size: 20px;
  font-weight: 900;
  background: linear-gradient(135deg, #fff, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.8));
}

.orbital-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1.5px solid rgba(16, 185, 129, 0.5);
  border-radius: 50%;
  transform-style: preserve-3d;
}

.ring-1 {
  width: 58px;
  height: 58px;
  transform: translate(-50%, -50%) rotateX(70deg);
  animation: orbit1 8s linear infinite;
}

.ring-2 {
  width: 66px;
  height: 66px;
  border-color: rgba(5, 150, 105, 0.4);
  transform: translate(-50%, -50%) rotateX(70deg) rotateY(60deg);
  animation: orbit2 10s linear infinite;
}

@keyframes orbit1 {
  from {
    transform: translate(-50%, -50%) rotateX(70deg) rotateY(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotateX(70deg) rotateY(360deg);
  }
}
@keyframes orbit2 {
  from {
    transform: translate(-50%, -50%) rotateX(70deg) rotateY(60deg);
  }
  to {
    transform: translate(-50%, -50%) rotateX(70deg) rotateY(420deg);
  }
}
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.8);
  top: 0;
  left: 50%;
}

.logo-text {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(90deg, #10b981, #059669, #047857);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.5);
  }
}
.logo:hover .logo-sphere {
  animation-play-state: paused;
  transform: scale(1.1) rotateY(45deg);
}

.logo:hover .sphere-core {
  box-shadow: 0 0 50px rgba(16, 185, 129, 0.9), 0 0 100px rgba(5, 150, 105, 0.6), inset 0 0 50px rgba(255, 255, 255, 0.3);
}

.ai-nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.ai-nav-links li {
  perspective: 1000px;
}

.ai-nav-links a {
  color: #d1fae5;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  position: relative;
  display: block;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  overflow: hidden;
}

.ai-nav-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: -1;
  border-radius: 25px;
}

.ai-nav-links a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.6), transparent);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.ai-nav-links a:hover::before {
  transform: scaleX(1);
}

.ai-nav-links a:hover::after {
  width: 200px;
  height: 200px;
}

.ai-nav-links a:active {
  transform: translateY(-2px) translateZ(10px);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: transparent;
  border: none;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #10b981;
  border-radius: 3px;
  transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.bg-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  animation: float 15s infinite;
  opacity: 0.6;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.8);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-100px) translateX(50px);
  }
  50% {
    transform: translateY(-200px) translateX(-50px);
  }
  75% {
    transform: translateY(-100px) translateX(100px);
  }
}
.nav-container:hover {
  box-shadow: 0 20px 80px rgba(16, 185, 129, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

@media (max-width: 991px) {
  .navbar {
    width: calc(100% - 30px);
    top: 15px;
  }
  .nav-container {
    padding: 12px 20px;
    gap: 15px;
    flex-wrap: wrap;
  }
  .logo {
    gap: 10px;
  }
  .logo-sphere-container {
    width: 40px;
    height: 40px;
  }
  .ai-text {
    font-size: 16px;
  }
  .logo-text {
    font-size: 18px;
  }
  .ai-nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 5px;
    margin-top: 10px;
  }
  .ai-nav-links.active {
    display: flex;
  }
  .ai-nav-links a {
    padding: 12px 20px;
    text-align: center;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 767px) {
  .navbar {
    width: calc(100% - 20px);
    top: 10px;
  }
  .nav-container {
    padding: 10px 15px;
    border-radius: 30px;
  }
  .logo-sphere-container {
    width: 35px;
    height: 35px;
  }
  .ring-1 {
    width: 43px;
    height: 43px;
  }
  .ring-2 {
    width: 50px;
    height: 50px;
  }
  .ai-text {
    font-size: 14px;
  }
  .logo-text {
    font-size: 16px;
  }
  .ai-nav-links a {
    font-size: 13px;
    padding: 10px 15px;
  }
}
@media (max-width: 480px) {
  .logo-text {
    font-size: 14px;
  }
  .ai-nav-links a {
    font-size: 12px;
  }
}
.social-links {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.social-links .icons {
  display: inline-flex;
  margin: auto;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .social-links .icons {
    flex-wrap: wrap;
  }
}
.social-links .icons a {
  margin: 40px 25px;
  text-decoration: none;
  color: #fff;
  display: block;
  position: relative;
}
.social-links .icons a .layer {
  width: 55px;
  height: 55px;
  transition: transform 0.3s;
}
@media (max-width: 767px) {
  .social-links .icons a .layer {
    transform: rotate(-35deg) skew(20deg);
  }
}
.social-links .icons a:hover .layer {
  transform: rotate(-35deg) skew(20deg);
}
.social-links .icons a .layer span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 5px;
  transition: all 0.3s;
}
.social-links .icons a .layer span.fab {
  font-size: 30px;
  line-height: 55px;
  text-align: center;
}
@media (max-width: 767px) {
  .social-links .icons a .layer span:nth-child(1) {
    opacity: 0.2;
  }
  .social-links .icons a .layer span:nth-child(2) {
    opacity: 0.4;
    transform: translate(5px, -5px);
  }
  .social-links .icons a .layer span:nth-child(3) {
    opacity: 0.6;
    transform: translate(10px, -10px);
  }
  .social-links .icons a .layer span:nth-child(4) {
    opacity: 0.8;
    transform: translate(15px, -15px);
  }
  .social-links .icons a .layer span:nth-child(5) {
    opacity: 1;
    transform: translate(20px, -20px);
  }
}
.social-links .icons a:hover .layer span:nth-child(1) {
  opacity: 0.2;
}
.social-links .icons a:hover .layer span:nth-child(2) {
  opacity: 0.4;
  transform: translate(5px, -5px);
}
.social-links .icons a:hover .layer span:nth-child(3) {
  opacity: 0.6;
  transform: translate(10px, -10px);
}
.social-links .icons a:hover .layer span:nth-child(4) {
  opacity: 0.8;
  transform: translate(15px, -15px);
}
.social-links .icons a:hover .layer span:nth-child(5) {
  opacity: 1;
  transform: translate(20px, -20px);
}
.social-links .icons a:nth-child(1) .layer span,
.social-links .icons a:nth-child(1) .text {
  color: #4267b2;
  border-color: #4267b2;
}
.social-links .icons a:nth-child(2) .layer span,
.social-links .icons a:nth-child(2) .text {
  color: #1da1f2;
  border-color: #1da1f2;
}
.social-links .icons a:nth-child(3) .layer span,
.social-links .icons a:nth-child(3) .text {
  color: #e1306c;
  border-color: #e1306c;
}
.social-links .icons a:nth-child(4) .layer span,
.social-links .icons a:nth-child(4) .text {
  color: #2867b2;
  border-color: #2867b2;
}
.social-links .icons a:nth-child(5) .layer span,
.social-links .icons a:nth-child(5) .text {
  color: #ff0000;
  border-color: #ff0000;
}
.social-links .icons a:nth-child(6) .layer span,
.social-links .icons a:nth-child(6) .text {
  color: #25d366;
  border-color: #25d366;
}
@media (max-size: 767px) {
  .social-links .icons a:nth-child(1) .layer span {
    box-shadow: -1px 1px 3px #4267b2;
  }
  .social-links .icons a:nth-child(2) .layer span {
    box-shadow: -1px 1px 3px #1da1f2;
  }
  .social-links .icons a:nth-child(3) .layer span {
    box-shadow: -1px 1px 3px #e1306c;
  }
  .social-links .icons a:nth-child(4) .layer span {
    box-shadow: -1px 1px 3px #2867b2;
  }
  .social-links .icons a:nth-child(5) .layer span {
    box-shadow: -1px 1px 3px #ff0000;
  }
}
.social-links .icons a:hover:nth-child(1) .layer span {
  box-shadow: -1px 1px 3px #4267b2;
}
.social-links .icons a:hover:nth-child(2) .layer span {
  box-shadow: -1px 1px 3px #1da1f2;
}
.social-links .icons a:hover:nth-child(3) .layer span {
  box-shadow: -1px 1px 3px #e1306c;
}
.social-links .icons a:hover:nth-child(4) .layer span {
  box-shadow: -1px 1px 3px #2867b2;
}
.social-links .icons a:hover:nth-child(5) .layer span {
  box-shadow: -1px 1px 3px #ff0000;
}
.social-links .icons a .text {
  position: absolute;
  left: 50%;
  bottom: -5px;
  opacity: 0;
  transform: translateX(-50%);
  transition: bottom 0.3s ease, opacity 0.3s ease;
}
@media (max-width: 767px) {
  .social-links .icons a .text {
    bottom: -20px;
    opacity: 1;
  }
}
.social-links .icons a:hover .text {
  bottom: -35px;
  opacity: 1;
}

.latest-videos-container {
  padding: 0 30px;
}
.latest-videos-container .latest-videos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  /* MEDIA QUERIES */
}
.latest-videos-container .latest-videos .recipe-container {
  background: rgba(189, 181, 181, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  width: 100%;
}
.latest-videos-container .latest-videos .videos {
  width: 100%;
  height: 100%;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  flex-direction: row;
}
.latest-videos-container .latest-videos .post {
  width: 100% !important;
  font-size: 1rem;
  font-weight: 500;
  color: hsl(0, 0%, 100%);
  background: rgba(39, 241, 183, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 15px;
  margin: 10px;
}
@media (max-width: 768px) {
  .latest-videos-container .latest-videos .post iframe {
    height: 150px !important;
  }
}
.latest-videos-container .latest-videos .post-img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: 6px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.latest-videos-container .latest-videos .post-body {
  display: block;
  padding: 15px 0;
  cursor: default;
}
.latest-videos-container .latest-videos .post-body .post-info {
  display: flex;
  width: 100%;
  align-items: center;
}
.latest-videos-container .latest-videos .post-name {
  font-size: 0.9rem;
  font-weight: 600;
  overflow: hidden;
}
.latest-videos-container .latest-videos .post-name a {
  text-decoration: none;
  color: hsl(0, 0%, 100%);
}
.latest-videos-container .latest-videos .post-author {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.7;
  color: hsl(0, 0%, 100%);
  margin: 0;
}
.latest-videos-container .latest-videos .post-avatar {
  width: 40px;
  height: 40px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.4);
  margin-right: 10px;
}
.latest-videos-container .latest-videos .post-actions {
  position: relative;
  display: flex;
  color: #fff;
  align-items: end;
  justify-content: space-between;
  overflow: hidden;
}
.latest-videos-container .latest-videos .post-actions-content {
  position: absolute;
  bottom: 130%;
  right: 0;
  padding: 8px;
  border-radius: 8px;
  background: rgba(172, 172, 172, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 2px 2px 10px 2px hsla(0, 0%, 0%, 0.25);
  transition: opacity 0.25s, scale 0.25s;
  transform-origin: bottom right;
  color: #fff;
}
.latest-videos-container .latest-videos .post-actions-content[data-visible=false] {
  pointer-events: none;
  opacity: 0;
  scale: 0;
}
.latest-videos-container .latest-videos .post-actions-content[data-visible=true] {
  pointer-events: unset;
  scale: 1;
  opacity: 1;
}
.latest-videos-container .latest-videos .post-actions-content li {
  padding: 0.5rem 0.65rem;
  border-radius: 0.25rem;
  list-style: none;
}
.latest-videos-container .latest-videos .post-actions-content li:is(:hover, :focus-within) {
  background-color: rgba(248, 132, 169, 0.7);
}
.latest-videos-container .latest-videos .post-actions-link {
  width: -moz-max-content;
  width: max-content;
  display: grid;
  grid-template-columns: 1rem 1fr;
  align-items: center;
  gap: 0.6rem;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.latest-videos-container .latest-videos .post-like {
  text-decoration: none;
  color: hsl(0, 0%, 100%);
  margin-right: 5px;
  font-size: 1.1rem;
  opacity: 0.65;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.35s ease;
}
.latest-videos-container .latest-videos .post-actions-controller {
  border: 0;
  background: none;
  color: hsl(0, 0%, 100%);
  cursor: pointer;
  opacity: 0.65;
}
.latest-videos-container .latest-videos .post-like:hover,
.latest-videos-container .latest-videos .post-actions-controller:hover {
  opacity: 1;
}
.latest-videos-container .latest-videos .post-like:focus {
  outline: none;
}
.latest-videos-container .latest-videos .post-like.active {
  color: rgb(255, 0, 0);
  opacity: 1;
  transform: scale(1.2);
}
@media (max-width: 1200px) {
  .latest-videos-container .latest-videos .swiper {
    width: 80%;
  }
}
@media (max-width: 900px) {
  .latest-videos-container .latest-videos #recipes {
    padding: 60px 80px;
  }
  .latest-videos-container .latest-videos .swiper {
    width: 50%;
  }
}
@media (max-width: 765px) {
  .latest-videos-container .latest-videos .swiper {
    width: 70%;
  }
}
@media (max-width: 550px) {
  .latest-videos-container .latest-videos #recipes {
    padding: 40px 40px;
  }
  .latest-videos-container .latest-videos .swiper {
    width: 80%;
  }
}

.join-community-container {
  padding: 0 30px;
}
.join-community-container .join-community {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.join-community-container .join-community .recipe-container {
  background: rgba(189, 181, 181, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  width: 100%;
}
.join-community-container .join-community .community {
  width: 100%;
  height: 100%;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  flex-direction: row;
}
.join-community-container .join-community .post {
  width: 100% !important;
  font-size: 1rem;
  font-weight: 500;
  color: hsl(0, 0%, 100%);
  background: rgba(39, 241, 183, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 15px;
  margin: 10px;
  text-align: center;
}
.join-community-container .join-community .post .number {
  font-size: 40px;
  color: #fff;
  font-weight: bold;
}
.join-community-container .join-community .post .platform {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.join-community-container .join-community .post .platform .linkedin {
  color: rgb(12, 90, 206) !important;
}
.join-community-container .join-community .post .platform .youtube {
  color: rgb(228, 24, 24) !important;
}
.join-community-container .join-community .post .platform .facebook {
  color: rgb(32, 71, 169) !important;
}
.join-community-container .join-community .post .platform span {
  margin: 10px;
  color: #fff;
}
@media (max-width: 1200px) {
  .join-community-container .join-community .swiper {
    width: 80%;
  }
}
@media (max-width: 900px) {
  .join-community-container .join-community #recipes {
    padding: 60px 80px;
  }
  .join-community-container .join-community .swiper {
    width: 50%;
  }
}
@media (max-width: 765px) {
  .join-community-container .join-community .swiper {
    width: 70%;
  }
}
@media (max-width: 550px) {
  .join-community-container .join-community #recipes {
    padding: 40px 40px;
  }
  .join-community-container .join-community .swiper {
    width: 80%;
  }
}

.latest-posts-container {
  padding: 0 30px;
}
.latest-posts-container .latest-posts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  /* MEDIA QUERIES */
}
.latest-posts-container .latest-posts .recipe-container {
  background: rgba(189, 181, 181, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  width: 100%;
}
.latest-posts-container .latest-posts .posts {
  width: 100%;
  height: 100%;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  flex-direction: row;
}
.latest-posts-container .latest-posts .post {
  width: 100% !important;
  font-size: 1rem;
  font-weight: 500;
  color: hsl(0, 0%, 100%);
  background: rgba(39, 241, 183, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 15px;
  margin: 10px;
}
.latest-posts-container .latest-posts .post-img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: 6px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.latest-posts-container .latest-posts .post-body {
  display: block;
  padding: 15px 0;
  cursor: default;
}
.latest-posts-container .latest-posts .post-body .post-info {
  display: flex;
  width: 100%;
  align-items: center;
}
.latest-posts-container .latest-posts .post-detail {
  text-align: left;
}
.latest-posts-container .latest-posts .post-name {
  font-weight: 600;
  overflow: hidden;
  text-align: start !important;
  padding: 0 !important;
  margin: 0 !important;
}
.latest-posts-container .latest-posts .post-name a {
  font-size: 16px;
  text-decoration: none;
  color: hsl(0, 0%, 100%);
}
.latest-posts-container .latest-posts .post-author {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.7;
  color: hsl(0, 0%, 100%);
  margin: 0;
}
.latest-posts-container .latest-posts .post-avatar {
  width: 40px;
  height: 40px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.4);
  margin-right: 10px;
}
.latest-posts-container .latest-posts .post-actions {
  position: relative;
  display: flex;
  color: #fff;
  align-items: end;
  justify-content: space-between;
  overflow: hidden;
}
.latest-posts-container .latest-posts .post-actions-content {
  position: absolute;
  bottom: 130%;
  right: 0;
  padding: 8px;
  border-radius: 8px;
  background: rgba(172, 172, 172, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 2px 2px 10px 2px hsla(0, 0%, 0%, 0.25);
  transition: opacity 0.25s, scale 0.25s;
  transform-origin: bottom right;
  color: #fff;
}
.latest-posts-container .latest-posts .post-actions-content[data-visible=false] {
  pointer-events: none;
  opacity: 0;
  scale: 0;
}
.latest-posts-container .latest-posts .post-actions-content[data-visible=true] {
  pointer-events: unset;
  scale: 1;
  opacity: 1;
}
.latest-posts-container .latest-posts .post-actions-content li {
  padding: 0.5rem 0.65rem;
  border-radius: 0.25rem;
  list-style: none;
}
.latest-posts-container .latest-posts .post-actions-content li:is(:hover, :focus-within) {
  background-color: rgba(248, 132, 169, 0.7);
}
.latest-posts-container .latest-posts .post-actions-link {
  width: -moz-max-content;
  width: max-content;
  display: grid;
  grid-template-columns: 1rem 1fr;
  align-items: center;
  gap: 0.6rem;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.latest-posts-container .latest-posts .post-like {
  text-decoration: none;
  color: hsl(0, 0%, 100%);
  margin-right: 5px;
  font-size: 1.1rem;
  opacity: 0.65;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.35s ease;
}
.latest-posts-container .latest-posts .post-actions-controller {
  border: 0;
  background: none;
  color: hsl(0, 0%, 100%);
  cursor: pointer;
  opacity: 0.65;
}
.latest-posts-container .latest-posts .post-like:hover,
.latest-posts-container .latest-posts .post-actions-controller:hover {
  opacity: 1;
}
.latest-posts-container .latest-posts .post-like:focus {
  outline: none;
}
.latest-posts-container .latest-posts .post-like.active {
  color: rgb(255, 0, 0);
  opacity: 1;
  transform: scale(1.2);
}
@media (max-width: 1200px) {
  .latest-posts-container .latest-posts .swiper {
    width: 80%;
  }
}
@media (max-width: 900px) {
  .latest-posts-container .latest-posts #recipes {
    padding: 60px 80px;
  }
  .latest-posts-container .latest-posts .swiper {
    width: 50%;
  }
}
@media (max-width: 765px) {
  .latest-posts-container .latest-posts .swiper {
    width: 70%;
  }
}
@media (max-width: 550px) {
  .latest-posts-container .latest-posts #recipes {
    padding: 40px 40px;
  }
  .latest-posts-container .latest-posts .swiper {
    width: 80%;
  }
}

.latest-projects-container {
  padding: 0 30px;
}
@media (max-width: 767px) {
  .latest-projects-container h2 {
    margin-bottom: 0 !important;
  }
}
.latest-projects-container .latest-projects {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.latest-projects-container .latest-projects .recipe-container {
  background: rgba(189, 181, 181, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  width: 100%;
}
.latest-projects-container .latest-projects .swiper {
  margin: 0 200px;
  height: 500px;
  border-radius: 30px;
  /* MEDIA QUERIES */
}
@media (max-width: 991px) {
  .latest-projects-container .latest-projects .swiper {
    margin: 0;
  }
}
.latest-projects-container .latest-projects .swiper .swiper-pagination-bullet-active {
  background-color: #27f1b7;
}
.latest-projects-container .latest-projects .swiper .swiper-pagination-bullets .swiper-pagination-bullet,
.latest-projects-container .latest-projects .swiper .swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}
.latest-projects-container .latest-projects .swiper .swiper-slide {
  max-width: 100%;
  height: 500px !important;
  font-size: 1rem;
  font-weight: 500;
  color: hsl(0, 0%, 100%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 35px 0;
  margin-bottom: 30px;
  text-align: center;
}
.latest-projects-container .latest-projects .swiper .swiper-slide a {
  border-radius: 30px;
  overflow: hidden;
  width: 740px;
  height: 430px;
  border: 3px solid #27b4f1;
}
.latest-projects-container .latest-projects .swiper .swiper-slide:nth-of-type(1) a {
  border: 3px solid #27b4f1;
}
.latest-projects-container .latest-projects .swiper .swiper-slide:nth-of-type(2) a {
  border: 3px solid #637f46;
}
.latest-projects-container .latest-projects .swiper .swiper-slide:nth-of-type(3) a {
  border: 3px solid #2b68b8;
}
.latest-projects-container .latest-projects .swiper .swiper-slide:nth-of-type(4) a {
  border: 3px solid #ff5757;
}
.latest-projects-container .latest-projects .swiper .swiper-slide:nth-of-type(5) a {
  border: 3px solid #ff5912;
}
@media (max-width: 1065px) {
  .latest-projects-container .latest-projects .swiper {
    height: 330px;
  }
  .latest-projects-container .latest-projects .swiper .swiper-slide {
    height: 330px !important;
  }
  .latest-projects-container .latest-projects .swiper .swiper-slide a {
    width: 550px;
    height: 300px;
  }
}
@media (max-width: 820px) {
  .latest-projects-container .latest-projects .swiper {
    height: 200px;
  }
  .latest-projects-container .latest-projects .swiper .swiper-slide {
    height: 200px !important;
    padding: 35px 0;
  }
  .latest-projects-container .latest-projects .swiper .swiper-slide a {
    width: 250px;
    height: 150px;
  }
}
.latest-projects-container .latest-projects .swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.latest-projects-container .latest-projects .swiper .post {
  max-width: 100%;
  font-size: 1rem;
  font-weight: 500;
  color: hsl(0, 0%, 100%);
  background: rgba(39, 241, 183, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 16px 16px 0;
  margin-bottom: 16px;
}
.latest-projects-container .latest-projects .swiper .post-img {
  width: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: 6px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.latest-projects-container .latest-projects .swiper .post-body {
  display: grid;
  grid-template-columns: 15% 60% 20%;
  align-items: center;
  gap: 8px;
  padding: 15px 0;
  cursor: default;
}
.latest-projects-container .latest-projects .swiper .post-name {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.latest-projects-container .latest-projects .swiper .post-author {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.6;
  color: hsl(0, 0%, 100%);
}
.latest-projects-container .latest-projects .swiper .post-avatar {
  width: 40px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
}
.latest-projects-container .latest-projects .swiper .post-actions {
  position: relative;
  display: flex;
  color: #fff;
}
.latest-projects-container .latest-projects .swiper .post-actions-content {
  position: absolute;
  bottom: 130%;
  right: 0;
  padding: 8px;
  border-radius: 8px;
  background: rgba(172, 172, 172, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 2px 2px 10px 2px hsla(0, 0%, 0%, 0.25);
  transition: opacity 0.25s, scale 0.25s;
  transform-origin: bottom right;
  color: #fff;
}
.latest-projects-container .latest-projects .swiper .post-actions-content[data-visible=false] {
  pointer-events: none;
  opacity: 0;
  scale: 0;
}
.latest-projects-container .latest-projects .swiper .post-actions-content[data-visible=true] {
  pointer-events: unset;
  scale: 1;
  opacity: 1;
}
.latest-projects-container .latest-projects .swiper .post-actions-content li {
  padding: 0.5rem 0.65rem;
  border-radius: 0.25rem;
  list-style: none;
}
.latest-projects-container .latest-projects .swiper .post-actions-content li:is(:hover, :focus-within) {
  background-color: rgba(248, 132, 169, 0.7);
}
.latest-projects-container .latest-projects .swiper .post-actions-link {
  width: -moz-max-content;
  width: max-content;
  display: grid;
  grid-template-columns: 1rem 1fr;
  align-items: center;
  gap: 0.6rem;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.latest-projects-container .latest-projects .swiper .post-like {
  text-decoration: none;
  color: hsl(0, 0%, 100%);
  margin-right: 5px;
  font-size: 1.1rem;
  opacity: 0.65;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.35s ease;
}
.latest-projects-container .latest-projects .swiper .post-actions-controller {
  border: 0;
  background: none;
  color: hsl(0, 0%, 100%);
  cursor: pointer;
  opacity: 0.65;
}
.latest-projects-container .latest-projects .swiper .post-like:hover,
.latest-projects-container .latest-projects .swiper .post-actions-controller:hover {
  opacity: 1;
}
.latest-projects-container .latest-projects .swiper .post-like:focus {
  outline: none;
}
.latest-projects-container .latest-projects .swiper .post-like.active {
  color: rgb(255, 0, 0);
  opacity: 1;
  transform: scale(1.2);
}
.skills {
  padding: 100px 0 100px;
  overflow: hidden;
  width: 90%;
  position: relative;
}
.skills::before {
  content: "Skills";
  display: block;
  position: absolute;
  top: 0;
  left: 18%;
  font-weight: bold;
  font-size: 30px;
  color: #27b4f1;
  z-index: 1;
}
@media (max-width: 991px) {
  .skills::before {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 767px) {
  .skills::before {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .skills {
    width: 100%;
    padding: 150px 0 100px;
  }
}
.skills .work-steps {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
  position: relative;
  background-color: var(--section-background);
}
.skills .work-steps .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .skills .work-steps .container {
    flex-direction: column;
  }
}
.skills .work-steps .image {
  max-width: 100%;
  margin-right: 100px;
}
@media (max-width: 991px) {
  .skills .work-steps .image {
    margin: 0 0 50px;
  }
}
.skills .work-steps .info .box {
  background: rgba(189, 181, 181, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 80%;
  position: relative;
  float: right;
}
.skills .work-steps .info .box:hover {
  background: rgba(189, 181, 181, 0.2);
}
@media (max-width: 991px) {
  .skills .work-steps .info .box {
    margin-bottom: 80px;
    width: 100%;
  }
}
.skills .work-steps .info .box::before {
  content: "";
  height: 300px;
  width: 4px;
  background-color: #27b4f1;
  display: block;
  position: absolute;
  top: -100px;
  left: -89px;
  z-index: 1;
}
@media (max-width: 991px) {
  .skills .work-steps .info .box::before {
    height: 80px;
    left: calc(50% - 5px);
    top: -81px;
  }
}
.skills .work-steps .info .box::after {
  content: "";
  height: 25px;
  width: 25px;
  border: 4px solid #27b4f1;
  background-color: #27b4f1;
  border-radius: 50%;
  position: absolute;
  top: 60px;
  left: -100px;
  z-index: 2;
}
@media (max-width: 1189px) {
  .skills .work-steps .info .box::after {
    left: -100px;
  }
}
@media (max-width: 991px) {
  .skills .work-steps .info .box::after {
    top: -45px;
    left: calc(50% - 16px);
  }
}
@media (max-width: 767px) {
  .skills .work-steps .info .box {
    flex-direction: column;
    text-align: center;
  }
}
.skills .work-steps .info .box img {
  width: 70px;
  margin-right: 30px;
}
@media (max-width: 767px) {
  .skills .work-steps .info .box img {
    margin: 0 0 30px;
  }
}
.skills .work-steps .info .box h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: #27b4f1;
}
.skills .work-steps .info .box p {
  color: hsl(0, 0%, 100%);
  line-height: 1.7;
  margin: 10px 0 0;
  font-size: 16px;
}

.footer {
  z-index: 1;
  display: grid;
  position: relative;
  grid-area: footer;
  min-height: 12rem;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0) 30%, rgb(0, 118, 81) 70%);
  margin-top: 300px;
}
.footer .bubbles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1rem;
  background: rgb(0, 118, 81);
  filter: url("#blob");
}
.footer .bubbles .bubble {
  position: absolute;
  left: var(--position, 50%);
  background: rgb(0, 118, 81);
  border-radius: 100%;
  animation: bubble-size var(--time, 4s) ease-in infinite var(--delay, 0s), bubble-move var(--time, 4s) ease-in infinite var(--delay, 0s);
  transform: translate(-50%, 100%);
}
.footer .footer-content {
  z-index: 2;
  padding: 2rem;
  padding: 0 50px;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgb(0, 118, 81));
}
@media (max-width: 767px) {
  .footer .footer-content {
    padding: 0 20px;
  }
}
.footer .footer-content h1 {
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
.footer .footer-content h1,
.footer .footer-content p {
  color: hsl(0, 0%, 100%);
  font-family: "Poppins", sans-serif;
}
@media (max-width: 767px) {
  .footer .footer-content h1 {
    font-size: 22px;
  }
  .footer .footer-content p {
    font-size: 14px;
  }
}
.footer .footer-content .abdelkhalek-img {
  max-width: 400px;
  overflow: hidden;
}
.footer .footer-content .abdelkhalek-img .image {
  align-self: center;
  width: 100%;
}

@keyframes bubble-size {
  0%, 75% {
    width: var(--size, 4rem);
    height: var(--size, 4rem);
  }
  100% {
    width: 0rem;
    height: 0rem;
  }
}
@keyframes bubble-move {
  0% {
    bottom: -4rem;
  }
  100% {
    bottom: var(--distance, 10rem);
  }
}
body,
html {
  margin: 0;
  padding: 0;
  background-color: #151912;
  overflow-x: hidden;
}
body *,
html * {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

/* Floating Navbar Styling */
.navbar {
  position: fixed;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 40px;
  background-color: rgba(21, 25, 18, 0.6);
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
  z-index: 1000;
  border: 1px solid rgb(0, 118, 81);
  /* Adding animation to header on scroll */
}
.navbar .nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 0;
  margin: 10px 0;
}
.navbar .nav-links li {
  padding: 4px 10px;
  background-color: rgb(0, 118, 81);
  border: 1px solid rgb(0, 118, 81);
  transition: 0.2s ease-in-out;
  border-right: 1.5px solid #151912;
}
.navbar .nav-links li:first-child {
  margin-left: 0;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}
.navbar .nav-links li:last-child {
  margin-left: 0;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  border-right: 1px solid transparent;
}
.navbar .nav-links li a {
  text-decoration: none;
  color: hsl(0, 0%, 100%);
  font-weight: 600;
  font-size: 12px;
  transition: color 0.3s ease, transform 0.3s ease;
}
.navbar .nav-links li:hover {
  background-color: #27f1b7;
  border-right: none;
  transform: scale(1.1);
}
.navbar .nav-links li:hover a {
  color: #151912;
}
.navbar .scrolled {
  background-color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  padding: 10px 20px;
}

.content {
  width: 100%;
  z-index: 10;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  /* Floating icons for the whole body */
}
.content section {
  margin-bottom: 100px;
}
.content section h2 {
  font-weight: 600;
  text-align: center;
  color: #27f1b7;
  margin: 20px 0 40px;
}
@media (max-width: 767px) {
  .content section h2 {
    font-size: 20px;
  }
}
.content .hero-section {
  text-align: center;
  padding: 0 40px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.content .hero-section .hero-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.content .hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #fff;
  font-weight: bold;
}
@media (max-width: 767px) {
  .content .hero-content h1 {
    font-size: 2rem;
  }
}
.content .hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 1000px;
  color: #e4e2e2;
  text-align: center;
  margin: auto;
  margin: 30px auto;
}
@media (max-width: 767px) {
  .content .hero-content p {
    font-size: 1rem;
  }
}
.content .floating-logos {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
}
.content .logo-floating {
  position: absolute;
  width: 60px;
  animation: float 5s ease-in-out infinite;
  opacity: 0.6;
}
@media (max-width: 767px) {
  .content .logo-floating {
    width: 40px;
  }
}
.content .logo-floating:nth-child(1) {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}
@media (max-width: 767px) {
  .content .logo-floating:nth-child(1) {
    left: 1%;
  }
}
.content .logo-floating:nth-child(2) {
  top: 50%;
  left: 5%;
  animation-delay: 1s;
}
@media (max-width: 767px) {
  .content .logo-floating:nth-child(2) {
    left: 1%;
  }
}
.content .logo-floating:nth-child(3) {
  top: 50%;
  right: 10%;
  animation-delay: 2s;
}
@media (max-width: 767px) {
  .content .logo-floating:nth-child(3) {
    right: 1%;
  }
}
.content .logo-floating:nth-child(4) {
  top: 80%;
  right: 20%;
  animation-delay: 3s;
}
@media (max-width: 767px) {
  .content .logo-floating:nth-child(4) {
    right: 1%;
  }
}
.content .logo-floating:nth-child(5) {
  bottom: 10%;
  left: 20%;
  animation-delay: 4s;
}
@media (max-width: 767px) {
  .content .logo-floating:nth-child(5) {
    left: 1%;
  }
}
.content .logo-floating:nth-child(6) {
  top: 15%;
  right: 20%;
  animation-delay: 5s;
}
@media (max-width: 767px) {
  .content .logo-floating:nth-child(6) {
    right: 1%;
  }
}
.content .logo-floating:nth-child(7) {
  bottom: -90%;
  left: 2%;
  animation-delay: 6s;
}
.content .logo-floating:nth-child(8) {
  bottom: -150%;
  right: 2%;
  animation-delay: 7s;
}
.content .logo-floating:nth-child(9) {
  bottom: -35%;
  right: 2%;
  animation-delay: 8s;
}
.content .logo-floating:nth-child(10) {
  bottom: -35%;
  left: 2%;
  animation-delay: 9s;
}
.content .logo-floating:nth-child(11) {
  bottom: -205%;
  right: 2%;
  animation-delay: 10s;
}
.content .logo-floating:nth-child(12) {
  bottom: -85%;
  right: 2%;
  animation-delay: 11s;
}
.content .logo-floating:nth-child(13) {
  bottom: -150%;
  left: 2%;
  animation-delay: 11s;
}
.content .logo-floating:nth-child(14) {
  bottom: -205%;
  left: 2%;
  animation-delay: 11s;
}
.content .logo-floating:nth-child(15) {
  bottom: -250%;
  left: 2%;
  animation-delay: 11s;
}
.content .logo-floating:nth-child(16) {
  bottom: -250%;
  right: 2%;
  animation-delay: 10s;
}
.content .logo-floating:nth-child(17) {
  bottom: -300%;
  left: 2%;
  animation-delay: 7s;
}
.content .logo-floating:nth-child(18) {
  bottom: -300%;
  right: 2%;
  animation-delay: 6s;
}
.content .logo-floating:nth-child(19) {
  bottom: -350%;
  left: 2%;
  animation-delay: 4s;
}
.content .logo-floating:nth-child(20) {
  bottom: -350%;
  right: 2%;
  animation-delay: 5s;
}
.content .logo-floating:nth-child(21) {
  bottom: -400%;
  left: 2%;
  animation-delay: 1s;
}
.content .logo-floating:nth-child(22) {
  bottom: -400%;
  right: 2%;
  animation-delay: 2s;
}
.content .logo-floating:nth-child(23) {
  bottom: -450%;
  left: 2%;
  animation-delay: 8s;
}
.content .logo-floating:nth-child(24) {
  bottom: -450%;
  right: 2%;
  animation-delay: 9s;
}
.content .logo-floating:nth-child(25) {
  bottom: -500%;
  left: 2%;
  animation-delay: 4s;
}
.content .logo-floating:nth-child(26) {
  bottom: -500%;
  right: 2%;
  animation-delay: 3s;
}
.content .logo-floating:nth-child(27) {
  bottom: 5%;
  left: 47%;
  animation-delay: 2.5s;
}
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes float2 {
  0% {
    transform: translateY(0);
    transform: translateX(0);
  }
  50% {
    transform: translateX(-20px);
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
    transform: translateX(0);
  }
}

.section {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff6f7;
  text-align: center;
}
.section > div {
  width: 90%;
}
.section:nth-child(1) {
  font-size: 20vh;
}
.section:nth-child(2) {
  font-size: 10vh;
}
.section:nth-child(3) {
  font-size: 8vh;
}
.section:nth-child(2) > div {
  max-width: 800px;
}
.section:nth-child(3) > div {
  max-width: 900px;
}
.section:nth-child(3) a {
  padding: 0 0.3em;
}

@media (max-width: 600px) {
  .section:nth-child(1) {
    font-size: 25vw;
  }
}
@media (max-width: 350px) {
  .section:nth-child(1) {
    font-size: 30px;
  }
}
@media (max-width: 750px) {
  .section:nth-child(2), .section:nth-child(3) {
    font-size: 9vw;
  }
}
canvas#neuro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.25;
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  font-weight: inherit;
  font-style: inherit;
}
a:hover {
  font-weight: inherit;
  text-decoration: none;
  color: rgb(160, 160, 255);
}
a:active {
  color: rgb(160, 255, 255);
}

body,
html {
  margin: 0;
  padding: 0;
  background-color: #151912;
}

.content {
  width: 100vw;
  font-family: "Times New Roman", serif;
}

.section {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff6f7;
  text-align: center;
}
.section > div {
  width: 90%;
}
.section:nth-child(1) {
  font-size: 20vh;
}
.section:nth-child(2) {
  font-size: 10vh;
}
.section:nth-child(3) {
  font-size: 8vh;
}
.section:nth-child(2) > div {
  max-width: 800px;
}
.section:nth-child(3) > div {
  max-width: 900px;
}
.section:nth-child(3) a {
  padding: 0 0.3em;
}

@media (max-width: 600px) {
  .section:nth-child(1) {
    font-size: 25vw;
  }
}
@media (max-width: 350px) {
  .section:nth-child(1) {
    font-size: 30px;
  }
}
@media (max-width: 750px) {
  .section:nth-child(2), .section:nth-child(3) {
    font-size: 9vw;
  }
}
canvas#neuro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.25;
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  font-weight: inherit;
  font-style: inherit;
}
a:hover {
  font-weight: inherit;
  text-decoration: none;
  color: #27f1b7;
}
a:active {
  color: rgb(160, 255, 255);
}

.contact-button {
  display: inline-block;
  position: relative;
  perspective: 1500px;
}

.animated-button {
  position: relative;
  display: inline-block;
  padding: 24px 60px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #ffffff;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  transform-style: preserve-3d;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: visible;
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.3), inset 0 -2px 4px rgba(0, 0, 0, 0.2);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.animated-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  border-radius: 16px;
  transform: translateZ(-30px);
  box-shadow: 0 0 20px rgba(4, 120, 87, 0.6);
  z-index: -1;
}

.animated-button::after {
  content: "→";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0;
}

.animated-button:hover::after {
  right: 20px;
  opacity: 1;
}

.animated-button:hover {
  transform: translateY(-12px) rotateX(15deg) rotateY(-8deg) scale(1.05);
  padding-right: 80px;
  box-shadow: 0 30px 60px rgba(16, 185, 129, 0.6), 0 0 80px rgba(16, 185, 129, 0.4), inset 0 3px 6px rgba(255, 255, 255, 0.4), inset 0 -3px 6px rgba(0, 0, 0, 0.3);
}

.animated-button:hover::before {
  transform: translateZ(-35px);
  box-shadow: 0 0 40px rgba(4, 120, 87, 0.8), 0 10px 30px rgba(0, 0, 0, 0.5);
}

.animated-button:active {
  transform: translateY(-8px) rotateX(12deg) rotateY(-6deg) scale(1.02);
  box-shadow: 0 25px 50px rgba(16, 185, 129, 0.5), 0 0 60px rgba(16, 185, 129, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.animated-button:active::before {
  transform: translateZ(-25px);
}

.contact-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.3), transparent 70%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: glowPulse 3s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.15);
  }
}
.contact-button::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px solid rgba(16, 185, 129, 0.3);
  border-radius: 20px;
  animation: borderRotate 8s linear infinite;
  pointer-events: none;
}

@keyframes borderRotate {
  0% {
    transform: rotate(0deg);
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(360deg);
    opacity: 0.5;
  }
}
@media (max-width: 991px) {
  .animated-button {
    padding: 20px 50px;
    font-size: 14px;
    letter-spacing: 2px;
  }
  .animated-button::after {
    font-size: 20px;
    right: 25px;
  }
  .animated-button:hover {
    padding-right: 70px;
  }
}
@media (max-width: 767px) {
  .animated-button {
    padding: 18px 45px;
    font-size: 13px;
    letter-spacing: 1.5px;
  }
  .animated-button::after {
    font-size: 18px;
    right: 20px;
  }
  .animated-button:hover {
    transform: translateY(-8px) rotateX(12deg) rotateY(-6deg) scale(1.03);
    padding-right: 65px;
  }
  .animated-button:hover::after {
    right: 15px;
  }
}
@media (max-width: 480px) {
  .animated-button {
    padding: 16px 40px;
    font-size: 12px;
    letter-spacing: 1px;
  }
  .animated-button::after {
    font-size: 16px;
  }
  .animated-button:hover {
    padding-right: 60px;
  }
  .contact-button::after {
    display: none;
  }
}
