@font-face {
  font-family: "Switzer";
  src: url("../fonts/Switzer-Regular.woff2") format("woff2"),
    url("../fonts/Switzer-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Switzer", sans-serif, Helvetica, sans-serif;
  font-weight: 400;
  background-color: #101010;
  color: #fff;
  margin: 0;
  box-sizing: border-box;
  padding: 0;
}

h1 {
  font-family: "Switzer", sans-serif;
  font-weight: 700;
  letter-spacing: -1px;
}

.my-skills h1,
.aboutUs h1,
.services-title,
.contact-info h1 {
  font-family: "Switzer", sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .my-skills h1,
  .aboutUs h1,
  .services-title,
  .contact-info h1 {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .my-skills h1,
  .aboutUs h1,
  .services-title,
  .contact-info h1 {
    font-size: 28px;
  }
}

.mydivname {
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.9), rgba(30, 30, 30, 0.9));
  padding: 40px 30px;
  border-radius: 12px;
  border: 1px solid rgba(154, 247, 163, 0.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
}
.mydivname:hover,
.mydivname:active {
  transform: translateY(-7px);
  border-color: rgba(154, 247, 163, 0.3);
  box-shadow: 0 8px 20px rgba(0, 255, 100, 0.1);
}
h2 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.flexContainer {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: center;
  background: transparent;
  border-radius: 8px;
  padding: 50px 30px;
  margin-bottom: 50px;
}

.logo img {
  max-width: 70px;
}

@media (max-width: 480px) {
  .logo img {
    max-width: 45px;
  }
}

.mydivname {
  flex: 0 0 30%;
  box-sizing: border-box;
  margin: 1%;
}
@media (max-width: 768px) {
  .mydivname {
    flex: 0 0 60%;
  }
}

@media (max-width: 480px) {
  .mydivname {
    flex: 0 0 100%;
  }
}

.flex-Container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4rem;
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
  background: radial-gradient(
    circle at center,
    rgba(11, 250, 107, 0.03),
    transparent 70%
  );
}

.aboutUs {
  flex: 1 1 45%;
  box-sizing: border-box;
  position: relative;
}

.aboutUs img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.aboutUs img:hover {
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .flex-Container {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
    padding: 60px 20px;
  }

  .aboutUs {
    flex: 1 1 100%;
  }

  .aboutUs img {
    max-width: 80%;
    height: auto;
    margin: 0 auto;
  }
  
  .aboutUs p,
  .myself-description {
    text-align: center;
  }
}

.aboutUs h2 {
  color: rgb(255, 255, 255);
  font-size: 64px;
  font-weight: 900;
  margin: 0 0 20px 0;
  line-height: 1.2;
  letter-spacing: -2px;
  position: relative;
  padding-bottom: 15px;
}

.aboutUs h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #00fb64, #00c9ff);
  border-radius: 2px;
}
@media (max-width: 768px) {
  .aboutUs h2 {
    font-size: 36px;
    white-space: nowrap;
  }
  
  .aboutUs h2::after {
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
  }
}

@media (max-width: 480px) {
  .aboutUs h2 {
    font-size: 28px;
    white-space: nowrap;
  }
  
  .aboutUs h2::after {
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
  }
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hamburger {
  display: none;
  background: transparent;
  border: none;
  color: #ffffff;
  width: 34px;
  height: 26px;
  cursor: pointer;
  position: relative;
}

.hamburger .bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease;
}

.hamburger .bar:nth-child(1) { top: 0; }
.hamburger .bar:nth-child(2) { top: 11px; }
.hamburger .bar:nth-child(3) { top: 22px; }

.hamburger.is-active .bar:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}

.hamburger.is-active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active .bar:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 70px;
    right: 20px;
    display: none;
  }
  .hamburger {
    display: inline-block;
  }
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 78%;
  max-width: 320px;
  height: 100vh;
  background: #111111;
  border-left: 1px solid rgba(255,255,255,0.08);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1500;
  display: flex;
  flex-direction: column;
}
.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sidebar-title { 
  color: #ffffff; 
  font-weight: 600;
  font-family: "Switzer", sans-serif;
  font-size: 16px;
}
.sidebar-close {
  position: relative;
  width: 30px;
  height: 24px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.sidebar-close .bar {
  position: absolute;
  left: 0; right: 0; height: 2px; background: #ffffff; border-radius: 2px;
  top: 11px;
  transition: transform 0.25s ease;
}
.sidebar-close .bar:first-child { transform: rotate(45deg); }
.sidebar-close .bar:last-child { transform: rotate(-45deg); }

.sidebar-nav {
  display: flex;
  flex-direction: column;
  padding: 12px;
}

.sidebar-nav a {
  color: #ffffff;
  text-decoration: none;
  padding: 12px 8px;
  border-radius: 6px;
}

.sidebar-nav a:hover {
  background: rgba(255,255,255,0.08);
}

.sidebar-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1400;
}

.sidebar.is-open {
  transform: translateX(0);
}

.sidebar-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.footer-name {
  position: relative;
  background: linear-gradient(180deg, #1a1a1a, #0d0d0d);
  padding: 60px 20px 30px;
  text-align: center;
  color: #c9c9c9;
  overflow: hidden;
}

.footer-name::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/LOGO-footer.png');
  background-size: 300px;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.footer-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-links a {
  color: #dcdcdc;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  font-family: "Switzer", sans-serif;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00fb64, #00c9ff);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #00c9ff;
}

.footer-links a:hover::after {
  width: 100%;
}

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

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(34, 34, 34, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #dcdcdc;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  pointer-events: auto;
  cursor: pointer;
  position: relative;
  z-index: 10;
}

.footer-social a:hover {
  background: rgba(0, 201, 255, 0.15);
  border-color: rgba(0, 201, 255, 0.4);
  color: #00c9ff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 201, 255, 0.2);
}

.footer-copyright {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  font-family: "Switzer", sans-serif;
  color: #a0a0a0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.header-social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: 20px;
}

.social-icon-header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(34, 34, 34, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #dcdcdc;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  pointer-events: auto;
  cursor: pointer;
  position: relative;
  z-index: 10;
}

.social-icon-header:hover {
  background: rgba(0, 201, 255, 0.15);
  border-color: rgba(0, 201, 255, 0.4);
  color: #00c9ff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .footer-name {
    padding: 50px 20px 25px;
  }

  .footer-name::before {
    background-size: 200px;
    opacity: 0.06;
  }

  .footer-links {
    gap: 20px;
    margin-bottom: 25px;
  }

  .footer-links a {
    font-size: 14px;
  }

  .footer-social {
    gap: 15px;
    margin-bottom: 25px;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .header-social-icons {
    display: none;
  }
}

@media (max-width: 480px) {
  .footer-name {
    padding: 40px 15px 20px;
  }

  .footer-name::before {
    background-size: 150px;
    opacity: 0.05;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
  }

  .footer-social a {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .footer-copyright {
    font-size: 13px;
  }
}
.hero {
  padding: 140px 40px 120px 40px;
  text-align: center;
  background: radial-gradient(
      circle at center,
      rgba(11, 250, 107, 0.04),
      transparent 70%
    ),
    linear-gradient(180deg, #0d0d0d, #1a1a1a);
  position: relative;
  overflow: hidden;
  min-height: 30vh;
}

.hero-content {
  height: auto;
  max-width: 100%;
  margin: 3px 0;
}

.hero h1 {
  font-size: 80px;
  margin: 0.5rem 0 1rem;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.2;
  padding: 0 20px;
}

#Emma {
  letter-spacing: -1px;
}

.myself-description {
  align-items: center;
}

@media (min-width: 1200px) {
  .hero h1 {
    font-size: 80px;
    font-weight: 900;
    -webkit-text-stroke: 1px #fff;
    letter-spacing: 5px;
    word-spacing: 1rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 35px;
  }
}


.cta-button {
  position: relative;
  display: inline-block;
  padding: 10px 40px;
  font-size: 20px;
  letter-spacing: 1.2;
  font-family: "Switzer", sans-serif, Helvetica, sans-serif;
  font-weight: 600;
  color: #000;
  background: linear-gradient(90deg, #00fb64, #00c9ff);
  border: none;
  border-radius: 12px;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 0 10px rgba(0, 255, 100, 0.1);
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: #0f0;
  transition: all 0.4s ease-in-out;
}

.cta-button::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 3px;
  background: #0f0;
  transition: all 0.4s ease-in-out;
}

.cta-button:hover,
.cta-button:active {
  background: transparent;
  color: #9af7a3;
  border: 2px solid rgb(190, 255, 190);
}

.cta-button:hover::before {
  left: 0;
}

.cta-button:hover::after {
  right: 0;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 20px;
  font-weight: 600;
  font-size: 15px;
  font-family: "Switzer", sans-serif;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}





@media (max-width: 1024px) {
  nav a {
    font-size: 14px;
  }
}
nav a:hover,
nav a:active {
  background: linear-gradient(90deg, #00fb644f, #00c8ff55);
  transition: width 0.3s ease;
  padding: 5px 10px;
}


.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00fb64, #00c9ff);
  transition: width 0.3s ease;
}

.cta-button-nav {
  display: inline-block;
  background: linear-gradient(90deg, #00fb64, #00c9ff);
  color: #151515;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  font-family: "Switzer", sans-serif;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button-nav:hover {
  background: transparent;
  color: #9af7a3;
  border: 2px solid rgb(190, 255, 190);
}

@media (max-width: 768px) {
  .cta-button-nav {
    display: none;
  }
}

#preloader {
  position: fixed;
  inset: 0;
  background: #0f0f0f;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  width: 56px;
  height: 56px;
  border: 4px solid rgba(154, 247, 163, 0.2);
  border-top-color: #9af7a3;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  box-shadow: 0 0 25px rgba(0, 255, 100, 0.08);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.available-for-projects {
  color: #9af7a3;
  font-size: 18px;
  font-weight: 600;
  font-family: "Switzer", sans-serif;
}

@media (max-width: 1024px) {
  .available-for-projects {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .available-for-projects {
    font-size: 14px;
  }
}
.circle-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #9af7a3;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 5px rgba(0, 128, 0, 0.2);
  }
  50% {
    transform: scale(1.2);
    opacity: 0.6;
    box-shadow: 0 0 15px rgba(0, 128, 0, 0.3);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 5px rgba(0, 128, 0, 0.2);
  }
}

.available-for-projects-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  gap: 10px;
}

.hero-p {
  font-size: 35px !important;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  padding: 20px 0 0 0;
  max-width: 700px;
  margin: 15px auto;
  color: #dcdcdc;
}
@media (max-width: 768px) {
  .hero-p {
    font-size: 25px !important;
  }
}

@media (max-width: 480px) {
  .hero-p {
    font-size: 20px !important;
  }
}

#typewriter {
  font-size: 30px;
}

.hero-p::after {
  content: "|";
  margin-left: 5px;
  color: #00c9ff;
  animation: blink 0.8s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

#hey {
  color: #0587ab;
  font-weight: 400;
  font-size: 25px;
  margin-top: 10px;
}

.social-media {
  display: flex;
  justify-content: center;
  gap: 5px;
  font-size: 2.5rem;
  margin-top: 12px;
  color: #00c9ff;
}

.social-media a {
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.3s, transform 0.3s;
  margin: 7px;
}

.social-media a:hover {
  color: #1da1f2;
}

.my-skills {
  padding: 80px 20px;
  background: #111;
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.skill-item {
  background: #222;
  display: flex;
  flex-direction: row;
  padding: 20px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: transform 0.3s ease, background 0.3s ease;
}

.skill-item:hover {
  transform: translateY(-10px);
  background: #00c9ff;
  color: #151515;
  box-shadow: 0 0 15px rgba(0, 255, 100, 0.08);
}

.skill-item img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  padding-right: 10px;
  flex-shrink: 0;
}

.skill-item span,
.skill-item br {
  display: inline;
}

.skills-carousel-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.skill-nav-btn {
  display: none;
}

@media (max-width: 768px) {
  .skills-carousel-wrapper {
    position: relative;
    padding: 0 50px;
    margin: 0 auto;
  }

  .skill-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(34, 34, 34, 0.9);
    border: 2px solid rgba(0, 201, 255, 0.3);
    border-radius: 12px;
    color: #00c9ff;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }

  .skill-nav-btn:hover {
    background: rgba(0, 201, 255, 0.15);
    border-color: rgba(0, 201, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 201, 255, 0.3);
  }

  .skill-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
  }

  .skill-nav-prev {
    left: 0;
  }

  .skill-nav-next {
    right: 0;
  }

  .skills-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    /* Use JS-driven smooth scrolling to avoid double-smoothing jank */
    scroll-behavior: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 0;
    padding: 20px 0;
    margin: 0;
    max-width: 100%;
  }

  .skills-grid::-webkit-scrollbar {
    display: none;
  }

  .skill-item {
    flex: 0 0 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    min-height: 220px;
    background: rgba(34, 34, 34, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    box-sizing: border-box;
    margin: 0;
    opacity: 0.6;
    transform: scale(0.95);
    will-change: transform, opacity;
    gap: 16px;
  }

  .skill-item.active {
    opacity: 1;
    transform: scale(1);
    border-color: rgba(0, 201, 255, 0.4);
    box-shadow: 0 8px 30px rgba(0, 201, 255, 0.2);
  }

  .skill-item img {
    width: 60px;
    height: 60px;
    padding: 0;
    margin: 0;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
  }

  .skill-item .skill-name {
    display: block;
    font-size: 14px;
    font-weight: 500;
    font-family: "Switzer", sans-serif;
    color: #dcdcdc;
    text-align: center;
    line-height: 1.4;
    margin-top: 8px;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
  }

  .skill-item.active .skill-name {
    color: #ffffff;
    font-weight: 600;
  }
}

@media (max-width: 480px) {
  .skills-carousel-wrapper {
    padding: 0 45px;
  }

  .skill-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .skill-item {
    padding: 35px 15px;
    min-height: 200px;
    border-radius: 14px;
    gap: 14px;
  }

  .skill-item img {
    width: 50px;
    height: 50px;
  }

  .skill-item .skill-name {
    font-size: 13px;
    margin-top: 6px;
  }
}

.my-skills h2 {
  color: #fff;
}

.myself-description {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  font-family: "Switzer", sans-serif;
  color: #dcdcdc;
  text-align: left;
  max-width: 700px;
  margin: 0 0 20px 0;
}

.myself-description strong {
  color: #ffffff;
  font-weight: 600;
  font-size: 20px;
  font-family: "Switzer", sans-serif;
  display: block;
  margin-bottom: 15px;
}

.aboutUs p {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 400;
  font-family: "Switzer", sans-serif;
  color: #a0a0a0;
  text-align: left;
  margin-bottom: 15px;
}

.contact-me {
  font-size: 18px;
  font-weight: 400;
  font-family: "Switzer", sans-serif;
}

.contact-container {
  background: linear-gradient(180deg, #0d0d0d, #1a1a1a);
  padding: 80px 40px;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
}

.contact-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
      rgba(11, 250, 107, 0.03),
    transparent 70%
  );
  pointer-events: none;
}

.contact-info {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 40px;
  background: rgba(17, 17, 17, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(154, 247, 163, 0.1);
  box-shadow: 0 0 30px rgba(0, 255, 100, 0.05);
  transition: all 0.3s ease;
}

.contact-info:hover {
  box-shadow: 0 0 40px rgba(0, 255, 100, 0.08);
  border-color: rgba(154, 247, 163, 0.2);
  transform: translateY(-5px);
}

.contact-info .contact-me {
  color: #dcdcdc;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
  font-weight: 400;
  font-family: "Switzer", sans-serif;
}

.contact-info p {
  color: #c9c9c9;
  font-size: 16px;
  font-weight: 400;
  font-family: "Switzer", sans-serif;
  margin: 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contact-info a {
  color: #9af7a3;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.contact-info a:hover {
  color: #00c9ff;
  text-decoration: underline;
}

.contact-info > p {
  font-size: 16px;
  color: #dcdcdc;
  font-weight: 400;
  font-family: "Switzer", sans-serif;
}

@media (max-width: 768px) {
  .contact-container {
    padding: 60px 20px;
  }
  
  .contact-info {
    padding: 30px 20px;
  }
  
  .contact-info .contact-me {
    font-size: 18px;
  }
  
  .contact-info p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .contact-container {
    padding: 40px 15px;
  }
  
  .contact-info {
    padding: 25px 15px;
  }
  
  .contact-info .contact-me {
    font-size: 16px;
  }
  
  .contact-info p {
    font-size: 14px;
  }
}

.contact-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Switzer", sans-serif;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  margin-left: 30px;
}

.whatsapp-btn {
  background: linear-gradient(90deg, #00fb64, #00c9ff);
  color: #000000;
  font-weight: 700;
  box-shadow: 0 0 15px rgba(0, 255, 100, 0.08);
}

.whatsapp-btn:hover {
  background: transparent;
  color: #6ca872;
  border-color: rgba(126, 204, 134, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(1, 181, 73, 0.15);
}

.email-btn {
  background: rgba(17, 17, 17, 0.6);
  color: #fff;
  border: 2px solid rgba(154, 247, 163, 0.2);
}

.contact-btn i {
  font-size: 20px;
}

@media (max-width: 768px) {
  .contact-buttons {
    flex-direction: column;
    gap: 15px;
    margin: auto;
  }
  
  .contact-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 25px;
    font-size: 16px;
    margin: auto;
    max-width: 50%;
  }
}

@media (max-width: 480px) {
  .contact-btn {
    padding: 12px 20px;
    font-size: 14px;
    max-width: 50%;
    margin: auto;
  }
  
  .contact-btn i {
    font-size: 18px;
  }
  
}

.whatsapp-text {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  font-family: "Switzer", sans-serif;
}
.whatsapp-btn:hover .whatsapp-text {
  color: #6ca872;
}

.services-section {
  text-align: center;
  margin: 60px 0 40px 0;
}

.services-subtitle {
  font-size: 18px;
  color: #dcdcdc;
  font-weight: 400;
  font-family: "Switzer", sans-serif;
  line-height: 1.6;
}

.service-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.price-range {
  margin: 15px 0;
  padding: 12px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.price-range:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: translateX(5px);
}

.price-entry {
  color: #9af7a3;
  font-size: 13px;
  font-weight: 600;
  font-family: "Switzer", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 5px 0;
}

.price-intermediate {
  color: #00c9ff;
  font-size: 13px;
  font-weight: 600;
  font-family: "Switzer", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 5px 0;
}

.price-advanced {
  color: #b1f6de;
  font-size: 13px;
  font-weight: 600;
  font-family: "Switzer", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 5px 0;
}

.price-amount {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  font-family: "Switzer", sans-serif;
  margin: 0;
}

.mydivname:nth-child(1) .price-range:nth-child(2),
.mydivname:nth-child(2) .price-range:nth-child(2),
.mydivname:nth-child(3) .price-range:nth-child(2) {
  border-left-color: #9af7a3;
}

.mydivname:nth-child(1) .price-range:nth-child(3),
.mydivname:nth-child(2) .price-range:nth-child(3),
.mydivname:nth-child(3) .price-range:nth-child(3) {
  border-left-color: #00c9ff;
}

.mydivname:nth-child(1) .price-range:nth-child(4),
.mydivname:nth-child(2) .price-range:nth-child(4),
.mydivname:nth-child(3) .price-range:nth-child(4) {
  border-left-color: #b1f6de;
}

@media (max-width: 768px) {
  .services-subtitle {
    font-size: 18px;
  }
  
  .mydivname {
    padding: 30px 20px;
  }
  
  .mydivname h2 {
    font-size: 24px;
  }
  
  .service-icon {
    font-size: 40px;
  }
  
  .price-amount {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .services-subtitle {
    font-size: 16px;
  }
  
  .mydivname {
    padding: 25px 15px;
  }
  
  .mydivname h2 {
    font-size: 20px;
  }
  
  .service-icon {
    font-size: 36px;
  }
  
  .price-amount {
    font-size: 16px;
  }
  
  .price-entry,
  .price-intermediate,
  .price-advanced {
    font-size: 12px;
  }
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00fb64, #00c9ff);
  border: none;
  border-radius: 12px;
  color: #000000;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 255, 100, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: transparent;
  color: #9af7a3;
  border: 2px solid #9af7a3;
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 255, 100, 0.3);
}

@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .scroll-to-top {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

hr.rule {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, #00fb64, #00c9ff);
  margin: 20px 0 0 0;
}
