/* General Styles */
body {
  font-family: "Lora", serif;
  background: #e8ebf0;
  color: #333;
  transition: background 0.5s ease, color 0.5s ease;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  background: transparent;
  padding: 15px 0;
  border: none; /* Removed border */
}
/* Customizing Brand Name */
.navbar-brand {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  margin-left: 1rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Apply font to brand name */
.navbar-brand .brand-name {
  font-family: "Exile", cursive;
  font-weight: normal;
  font-size: 24px;
  color: #484554;
  letter-spacing: 1px;
}

/* Logo Styling */
.logo {
  width: 40px; /* Adjust as needed */
  height: auto;
  margin-right: 10px;
}

/* Hover & Click Animations */
.navbar-brand .brand-name:hover {
  transition: transform 0.4s ease;
  transform: scale(1.05);
  color: #53505c;
}

.navbar-brand .brand-name:active {
  transform: scale(0.95);
}

.navbar .navbar-toggler {
  border: none;
  position: absolute;
  right: 0.5rem; /* Position it to the right */
  /* margin-top: 15px; */
}

.navbar .nav-link {
  font-size: 20px; /* Make the nav menu icons smaller */
  color: #333;
  font-family: "Playfair Display", serif;
  transition: color 0.3s;
  margin-right: 50px;
}

.navbar .nav-link:hover {
  color: #6c5ce7;
  transition: transform 0.4s ease;
  transform: scale(1.4);
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 85vh;
  padding: 10px 5%;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  min-height: 620px;
  max-width: 1320px;
  width: 100%;
  justify-content: center;
  border: 2px solid #ccc;
  padding: 40px;
  border-radius: 15px;
  /* background: white; */
  flex-direction: row;
}

/* Profile Image */
.image-section img {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  object-fit: cover;
  /* box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2); */
  animation: fadeIn 3s ease-in-out, breathing 5s ease-in-out 3s infinite;
  animation-fill-mode: both;
}

@keyframes breathing {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

/* Text Section */
.text-section h1 {
  font-size: 48px;
  font-weight: bold;
  font-family: "Playfair Display", serif;
  animation: fadeIn 2s ease-in-out;
}

.text-section h2 {
  font-size: 22px;
  color: #555;
  animation: fadeIn 1s ease-in-out;
}

.text-section p {
  font-size: 18px;
  line-height: 1.6;
  animation: fadeIn 1s ease-in-out;
}

/* Social Icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}
.social-icons a {
  font-size: 28px;
  margin-right:5px;
  color: #333;
  transition: transform 0.4s ease;
}
.fa-youtube {
    color: red;
}

.fa-facebook {
  color: blue;
}

.fa-twitter {
  color: black;
}

.fa-instagram {
  color: red;
}

.social-icons a:hover {
  transform: scale(1.8);
}

.fa-telegram {
  color: skyblue;
}

.fa-linkedin {
  color: blue;
}

.fa-whatsapp {
  color: green;
}

/* Dark Mode Button */
#dark-mode-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--primary-color,#495057);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: transform 0.3s, background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

#dark-mode-toggle:hover {
  transform: scale(1.3);
}

[data-theme="dark"] #dark-mode-toggle {
  background: var(--primary-color, #454451);
}

/* Footer */
.footer {
  text-align: center;
  font-size: 16px;
  background: transparent;
}


/* Smooth Animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  70% {
    opacity: 1;
    transform: scale(1.08);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* Blog page */
.blog-card {
  background-color: #dcdee7;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 1px 5px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.25s ease-in-out;
}

.project-image {
  position: relative;
  overflow: hidden;
  margin-top: 20px;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}

.project-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(40, 44, 52, 0.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  border-radius: 12px;
  transform: scale(0.98);
  pointer-events: auto;
}
.project-card:hover .project-image .overlay,
.project-card.touch-hover .project-image .overlay {
  opacity: 1;
  transform: scale(1);
}
.project-image .overlay .btn {
  background: rgba(255,255,255,0.18);
  color: #222;
  border: none;
  border-radius: 2rem;
  padding: 0.7rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(40,44,52,0.12);
  transition: transform 0.22s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.22s cubic-bezier(0.23, 1, 0.32, 1);
  letter-spacing: 0.03em;
  outline: none;
}
.project-image .overlay .btn:hover,
.project-image .overlay .btn.touch-hover {
  transform: scale(1.09);
  box-shadow: 0 4px 24px rgba(40,44,52,0.18);
  background: rgba(255,255,255,0.28);
  color: #111;
}

.project-image:hover .overlay {
  opacity: 1;
}

.project-image:hover img {
  transform: scale(1.05);
}

.project-image .overlay .btn {
  transform: translateY(20px);
  transition: transform 0.3s ease;
  padding: 10px 20px;
  font-size: 1rem;
  white-space: nowrap;
}

.project-image:hover .overlay .btn {
  transform: translateY(0);
}

.blog-card:hover {
  background-color: #969ab3;
  transform: scale(1.04) !important;
  will-change: transform;
}

.blog-content {
  display: none;
  margin-top: 10px;
}

.blog-content ul {
  padding-left: 20px;
  margin: 15px 0;
}

.blog-content li {
  margin-bottom: 8px;
}

.blog-content .btn {
  margin-top: 15px;
}

.section-title {
  color: #3b3b3b;
  text-align: center;
  margin-bottom: 30px;
}



/* Resume Page */
.section-title {
  color: rgb(73, 77, 81);
  text-align: center;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

@keyframes floatProfile {
  0%   { transform: translateY(0) scale(1); }
  50%  { transform: translateY(10px) scale(1.04); }
  100% { transform: translateY(0) scale(1); }
}
.profile-img {
  display: block;
  margin: 0 auto;
  min-width: 200px;
  width: 25%;
  height: 25%;
  border-radius: 50%;
  border: 3px solid #AEB0C9;
  transition: transform 0.3s ease-in-out;
  animation: floatProfile 8s ease-in-out infinite;
  animation-play-state: running;
  will-change: transform;
}
.profile-img:hover,
.profile-img.touch-hover {
  animation-play-state: paused !important;
  transform: scale(1.02) !important;
  will-change: transform;
}

.profile-img.scaling {
  animation: none !important;
  transform: scale(1.02) !important;
  will-change: transform;
}

.timeline {
  position: relative;
  padding-left: 30px;
  border-left: 3px solid rgb(182, 179, 194);
}

.timeline-item {
  margin-bottom: 20px;
  padding-left: 20px;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -11px;
  top: 5px;
  width: 20px;
  height: 20px;
  background: rgb(174, 176, 201);
  border-radius: 50%;
}
.qualifications{
  margin-top: 20px;
  margin-left: 8%;
  margin-right: 8%;
}
.skill-bar {
  background-color: rgb(219, 216, 228);
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 5px;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.skill-bar:hover,
.skill-bar.touch-hover {
  transform: scale(1.06) !important;
  will-change: transform;
}

.skill-bar .fill {
  height: 20px;
  background-color: #AEB0C9;
  border-radius: 5px;
  text-align: center;
  line-height: 20px;
}

.skill-icon {
  font-size: 24px;
  margin-right: 10px;
}

.skill-icons {
    margin: 10px 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.skill-icons i {
    /* font-size: 1.5rem; */
    color: #666;
    transition: color 0.3s ease;
}

.skill-icons i:hover {
    color: #fa478c;
    transform: scale(1.3);
}

.certificate-card {
  background: rgb(219, 216, 228);
  text-align: center;
  border-radius: 10px;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  transition: transform 0.4s ease-in-out;
  min-height: 22vh;
  cursor: pointer;
}

.certificate-card img {
  width: 100%;
  max-width: 180px;
  border: 4px solid  #AEB0C9;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

/* Zoom overlay */
.zoom-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 1000;
  cursor: zoom-out;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.zoom-overlay.active {
  opacity: 1;
}

.zoom-overlay img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  max-width: 90%;
  max-height: 90%;
  border: none;
  border-radius: 5px;
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.3s ease;
}

.zoom-overlay.active img {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}


.certificate-card:hover {
  transform: scale(1.04) !important;
  
}

/* Portfolio page */
.section-title {
  color: rgb(73, 77, 81);
  text-align: center;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.masonry-grid {
  column-count: 4;
  column-gap: 22px;
  padding: 20px;
  position: relative;
}

/* Add a transparent overlay to prevent right-click */
.masonry-grid::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  pointer-events: none;
}

.masonry-grid img {
  width: 100%;
  break-inside: avoid;
  margin-bottom: 22px;
  border-radius: 4px;
  border: 1.5dvh solid #474a58;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  pointer-events: auto;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1;
}
/* Browser-specific context menu prevention (complemented by JavaScript) */
.masonry-grid {
  -webkit-context-menu: none;
  -moz-context-menu: none;
  -ms-context-menu: none;
  pointer-events: auto;
}

.masonry-grid img:hover {
  transform: scale(1.04) !important;
  will-change: transform;
}
@media (max-width: 1024px) {
  .masonry-grid {
    column-count: 3;
  }
}
@media (max-width: 768px) {
  .masonry-grid {
    column-count: 2;
  }
}
@media (max-width: 480px) {
  .masonry-grid {
    column-count: 2;
  }
}


 /*🛠 FIXED RESPONSIVENESS */
 /*Medium Screen Fixes */
@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
    padding: 20px;
  }

  .image-section img {
    width: 320px;
    height: 320px;
  }

  .text-section h1 {
    font-size: 42px;
  }

  .text-section h2 {
    font-size: 20px;
  }

  .text-section p {
    font-size: 16px;
  }
  .certificate-card {
	  min-height: 20vh;
	  padding-top: 10px;
    /* padding-bottom: 5px; */
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* Tablet Fixes */
@media (max-width: 768px) {
  .text-section h1 {
    font-size: 38px;
  }

  .text-section h2 {
    font-size: 18px;
  }

  .text-section p {
    font-size: 15px;
  }

  .image-section img {
    width: 280px;
    height: 280px;
  }
  .qualifications{
    margin-left: 2%;
    margin-right: 2%;
  }
  .certificate-card {
	min-height: 22vh;
	padding-top: 10px;
    /* padding-bottom: 5px; */
    padding-left: 10px;
    padding-right: 10px;
  }
  .project-image {
    padding-bottom: 75%; /* 4:3 Aspect Ratio for tablets */
  }
  .project-image .overlay .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

/* Small Screen Fixes */
@media (max-width: 576px) {
  .navbar .nav-link {
    margin-left: 1rem;
    margin-right: 0px;
  }
  .navbar .nav-link:hover {
    transform: scale(1.05);
  }
  .text-section h1 {
    font-size: 32px;
  }

  .text-section h2 {
    font-size: 16px;
  }

  .text-section p {
    font-size: 14px;
  }

  .image-section img {
    width: 250px;
    height: 250px;
  }

  .hero {
    padding: 0px 5px;
    min-height:72vh;
  }
  .hero-content{
    border: 0px solid black;
  }
  .certificate-card {
	min-height: 20vh;
	padding-top: 10px;
  /* padding-bottom: 5px; */
  padding-left: 10px;
  padding-right: 10px;
  }
  .certificate-card img{
	border: 3px solid #AEB0C9;
  }

  #dark-mode-toggle {
    position: static;
    width: 24px;
    height: 24px;
    margin-right: 38px;
  }

  .navbar .navbar-toggler {
    margin-left: 10px;
  }

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

  .navbar-brand {
    margin-left: 0;
  }

  .project-image {
    padding-bottom: 100%; /* 1:1 Aspect Ratio for mobile */
  }
  
  .project-image .overlay .btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  .project-card h3 {
    font-size: 1.1rem;
  }
  .project-card p {
    font-size: 0.92rem;
  }
}

/* Dark Mode Styles */
[data-theme="dark"] {
  --bg-color: #191c26;
  --brandname-color:#8c8994;
  --brandname-hover-color:#bdb8cb;
  --text-color: #bbc3e1;
  --text-color-2:#9d8bf0;
  --hero-bg: #0e1322;
  --card-bg: #363A46;
  --card-hover: #000;
  --border-color: #363a48;
  --link-color: #7b89aa;
  --link-hover: #bdb8cb;
}

[data-theme="dark"] body {
  background: var(--bg-color);
  color: var(--text-color);
}

[data-theme="dark"] .brand-name {
  color: var(--brandname-color);
}
[data-theme="dark"] .brand-name:hover {
  color: var(--brandname-hover-color);
}

[data-theme="dark"] .navbar {
  background: var(--bg-color);
}

[data-theme="dark"] .navbar .nav-link {
  color: var(--text-color);
}

[data-theme="dark"] .navbar-brand .brand-name {
  color: var(--link-color);
}

[data-theme="dark"] .navbar-brand .brand-name:hover {
  color: var(--link-hover);
}

[data-theme="dark"] .hero-content {
  background: var(--bg-color);
  border-color: var(--border-color);
}

[data-theme="dark"] .hero h1,.hero h2  {
  color:var(--text-color);
}

[data-theme="dark"] .blog-card {
  background-color: var(--card-bg);
}

[data-theme="dark"] .blog-card:hover {
  background-color: var(--card-hover);
}

[data-theme="dark"] .section-title {
  color: var(--text-color-2);
}
[data-theme="dark"] .profile-img {
  border: 3px solid #86838d;
}

[data-theme="dark"] .skill-bar {
  background-color: #363A46;
}

[data-theme="dark"] .skill-bar .fill {
  height: 20px;
  background-color: rgb(18, 21, 32);
}

[data-theme="dark"] .skill-icon {
  color: rgb(195, 195, 215);
}
[data-theme="dark"] .zoom-overlay {
  background: rgba(0, 0, 0, 0.8);
}

[data-theme="dark"] .certificate-card {
  background: #363A46;
}

[data-theme="dark"] .certificate-card img {
  border-color: #1F1F24;
}
[data-theme="dark"] .masonry-grid img {
  border-color: #363A46;
}

/* Dark Mode Toggle */
.theme-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: var(--surface-color);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.theme-toggle i {
    font-size: 1.5rem;
    color: var(--text-color);
    transition: var(--transition);
}

.theme-toggle:hover {
    transform: scale(1.1);
}

/* Responsive Dark Mode Toggle */
@media (max-width: 768px) {
    .theme-toggle {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }

    .theme-toggle i {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .theme-toggle {
        bottom: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
    }

    .theme-toggle i {
        font-size: 1rem;
    }
}

.blog-card .read-more {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.blog-card .read-more:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .blog-card .read-more {
    background-color: var(--primary-color);
    color: var(--text-color);
}

[data-theme="dark"] .blog-card .read-more:hover {
    background-color: var(--secondary-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Touch hover support for touchscreen devices */
.navbar-brand .brand-name.touch-hover {
  transform: scale(1.05)!important;
}

.navbar .nav-link.touch-hover {
  transform: scale(1.4)!important;
}

.social-icons a.touch-hover {
  transform: scale(1.8)!important;
}

.project-image.touch-hover .overlay {
  opacity: 1;
}

.project-image.touch-hover img {
  transform: scale(1.05)!important;
}

.project-image .overlay .btn.touch-hover {
  transform: translateY(0);
}

.blog-card.touch-hover {
  transform: scale(1.02);
}

.certificate-card:hover,
.certificate-card.touch-hover {
  transform: scale(1.04) !important;
  will-change: transform;
}

.profile-img.touch-hover {
  transform: scale(1.1)!important;
}

.masonry-grid img.touch-hover {
  transform: scale(1.1)!important;
}

.blog-card .read-more.touch-hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-section img.touch-hover {
  /* Optionally, add a slight scale for touch */
  transform: scale(1.06)!important;
}

/* Show overlay when the entire project card is hovered or touched */
.blog-card.project-card:hover .project-image .overlay,
.blog-card.project-card.touch-hover .project-image .overlay {
  opacity: 1;
}

/* Project Card Styles (same as blog-card, but for .project-card) */
.project-card {
  background-color: #dcdee7;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 0 1px 5px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.5s ease;
  position: relative;
}
.project-card:hover,
.project-card.touch-hover {
  transform: scale(1.04) !important;
  will-change: transform;
}

/* Show overlay when the entire project card is hovered or touched */
.project-card:hover .project-image .overlay,
.project-card.touch-hover .project-image .overlay {
  opacity: 1;
}

[data-theme="dark"] .project-card {
  background-color: var(--card-bg);
}
[data-theme="dark"] .project-card:hover,
[data-theme="dark"] .project-card.touch-hover {
  background-color: var(--card-hover);
}

@media (max-width: 1024px) {
  .project-card {
    min-height: 20vh;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 768px) {
  .project-card {
    min-height: 22vh;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 576px) {
  .project-card {
    min-height: 20vh;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }
  
}

@keyframes staggeredFadeIn {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.92);
  }
  80% {
    opacity: 1;
    transform: translateY(-6px) scale(1.04);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.staggered-fade-in {
  opacity: 0;
  animation: staggeredFadeIn 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.project-card:hover .skill-icons i,
.project-card.touch-hover .skill-icons i,
.project-card:hover .skill-icons svg,
.project-card.touch-hover .skill-icons svg,
.project-card:hover .skill-icons svg *,
.project-card.touch-hover .skill-icons svg * {
  color: #6c5ce7 !important;
  fill: #6c5ce7 !important;
  transition: color 0.3s, fill 0.3s;
}

@keyframes wave {
  0% { transform: translateY(0); }
  10% { transform: translateY(-12px); }
  20% { transform: translateY(0); }
  100% { transform: translateY(0); }
}
.wave-animate {
  animation: wave 8s cubic-bezier(0.23, 1, 0.32, 1) infinite;
  display: inline-block;
}
.wave-animate-hover {
  animation: wave 1s cubic-bezier(0.23, 1, 0.32, 1) !important;
  animation-iteration-count: 1;
}
.social-icons a:hover,
.social-icons a.touch-hover {
  /* Remove idle wave, trigger fast wave on hover */
  animation: wave 1s cubic-bezier(0.23, 1, 0.32, 1) !important;
  animation-iteration-count: 1 !important;
}