#content + footer {
    background-color: var(--secondary-background-color) !important;
    padding: 2rem 0 !important;
    margin-top: 2rem !important;
}

body[data-theme="dark"] #content + footer {
    background-color: var(--secondary-background-color) !important;
} 

/* About section styling */
.about-image-container {
    text-align: center;
    margin-bottom: 2rem;
}

.about-image-container img {
    max-width: 250px;
    border: 3px solid var(--secondary-background-color);
    transition: transform 0.3s ease;
}

.about-image-container img:hover {
    transform: scale(1.02);
}

.about-content {
    line-height: 1.8;
}

#about .content {
    font-weight: 400;
    opacity: 0.9 !important;
    line-height: 1.7rem !important;
}

.skills-section {
    border-radius: 1.5rem;
    padding: 1.5rem;
    margin-top: 2rem;
    border: 2px solid var(--text-secondary-color) !important;
    box-shadow: 0px 8px 56px rgb(15 80 100 / 16%);
    transition: box-shadow .2s linear, opacity .2s linear;
    transition: transform 0.2s;
}

.skills-section:hover {
    transition: 0.3s;
    box-shadow: 0 4px 11px rgb(15 80 100 / 16%);
    border: 2px solid var(--primary-color) !important;
}

.skills-title {
    color: var(--text-color);
    font-size: 1.25rem;
    font-weight: 500;
    /* text-decoration: wavy underline; */
}

.hero-badge {
    background-color: var(--text-color) !important;
    color: var(--background-color) !important;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid var(--text-secondary-color);
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    background-color: var(--text-secondary-color) !important;
    color: var(--text-color) !important;
}

h2.section-title {
    color: var(--text-secondary-color) !important;
}

.service-card {
    border-radius: 1.5rem;
    box-shadow: 0px 8px 56px rgb(15 80 100 / 16%);
    border: 2px solid var(--text-secondary-color) !important;
    transition: box-shadow .2s linear,opacity .2s linear;
    transition: transform 0.2s;
}

.service-card:hover {
    transition: 0.3s;
    box-shadow: 0 4px 11px rgb(15 80 100 / 16%);
    border: 2px solid var(--primary-color) !important;
}

.service-title {
    color: var(--text-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-secondary-color);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.service-features li {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li:before {
    content: "✔";
    color: var(--text-secondary-color);
    position: absolute;
    left: 0;
}

#single .page-content h1, #single .page-content h2, #single .page-content h3, #single .page-content h4, #single .page-content h5, #single .page-content h6 {
    color: var(--text-link-color) !important;
    margin-bottom: 0.7em;
    opacity: 0.9;
    font-family: "Space Grotesk", sans-serif;
}

#single .title {
    font-family: "Space Grotesk", sans-serif;
}

#stickySideBar {
    font-family: "Space Grotesk", sans-serif;
}

.skills-section li {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.skill-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    padding-left: 1rem;
    position: relative;
}

.skill-item:before {
    content: "•";
    color: var(--text-secondary-color);
    position: absolute;
    left: 0;
}

.skill-item i {
    display: none;
}

#hero {
    min-height: 100vh;
    line-height: 2rem;
    max-width: 100%;
}

@media (min-width: 768px) {
  section {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
  }
  section .wave {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
    transition: 20s;
  }
  section .wave span {
    content: "";
    position: absolute;
    width: 325vh;
    height: 325vh;
    top: 0;
    left: 50%;
    transform: translate(-50%, -75%);
    background: #000;
  }
  #hero .content {
    position: relative;
    z-index: 1;
  }
  #hero .image {
    position: relative;
    z-index: 1;
  }
  section .wave span:nth-child(1) {
    border-radius: 45%;
    background: var(--text-secondary-color);
    animation: animate 20s linear infinite;
  }
  section .wave span:nth-child(2) {
    border-radius: 40%;
    background: var(--secondary-background-color);
    animation: animate 25s linear infinite;
  }
  section .wave span:nth-child(3) {
    border-radius: 42.5%;
    background: var(--background-color);
    animation: animate 30s linear infinite;
  }
  @keyframes animate {
    0% {
      transform: translate(-50%, -75%) rotate(0deg);
    }
    100% {
      transform: translate(-50%, -75%) rotate(360deg);
    }
  }
}

/* Hide hero image on mobile */
@media (max-width: 768px) {
    #hero .col-sm-12.col-md-12.col-lg-4 {
        display: none;
    }
}

.about-image-container img {
    max-width: 100%;
    border: 3px solid var(--secondary-background-color);
    transition: transform 0.3s ease;
}