/* Base Styles and Variables */
:root {
  --primary-color: #3a7bd5;
  --primary-dark: #2d62ab;
  --primary-light: #6fa1ea;
  --secondary-color: #4b4b4b;
  --secondary-dark: #333333;
  --secondary-light: #666666;
  --accent-color: #36d1dc;
  --accent-dark: #2ca8b4;
  --accent-light: #5de6f1;
  --background-color: #f5f7fa;
  --card-color: #ffffff;
  --text-color: #333333;
  --text-light: #666666;
  --text-dark: #222222;
  --text-white: #ffffff;
  --success-color: #48c774;
  --warning-color: #ffdd57;
  --danger-color: #f14668;
  --border-radius: 12px;
  --box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.1), -8px -8px 16px rgba(255, 255, 255, 0.7);
  --box-shadow-inset: inset 8px 8px 16px rgba(0, 0, 0, 0.1), inset -8px -8px 16px rgba(255, 255, 255, 0.7);
  --transition: all 0.3s ease;
}

/* Global Styles */
body {
  font-family: 'Work Sans', sans-serif;
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.2rem;
  color: var(--text-color);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
}

.title, .subtitle {
  font-family: 'Poppins', sans-serif;
}

.title.is-1, .title.is-2, .title.is-3 {
  margin-bottom: 1.5rem;
}

/* Neomorphic Elements */
.neomorphic-card {
  background-color: var(--card-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 1.5rem;
  transition: var(--transition);
  margin-bottom: 2rem;
}

.neomorphic-card:hover {
  transform: translateY(-5px);
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.12), -10px -10px 20px rgba(255, 255, 255, 0.8);
}

.neomorphic-button {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  background-color: var(--primary-color);
  color: var(--text-white);
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  margin: 0.5rem;
}

.neomorphic-button:hover {
  box-shadow: var(--box-shadow-inset);
  background-color: var(--primary-dark);
  color: var(--text-white);
}

.neomorphic-button.is-light {
  background-color: var(--card-color);
  color: var(--primary-color);
}

.neomorphic-button.is-light:hover {
  color: var(--primary-dark);
}

.neomorphic-input {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-inset);
  border: none;
  padding: 0.75rem 1rem;
  background-color: var(--card-color);
  transition: var(--transition);
}

.neomorphic-input:focus {
  box-shadow: var(--box-shadow);
  outline: none;
}

/* Layout Components */
.section {
  padding: 5rem 1.5rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: var(--card-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.header.scrolled {
  padding: 0.5rem 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.navbar-item {
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
}

.navbar-item:hover {
  color: var(--primary-color);
}

.navbar-burger {
  display: none;
  cursor: pointer;
}

@media screen and (max-width: 1023px) {
  .navbar-burger {
    display: block;
  }
  
  .navbar-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--card-color);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 1rem;
  }
  
  .navbar-menu.is-active {
    display: block;
  }
  
  .navbar-end {
    display: flex;
    flex-direction: column;
  }
  
  .navbar-item {
    padding: 0.5rem 0;
  }
}

/* Hero Section */
.hero {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
}

.hero-body {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 100vh;
}

.hero-title, .hero .title, .hero .subtitle, .hero-description {
  color: var(--text-white) !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Vision Section */
.vision-section {
  background-color: var(--background-color);
}

.vision-content {
  text-align: center;
}

.vision-image {
  margin-bottom: 2rem;
  text-align: center;
}

.vision-image img {
  border-radius: var(--border-radius);
  max-width: 100%;
  box-shadow: var(--box-shadow);
  margin: 0 auto;
}

.vision-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.vision-stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-light);
}

/* About Section */
.about-section {
  background-color: var(--card-color);
}

.about-content {
  text-align: left;
}

.timeline-container {
  margin-top: 3rem;
}

.timeline {
  position: relative;
  margin-top: 2rem;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-marker {
  position: absolute;
  top: 0;
  left: -2rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: var(--primary-color);
  border: 2px solid var(--card-color);
  box-shadow: 0 0 0 4px var(--primary-light);
}

.timeline-content {
  padding-left: 1rem;
}

.timeline-content .heading {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

/* Services Section */
.services-section {
  background-color: var(--background-color);
}

.card {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  text-align: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  margin: 0 auto;
}

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

.card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

/* Features Section */
.features-section {
  background-color: var(--card-color);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  text-align: center;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 0 auto;
}

.feature-content {
  text-align: center;
  flex-grow: 1;
}

.progress-container {
  margin-top: 1.5rem;
}

.progress-container span {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.progress {
  height: 0.75rem;
  border-radius: 0.375rem;
  overflow: hidden;
}

.progress::-webkit-progress-bar {
  background-color: #e9ecef;
}

.progress::-webkit-progress-value {
  background-color: var(--primary-color);
}

.progress::-moz-progress-bar {
  background-color: var(--primary-color);
}

/* Products Section */
.products-section {
  background-color: var(--background-color);
}

.custom-slider-container {
  position: relative;
  overflow: hidden;
  margin: 2rem 0;
}

.custom-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  padding: 0 1rem;
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.prev-button, .next-button {
  background-color: var(--primary-color);
  color: var(--text-white);
  border: none;
  border-radius: var(--border-radius);
  padding: 0.5rem 1rem;
  margin: 0 0.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.prev-button:hover, .next-button:hover {
  background-color: var(--primary-dark);
}

/* Partners Section */
.partners-section {
  background-color: var(--card-color);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.partner-item {
  text-align: center;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.partner-item img {
  max-width: 150px;
  max-height: 80px;
  margin-bottom: 1rem;
}

.partner-item p {
  margin-bottom: 0;
  font-weight: 500;
}

.external-resources {
  margin-top: 4rem;
}

.resource-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  padding: 1.5rem;
}

.resource-item h4 {
  margin-bottom: 1rem;
}

.resource-item p {
  margin-bottom: 1.5rem;
}

/* Team Section */
.team-section {
  background-color: var(--background-color);
}

.team-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-card .card-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.team-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0 auto;
}

.team-card .subtitle {
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* Events Section */
.events-section {
  background-color: var(--card-color);
}

.event-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  height: 100%;
}

.event-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  text-align: center;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  margin: 0 auto;
}

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

.event-content {
  padding: 1.5rem;
  flex-grow: 1;
}

.event-date {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
  background-color: var(--background-color);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 1.5rem;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 0.5rem 0;
}

.faq-question h3 {
  margin-bottom: 0;
}

.faq-question .icon {
  transition: var(--transition);
}

.faq-item.is-active .faq-question .icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.is-active .faq-answer {
  max-height: 500px;
  margin-top: 1rem;
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--card-color);
}

.testimonial-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-rating {
  margin-bottom: 1rem;
}

.star {
  color: var(--warning-color);
  font-size: 1.25rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  text-align: center;
}

.testimonial-author {
  display: flex;
  align-items: center;
  text-align: left;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.author-company {
  color: var(--text-light);
  font-size: 0.875rem;
}

/* Press Section */
.press-section {
  background-color: var(--background-color);
}

.press-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  height: 100%;
}

.press-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  text-align: center;
}

.press-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  margin: 0 auto;
}

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

.press-content {
  padding: 1.5rem;
  flex-grow: 1;
}

.press-source {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1rem;
}

/* Insights Section */
.insights-section {
  background-color: var(--card-color);
}

.insight-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.insight-card .card-image {
  width: 100%;
  height: 200px;
}

.insight-card .card-content {
  text-align: center;
}

/* Contact Section */
.contact-section {
  background-color: var(--background-color);
}

.contact-container {
  display: flex;
  flex-direction: column;
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.contact-info ul li {
  margin-bottom: 0.75rem;
}

.contact-map {
  width: 100%;
  height: 300px;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-top: 1.5rem;
  text-align: center;
}

.contact-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0 auto;
}

.contact-form {
  width: 100%;
}

.contact-form .field {
  margin-bottom: 1.5rem;
}

.contact-form .label {
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  background-color: var(--secondary-dark);
  color: var(--text-white);
  padding: 4rem 0 2rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
  text-align: center;
}

.footer-logo img {
  max-width: 150px;
  margin: 0 auto;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.footer-title {
  color: var(--text-white);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--text-white);
}

.footer-social {
  list-style: none;
  padding: 0;
}

.footer-social li {
  margin-bottom: 0.75rem;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.footer-social a:hover {
  color: var(--text-white);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
}

.back-to-top {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.back-to-top:hover {
  color: var(--text-white);
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.success-content {
  text-align: center;
  max-width: 600px;
}

.success-icon {
  font-size: 5rem;
  color: var(--success-color);
  margin-bottom: 2rem;
}

.success-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.success-message {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.return-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: var(--text-white);
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: var(--transition);
}

.return-button:hover {
  background-color: var(--primary-dark);
  color: var(--text-white);
}

/* Privacy and Terms Pages */
.privacy-page, .terms-page {
  padding-top: 100px;
  min-height: 100vh;
}

.privacy-content, .terms-content {
  background-color: var(--card-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  margin-bottom: 2rem;
}

.privacy-content h2, .terms-content h2 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
}

/* Cookie Consent */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 1.5rem;
  z-index: 9999;
  display: none;
}

#cookie-consent p {
  color: white;
  margin-bottom: 0;
}

#accept-cookies {
  background-color: var(--success-color);
  color: white;
  border: none;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: var(--transition);
}

#accept-cookies:hover {
  background-color: #3aa15c;
}

/* Utility Classes */
.has-text-centered {
  text-align: center;
}

.has-text-right {
  text-align: right;
}

.mt-6 {
  margin-top: 3rem;
}

.mb-6 {
  margin-bottom: 3rem;
}

/* Media Queries */
@media screen and (max-width: 768px) {
  .section {
    padding: 4rem 1rem;
  }

  .hero-body {
    min-height: 80vh;
  }

  .vision-stats {
    flex-direction: column;
  }

  .stat-item {
    margin-bottom: 2rem;
  }

  .partners-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .contact-container .columns {
    flex-direction: column;
  }

  .footer .column {
    margin-bottom: 2rem;
  }

  .navbar-brand {
    width: 100%;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  .section {
    padding: 4.5rem 1.5rem;
  }

  .partners-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

/* Animation Effects */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

.floating {
  animation: float 6s ease-in-out infinite;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 1s ease-out forwards;
}

/* Particle Animation for Hero */
.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: particleAnimation 15s infinite linear;
}

@keyframes particleAnimation {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-1000px) translateX(100px);
    opacity: 0;
  }
}

/* Read More Links */
.read-more {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 500;
  margin-top: 1rem;
  transition: var(--transition);
}

.read-more:after {
  content: '→';
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.read-more:hover {
  color: var(--primary-dark);
}

.read-more:hover:after {
  transform: translateX(5px);
}

/* Social Media Links in Footer */
.footer-social a {
  position: relative;
  padding-left: 1.5rem;
}

.footer-social a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-social a[href*="facebook"]:before {
  background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M12 2C6.477 2 2 6.477 2 12c0 4.991 3.657 9.128 8.438 9.879V14.89h-2.54V12h2.54V9.797c0-2.506 1.492-3.89 3.777-3.89 1.094 0 2.238.195 2.238.195v2.46h-1.26c-1.243 0-1.63.771-1.63 1.562V12h2.773l-.443 2.89h-2.33v6.989C18.343 21.129 22 16.99 22 12c0-5.523-4.477-10-10-10z"/></svg>');
}

.footer-social a[href*="twitter"]:before {
  background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M23.954 4.569a10 10 0 01-2.825.775 4.958 4.958 0 002.163-2.723 9.99 9.99 0 01-3.127 1.195A4.92 4.92 0 0016.435 2a4.926 4.926 0 00-4.926 4.926c0 .386.043.76.126 1.12A13.978 13.978 0 011.67 3.148a4.93 4.93 0 001.524 6.572A4.903 4.903 0 011 9.13v.063a4.926 4.926 0 003.95 4.827 4.93 4.93 0 01-2.224.084 4.935 4.935 0 004.6 3.42A9.88 9.88 0 010 19.54a13.94 13.94 0 007.548 2.212c9.057 0 14.01-7.503 14.01-14.01 0-.213-.005-.425-.014-.636A10.017 10.017 0 0024 4.59l-.046-.02z"/></svg>');
}

.footer-social a[href*="instagram"]:before {
  background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M12 2c2.717 0 3.056.01 4.122.06 1.065.05 1.79.217 2.428.465.66.254 1.216.598 1.772 1.153.509.5.902 1.105 1.153 1.772.247.637.415 1.363.465 2.428.047 1.066.06 1.405.06 4.122 0 2.717-.01 3.056-.06 4.122-.05 1.065-.218 1.79-.465 2.428a4.883 4.883 0 01-1.153 1.772c-.5.508-1.105.902-1.772 1.153-.637.247-1.363.415-2.428.465-1.066.047-1.405.06-4.122.06-2.717 0-3.056-.01-4.122-.06-1.065-.05-1.79-.218-2.428-.465a4.89 4.89 0 01-1.772-1.153 4.904 4.904 0 01-1.153-1.772c-.247-.637-.415-1.363-.465-2.428C2.013 15.056 2 14.717 2 12c0-2.717.01-3.056.06-4.122.05-1.066.218-1.79.465-2.428a4.88 4.88 0 011.153-1.772A4.897 4.897 0 015.45 2.525c.638-.247 1.362-.415 2.428-.465C8.944 2.013 9.283 2 12 2zm0 1.802c-2.67 0-2.986.01-4.04.059-.976.045-1.505.207-1.858.344-.466.182-.8.398-1.15.748-.35.35-.566.683-.748 1.15-.137.353-.3.882-.344 1.857-.047 1.055-.059 1.37-.059 4.04 0 2.67.01 2.986.059 4.04.045.976.207 1.505.344 1.858.182.466.399.8.748 1.15.35.35.683.566 1.15.748.353.137.882.3 1.857.344 1.054.046 1.37.058 4.04.058 2.67 0 2.987-.01 4.04-.058.976-.045 1.505-.207 1.858-.344.466-.182.8-.398 1.15-.748.35-.35.566-.683.748-1.15.137-.353.3-.882.344-1.857.047-1.055.059-1.37.059-4.04 0-2.67-.01-2.986-.059-4.04-.045-.976-.207-1.505-.344-1.858a3.097 3.097 0 00-.748-1.15 3.098 3.098 0 00-1.15-.748c-.353-.137-.882-.3-1.857-.344-1.055-.047-1.37-.059-4.04-.059zm0 3.064A5.139 5.139 0 0117.135 12 5.139 5.139 0 0112 17.135 5.139 5.139 0 016.865 12 5.139 5.139 0 0112 6.865zm0 8.468A3.333 3.333 0 018.667 12 3.333 3.333 0 0112 8.667 3.333 3.333 0 0115.333 12 3.333 3.333 0 0112 15.333zm5.338-9.87a1.2 1.2 0 100 2.4 1.2 1.2 0 000-2.4z"/></svg>');
}

.footer-social a[href*="linkedin"]:before {
  background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433a2.062 2.062 0 01-2.063-2.065 2.064 2.064 0 112.063 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.454C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.225 0z"/></svg>');
}

.footer-social a:hover:before {
  opacity: 1;
}