@charset "UTF-8";

:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Quicksand",  sans-serif;
  --nav-font: "Open Sans",  sans-serif;
}

html {
  scroll-behavior: smooth;
}

:root { 
  --white: #FFFFFF;
  --black: #1C1C1C;
  --background-color: #FAF9F8; 
  --background2-color: #f7f5f0;     
  --text-color: #1C1C1C;        
  --muted-text-color: #6E6E6E; 
  --accent-color: #6C63FF;
  --surface-color: #ccc6db;          
  --nav-background-color: #e0ded9;
  --footer-background-color: #e0ded9;

  color-scheme: light;
}

html[data-theme="dark"] {
  --white: #FFFFFF;
  --black: #000000;
  --background-color: #1A1A1A;     
  --background2-color: #1d1d1d;   
  --text-color: #FFFFFF;          
  --muted-text-color: #bebebe;       
  --accent-color: #7DB9FF;       
  --surface-color: #6F5D90; 
  --nav-background-color: #4B3A65;   
  --footer-background-color: #4B3A65;

  color-scheme: dark;
}

.light-background {
  --background-color: #f7faff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #065cc2;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ce1a64;
  --surface-color: #2973cc;
  --contrast-color: #ffffff;
}

:root {
  scroll-behavior: smooth;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}

body.loaded {
  opacity: 1;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-color);
  font-family: var(--heading-font);
}

html, body {
  margin: 0;
  padding: 0;
}

html, body, main, header, footer, .navmenu, .hero-content, .section {
  transition:
    background-color 0.6s ease,
    color 0.6s ease,
    border-color 0.6s ease,
    box-shadow 0.6s ease;
}

#preloader {
  position: fixed;
  inset: 0;
  background: var(--background-color);
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  z-index: 2147483000 !important;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.cube {
  position: relative;
  width: 350px;
  height: 350px;
  transform-style: preserve-3d;
  animation: spin 2s linear infinite;
}

.face {
  position: absolute;
  width: 350px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-color);
  backface-visibility: hidden;
}

.face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.front { transform: translateZ(175px); }
.back  { transform: rotateY(180deg) translateZ(175px); }
.right { transform: rotateY(90deg) translateZ(175px); }
.left  { transform: rotateY(-90deg) translateZ(175px); }

@keyframes spin {
  0%   { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}

main, header {
  opacity: 0;
  transform: translateY(20px);
}

body.loaded main,
body.loaded header {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s ease, transform 1s ease;
}

body.no-scroll {
  overflow: hidden;
  height: 100vh; 
}

body {
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}

body.loaded {
  opacity: 1;
}

@media (max-width: 768px) {

  .cube {
    width: 150px;
    height: 150px;
  }

  .face {
    width: 150px;
    height: 150px;
  }

  .front { transform: translateZ(75px); }
  .back  { transform: rotateY(180deg) translateZ(75px); }
  .right { transform: rotateY(90deg) translateZ(75px); }
  .left  { transform: rotateY(-90deg) translateZ(75px); }
}

.header {
  color: var(--text-color);
  background-color: var(--nav-background-color);
  transition: all 0.5s;
  transition: padding 0.25s ease, background-color 0.25s ease;
  z-index: 997;
}

#header {
  transition: padding 0.25s ease, background-color 0.25s ease;
  padding: 8px 0;
  background-color: var(--nav-background-color);
}

#header.nav-shrink {
  padding: 0px 0;
  background: color-mix(in srgb, var(--nav-background-color));
  backdrop-filter: blur(10px) saturate(160%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

#header.nav-shrink:hover {
  padding: 8px 0;
  background-color: var(--nav-background-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.header .logo {
  position: relative;
  display: flex;
  align-items: center;
  height: 0; 
  right: -10px;
  margin-right: 0px;
}

.header .logo img {
  height: 60px;
  width: auto;
  display: block;
  position: relative;
  transition: transform 0.25s ease;
}

.header .logo img:hover {
  transform: scale(1.2);
}

.header .container {
  min-height: auto;
  padding: 2px 0;
}

.navmenu {
  padding: 0;
}

.navmenu ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navmenu li {
  position: relative;
}

.navmenu a,
.navmenu a:focus {
  color: var(--text-color);
  padding: 18px 15px;
  font-size: 16px;
  font-family: var(--nav-font);
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  transition: 0.3s;
}

.navmenu a i,
.navmenu a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
  transition: 0.3s;
}

.navmenu li:last-child a {
  padding-right: 0;
}

.navmenu li:hover>a,
.navmenu .active,
.navmenu .active:focus {
  color: var(--accent-color);
}

.navmenu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  will-change: transform;
  }

.navmenu a::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  height: 3px;
  border-radius: 3px;
  width: 0;
  background: linear-gradient(
  90deg,
  #FFFFFF,
  var(--accent-color),
  #FFFFFF
);
  background-size: 250% 100%;
  background-position: 0% 50%;
  transform: translateX(-50%);
  transition:
  width 0.6s ease,
  background-position 0.6s ease;
  opacity: 1;
}

.navmenu a:hover::after,
.navmenu .active::after {
  width: calc(100% - 30px);
  max-width: 60px;
  animation: underlineFlow 1.2s linear infinite;
}

.navmenu li:last-child a::after {
  left: 58%;
  transform: translateX(-50%);
}

@keyframes underlineFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

[data-scroll-container] {
  overflow: hidden;
}

.theme-switch {
  position: relative;
  width: 70px;
  height: 25px;
  border: none;
  border-radius: 50px;
  overflow: hidden;
  cursor: pointer;
  outline: none;
  background-color: var(--accent-color);
  transition: background 0.8s ease, box-shadow 0.8s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  transform: translateX(-12px);
}

.switch-bg {
  position: absolute;
  inset: 0;
  transition: background 0.8s ease;
}

.sun,
.moon {
  position: absolute;
  top: 50%;
  left: 75%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transition: all 0.8s ease;
}

.sun {
  background: radial-gradient(circle, #ffb347 20%, #ffcc33 90%);
  box-shadow: 0 0 20px #ffb347;
  opacity: 0;
}

.moon {
  background: #dcdcdc;
  box-shadow: inset -6px 0 0 #bbb;
  opacity: 1;
}

html[data-theme="light"] .theme-switch {
  background-color: var(--accent-color);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

html[data-theme="light"] .sun {
  left: 25%;
  opacity: 1;
}

html[data-theme="light"] .moon {
  left: 25%;
  opacity: 0;
}

@media (max-width: 768px) {

  #header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px !important;
    background: var(--nav-background-color) !important;
    z-index: 999999 !important; 
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 8px 20px;
  }

  .header .navmenu {
    order: 3;
  }

  .logo img {
    transition: none !important;
    transform: none !important;
  }

  .logo img:active,
  .logo img:focus {
    transform: none !important;
    scale: 1 !important;
  }

  .header #logo {
    position: absolute;
    left: 0;
  }

  body.scrolled #header {
    height: 70px;
  }

  #theme-toggle {
    position: fixed;
    left: 75%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999; 
    display: inline-block;
    margin: 0;         
  }

  #navmenu ul {
    display: none;
  }

  #navmenu ul li a {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  #navmenu ul li a::after {
    display: none;
  }

  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  body.mobile-nav-active {
    overflow: hidden;
  }

  body.mobile-nav-active #navmenu ul {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 60px; 
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background: var(--nav-background-color);
    z-index: 100000; 
    padding: 0;
    margin: 0;
    list-style: none;
    backdrop-filter: blur(8px); 
  }

  body.mobile-nav-active #theme-toggle {
    display: none !important;
  }

  body.mobile-nav-active #logo {
    display: none !important;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

}

@media (min-width: 768px) and (max-width: 1024px) {

    #header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px !important;
    background: var(--nav-background-color) !important;
    z-index: 999999 !important; 
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 8px 20px;
  }

  .header .navmenu {
    order: 3;
  }

  .logo img {
    transition: none !important;
    transform: none !important;
  }
  .logo img:active,
  .logo img:focus {
    transform: none !important;
    scale: 1 !important;
  }

  .header #logo {
    margin-left: -25px;
  }

  body.scrolled #header {
    height: 70px;
  }

  #theme-toggle {
    position: fixed;
    left: 80%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    display: inline-block;
    margin: 0;       
  }

  #navmenu ul {
    display: none;
  }

  #navmenu ul li {
    transform: translateY(-50px);
    margin: -3px 0;
  }

  #navmenu ul li a {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  #navmenu ul li a::after {
    display: none;
  }

  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  body.mobile-nav-active #navmenu ul {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 60px; 
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background: var(--nav-background-color);
    z-index: 100000; 
    padding: 0;
    margin: 0;
    list-style: none;
    backdrop-filter: blur(8px); 
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  body.mobile-nav-active {
    overflow: hidden;
  }
}

section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 40px 0;
  overflow: clip;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
  margin-top: 10px;
  position: relative;
}

.section-title .subtitle {
  display: inline-block;
  font-size: 2rem;
  color: var(--text-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title .subtitle::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--text-color);
}

.section-title p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--muted-text-color);
  max-width: 900px;
  margin: 0 auto;
  text-wrap: balance;
}

@media (max-width: 768px) {

  .section-title {
    text-align: center;
    padding-bottom: 30px;
    margin-top: -10px;
    position: relative;
  }

  .section-title .subtitle {
    display: inline-block;
    font-size: 2rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    position: relative;
  }

  .section-title .subtitle::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--text-color);
  }

  .section-title p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--muted-text-color);
    max-width: 900px;
    margin: 0 auto;
    text-wrap: balance;
  }

}

.hero {
  position: relative;
  width: 100%;
  height: 100vh; 
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;  
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7); 
  z-index: 2; 
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero .content-wrapper {
  max-width: 600px;
}

.hero .hero-title {
  font-size: 3.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero h1 {
    color: var(--white);
}

.hero .lead {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--white), transparent 40%);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.hero .hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.hero .hero-stats .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero .hero-stats .stat-item .purecounter {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.hero .hero-stats .stat-item .stat-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 0.25rem;
}

.hero .hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero .hero-actions .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
}

.hero .hero-actions .btn.btn-primary {
  background-color: var(--surface-color);
  color: var(--white);
  border: 2px solid var(--surface-color);
  transform: translateY(-3px);
  transition: all 0.3s ease;
}

.hero .hero-actions .btn.btn-primary:hover {
  transform: translateY(-8px);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--white);
}

.hero .hero-actions .btn.btn-outline {
  background-color: var(--surface-color);
  color: var(--white);
  border: 2px solid var(--surface-color);
  transform: translateY(-3px);
  transition: all 0.3s ease;
}

.hero .hero-actions .btn.btn-outline:hover {
  transform: translateY(-8px);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--white);
}

.hero .social-links {
  display: flex;
  gap: 1rem;
}

.hero .social-links a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--surface-color);
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero .social-links a:hover {
  transform: translateY(-8px);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--white);
}

.hero .social-links a img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  pointer-events: none;
}

.hero .hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 30px;
}

.hero .image-container {
  position: relative;
  max-width: 500px;
  width: 100%;
  left: 120px;
}

.hero .hero-main-image {
  border-radius: 250px;
  position: relative;
  z-index: 2;
}

.hero .image-overlay {
  position: absolute;
  top: 20px;
  left: 15px;
  right: -20px;
  bottom: -20px;
  background: color-mix(in srgb, var(--surface-color), transparent 60%);
  border-radius: 250px;
  z-index: 1;
}

.hero .floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}

.hero .hero-image .floating-elements .floating-card {
  position: absolute;
  background: var(--surface-color);
  padding: 15px 15px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  animation: float 3s ease-in-out infinite;
}

.hero .hero-image .floating-elements .floating-card i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .hero-image .floating-elements .floating-card.bootstrap i {
  font-size: 1.5rem;
  color: var(--accent-color);
  transform: translateY(3px);
}

.hero .hero-image .floating-elements .floating-card.html {
  top: 10%;
  right: 0%;
  animation-delay: 0s;
}

.hero .hero-image .floating-elements .floating-card.bootstrap {
  bottom: 20%;
  left: -5%;
  animation-delay: 0.5s;
}

.hero .hero-image .floating-elements .floating-card.js {
  top: 50%;
  right: -15%;
  animation-delay: 1s;
}

.hero .hero-image .floating-elements .floating-card.css {
  top: 20%;
  right: 80%;
  animation-delay: 1.5s;
}

.hero .hero-image .floating-elements .floating-card.react {
  top: 85%;
  right: 0%;
  animation-delay: 2s;
}

.hero .hero-image .floating-elements .floating-card img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  pointer-events: none;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

.scroll-down-indicator {
  position: absolute;
  bottom: 110px;
  left: 50%;
  text-align: center;
  font-size: 15px;
  color: var(--white);
  opacity: 0.8;
  animation: floatText 3s ease-in-out infinite; 
  cursor: default;
  transition: opacity 0.6s ease, transform 0.6s ease;
  z-index: 10;
}

.scroll-down-indicator span {
  display: block;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.scroll-down-indicator .arrow {
  width: 16px;
  height: 16px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
  margin: 0 auto;
  animation: none; 
}

.scroll-hidden {
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
}

@keyframes floatText {
  0%, 100% {
    transform: translate(-50%, -50px);
  }
  50% {
    transform: translate(-50%, -10px);
  }
}

@media (max-width: 768px) {

  #hero {
    position: relative;
    height: auto;
    padding: 100px 20px 80px;
    text-align: center;
    background: var(--surface-color);
    overflow: hidden;
  }

  #hero .hero-video {
    display: none !important;
  }

  #hero {
    background: url("/assets/img/HERO/BACKGROUND.jpg") center center / cover no-repeat;
  }

  #hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #hero .hero-content {
    width: 100%;
    order: 1;
  }

  #hero .hero-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    margin-top: -20px;
    text-align: center;
  }

  #hero .lead {
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 25px;
    text-align: center;
  }

  #hero .hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
  }

  #hero .hero-actions .btn {
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 25px;
  }

  #hero .social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
  }

  #hero .social-links a {
    font-size: 1.1rem;
  }

  #hero .social-links a:hover{
    background-color: var(--accent-color);
    color: var(--text-color);
  }

  #hero .hero-image {
    width: 100%;
    order: 2;
    display: flex;
    justify-content: center;
    position: relative;
  }

  #hero .hero-image .image-container {
    width: 80%;
    max-width: 300px;
    position: relative;
    transform: translateX(-125px);
    margin-top: -20px;
  }

  #hero .hero-image img {
    width: 100%;
    border-radius: 200px;
    display: block;
    position: relative;
    z-index: 2;
  }

  #hero .hero-image .image-overlay {
    content: "";
    position: absolute;
    top: 10px;
    width: 100%;
    height: 100%;
    background: var(--surface-color);
    border-radius: 200px;
    z-index: 1;
  }

  #hero .scroll-down-indicator {
    display: none !important;
  }

  #hero .hero-image .floating-elements .floating-card {
    transform-origin: center; 
    padding: 5px 10px;      
    gap: 6px;          
    font-size: 0.75rem;   
  }

  #hero .hero-image .floating-elements .floating-card i {
    font-size: 1.1rem; 
  }

  #hero .hero-image .floating-elements .floating-card.bootstrap {
    left: -25%; 
    padding: 3px 10px; 
  }

  #hero .hero-image .floating-elements .floating-card.js {
    right: -30%; 
  }

  #hero .hero-image .floating-elements .floating-card img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    pointer-events: none;
  }

}

@media (min-width: 768px) and (max-width: 1024px) {
  
  #hero {
    position: relative;
    height: auto;
    padding: 100px 20px 80px;
    text-align: center;
    background: var(--surface-color);
    overflow: hidden;
  }

  #hero {
    background: url("/assets/img/HERO/BACKGROUND.jpg") center center / cover no-repeat;
  }

  #hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #hero .hero-content {
    width: 100%;
    order: 1;
    transform: translateX(55px);
  }

  #hero .hero-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    margin-top: -20px;
    text-align: center;
  }

  #hero .lead {
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 25px;
    text-align: center;
  }

  #hero .hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
  }

  #hero .hero-actions .btn {
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 25px;
  }
  
  #hero .social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
  }

  #hero .social-links a {
    font-size: 1.1rem;
  }

  #hero .social-links a:hover{
    background-color: var(--accent-color);
    color: var(--text-color);
  }

  #hero .hero-image {
    width: 100%;
    order: 2;
    display: flex;
    justify-content: center;
    position: relative;
  }

  #hero .hero-image .image-container {
    width: 80%;
    max-width: 300px;
    position: relative;
    transform: translateX(-110px);
    margin-top: -20px;
  }

  #hero .hero-image img {
    width: 100%;
    border-radius: 200px;
    display: block;
    position: relative;
    z-index: 2;
  }

  #hero .hero-image .image-overlay {
    content: "";
    position: absolute;
    top: 10px;
    width: 100%;
    height: 100%;
    background: var(--surface-color);
    border-radius: 200px;
    z-index: 1;
  }

  #hero .scroll-down-indicator {
    display: none !important;
  }

  #hero .hero-image .floating-elements .floating-card {
    transform-origin: center; 
    padding: 5px 10px;    
    gap: 6px;         
    font-size: 0.75rem;     
  }

  #hero .hero-image .floating-elements .floating-card i {
    font-size: 1.1rem; 
  }

  #hero .hero-image .floating-elements .floating-card.bootstrap {
    left: -20%;
    padding: 3px 10px; 
  }

  #hero .hero-image .floating-elements .floating-card.js {
    right: -30%;
  }

  #hero .hero-image .floating-elements .floating-card img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    pointer-events: none;
  }

}

#about.section {
  padding-bottom: 4px; 
  margin-bottom: 0;    
}

.about .profile-image-wrapper {
  position: relative;
}

.about .profile-image-wrapper .profile-image {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto 40px;
  border-radius: 20%;
  overflow: hidden;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
  left: 60px;
  transition: all 0.5s ease;
}

.about .profile-image-wrapper .profile-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.about .profile-image-wrapper .profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .about-content .intro {
  margin-bottom: 40px;
}

.about .about-content .intro h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.about .about-content .intro p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted-text-color);
}

.about .about-content .about-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 50px;
}

.about .about-content .about-actions .btn-primary,
.about .about-content .about-actions .btn-secondary {
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  transition: all 0.5s ease;
  border: 2px solid transparent;
}

.about .about-content .about-actions .btn-primary {
  background-color: var(--surface-color);
  color: var(--text-color);
}

.about .about-content .about-actions .btn-primary:hover {
  background-color: var(--accent-color);
  color: var(--text-color);
  transform: translateY(-8px) !important;
}

.about .about-content .about-actions .btn-secondary {
  background-color: transparent;
  color: var(--text-color);
  border-color: var(--text-color);
}

.about .about-content .about-actions .btn-secondary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  border-color: var(--accent-color);
  color: var(--text-color);
  transform: translateY(-8px);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {

  #about {
    text-align: center;
    padding: 30px 10px 50px;
  }

  #about .section-title span {
    font-size: 1.5rem;
  }

  #about .section-title p {
    font-size: 1rem;
    margin-bottom: -20px;
  }

  #about .about-content .intro h2 {
    font-size: 1.5rem;
  }

  #about .about-content .intro p {
    font-size: 1rem;
  }

  #about .about-actions {
    display: none;
  }

  #about .profile-image-wrapper .profile-image {
    height: 200px;
    width: 200px;
    margin-top: -10px;
    transform: translateX(-60px);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {

  #about {
    text-align: center;
    padding: 30px 10px 50px;
  }

  #about .section-title span {
    font-size: 1.5rem;
  }

  #about .section-title p {
    font-size: 1rem;
    margin-bottom: -20px;
  }

  #about .about-content .intro h2 {
    font-size: 1.5rem;
  }

  #about .about-content .intro p {
    font-size: 1rem;
  }

  #about .about-actions {
    display: none;
  }

  #about .profile-image-wrapper .profile-image {
    height: 200px;
    width: 200px;
    margin-top: -10px;
    transform: translateX(-60px);
  }
}

.skills {
  background-color: var(--background2-color);
}

.skills .skills-features .skills-item {
  text-align: center;
  padding: 2rem 1rem;
  transition: all 0.5s ease;
  border-radius: 20px;
}

.skills .skills-features .skills-item:hover {
  transform: translateY(-5px);
  background-color: var(--surface-color);
}

.skills .skills-features .skills-item .icon {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.5s ease;
}

.skills .skills-features .skills-item .icon img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  pointer-events: none;
  animation: skills-float 2.5s ease-in-out infinite;
  margin-top: -10px;
}

.skills .skills-features .skills-item:hover .icon {
  background: color-mix(in srgb, var(--accent-color), transparent 30%);
  transform: scale(1.1);
}

.skills .skills-features .skills-item h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.skills .skills-features .skills-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted-text-color);
  margin: 0;
}

.skills .skills-features .skills-item:hover .icon i {
  color: var(--contrast-color);
}

@keyframes skills-float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(6px);
  }
}

@media (max-width: 768px) {

  #skills {
    text-align: center;
  }

  #skills .section-title span {
    font-size: 1.5rem;
  }

  #skills .section-title p {
    font-size: 1rem;
    margin-bottom: -30px;
  }

  #skills .skills-features .skills-item {
    margin-bottom: -20px;
  }

  #skills .skills-features .skills-item h4 {
    font-size: 1.1rem;
  }

  #skills .skills-features .skills-item p {
    font-size: 0.8rem;
  }

  #skills .skills-item:hover {
    background-color: var(--background2-color);
  }

}

.projects {
  background-color: var(--background-color);
}

.projects .project-card {
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  height: 100%;
}

.projects .project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.projects .project-card .project-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.projects .project-card .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.projects .project-card .project-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%) 0%, color-mix(in srgb, var(--heading-color), transparent 85%) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.projects .project-card:hover .project-image::after {
  opacity: 1;
}

.projects .project-card .project-content {
  padding: 30px;
  padding-bottom: 10px;
}

.projects .project-card .project-content h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: var(--text-color);
}

.projects .project-card .project-content p {
  color: var(--muted-text-color);
  line-height: 1.6;
  margin-bottom: 20px;
}

@media (max-width: 768px) {

  #projects .section-title span {
    font-size: 1.5rem;
  }

  #projects .section-title p {
    font-size: 1rem;
  }

  #projects .project-card .project-image {
    height: 120px;
  }

  #projects .project-card .project-content {
    padding: 10px;
    margin-bottom: -20px;
  }

  #projects .project-card .project-content h3 {
    font-size: 0.9rem;
    text-align: center;
  }

  #projects .project-card .project-content p {
    font-size: 0.7rem;
    text-align: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {

  #projects .section-title span {
    font-size: 1.5rem;
  }

  #projects .section-title p {
    font-size: 1rem;
  }

  #projects .project-card .project-image {
    height: 120px;
  }

  #projects .project-card .project-content {
    padding: 10px;
    margin-bottom: -20px;
  }

  #projects .project-card .project-content h3 {
    font-size: 0.9rem;
    text-align: center;
  }

  #projects .project-card .project-content p {
    font-size: 0.8rem;
    text-align: center;
  }
}

.testimonials {
  padding: 80px 0;
  position: relative;
  margin-bottom: 10px;
}

.testimonials .section-title {
  margin-top: -30px;
  margin-bottom: 5px;
}

.testimonials:before {
  content: "";
  background-color: var(--background2-color);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.testimonials .container {
  position: relative;
  z-index: 3;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 120px;    
  height: 120px;     
  object-fit: cover;  
  border-radius: 50%; 
  margin: 0 auto;
  display: block;    
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--text-color);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: var(--muted-text-color);
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
  color: var(--accent-color);
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
  color: var(--accent-color);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: var(--muted-text-color);
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--accent-color);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--text-color);
  opacity: 1;
}

@media (max-width: 768px) {

  #testimonials .section-title span {
    font-size: 1.5rem;
    margin-top: -50px;
  }

  #testimonials .section-title p {
    font-size: 1rem;
    margin-bottom: -10px;
  }

  #testimonials .swiper-wrapper .swiper-slide img {
    width: 90px;
    height: 90px;
  }

  #testimonials .swiper-wrapper .swiper-slide h3 {
    font-size: 1rem;
  }

  #testimonials .swiper-wrapper .swiper-slide h4 {
    font-size: 0.9rem;
  }

  #testimonials .swiper-wrapper .swiper-slide p {
    font-size: 0.8rem;
  }

  #testimonials .swiper-wrapper .swiper-slide i {
    font-size: 0.8rem;
    transform: translateY(-5px);
  }

  #testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    opacity: 0.5;
  }

  #testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--text-color);
    opacity: 1;
  }

  #testimonials .swiper {
    margin-bottom: -40px;
  }

} 

@media (min-width: 769px) and (max-width: 1024px) {

  #testimonials .section-title span {
    font-size: 1.5rem;
    margin-top: -50px;
  }

  #testimonials .section-title p {
    font-size: 1rem;
    margin-bottom: -10px;
  }

  #testimonials .swiper-wrapper .swiper-slide img {
    width: 90px;
    height: 90px;
  }

  #testimonials .swiper-wrapper .swiper-slide h3 {
    font-size: 1rem;
  }

  #testimonials .swiper-wrapper .swiper-slide h4 {
    font-size: 0.9rem;
  }

  #testimonials .swiper-wrapper .swiper-slide p {
    font-size: 0.8rem;
  }

  #testimonials .swiper-wrapper .swiper-slide i {
    font-size: 0.8rem;
    transform: translateY(-5px);
  }

  #testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    opacity: 0.5;
  }

  #testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--text-color);
    opacity: 1;
  }

  #testimonials .swiper {
    margin-bottom: -40px;
  }

}

.contact .contact-sidebar {
  background-color: var(--surface-color);
  height: 100%;
  padding: 50px 40px;
  border-radius: 1rem;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.contact .contact-sidebar .contact-header {
  margin-bottom: 60px;
}

.contact .contact-sidebar .contact-header h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--text-color);
  letter-spacing: -0.3px;
}

.contact .contact-sidebar .contact-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.contact .contact-sidebar .contact-method:last-child {
  margin-bottom: 0;
}

.contact .contact-sidebar .contact-method .contact-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
}

.contact .contact-sidebar .contact-method .contact-icon i {
  font-size: 20px;
  animation: float 2.5s ease-in-out infinite;
}

.contact .contact-sidebar .contact-method .contact-details {
  flex: 1;
}

.contact .contact-sidebar .contact-method .contact-details .method-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-color);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.contact .contact-sidebar .contact-method .contact-details p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 0;
}

.contact .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
  color: var(--text-color);
}

.contact .contact-form h3 {
  color: var(--text-color);
  font-size: 2rem;
  margin-bottom: 2rem;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border: 1.5px solid color-mix(in srgb, var(--surface-color), transparent 85%);
  background: color-mix(in srgb, var(--surface-color), black 15%);
  border-radius: 0.6rem;
  color: var(--text-color);
  transition: all 0.25s ease;
  font-size: 0.95rem;
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus,
.contact .contact-form .form-control:hover,
.contact .contact-form .form-select:hover {
  border-color: var(--accent-color);
  outline: none;
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
  color: var(--muted-text-color);
  transition: color 0.25s ease;
  font-style: italic;
}

.contact .contact-form .btn {
  background: color-mix(in srgb, var(--surface-color), black 15%);
  color: var(--text-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.contact .contact-form .btn i {
  font-size: 1.25rem;
}

.contact .contact-form .btn:hover {
  background-color: var(--accent-color);
  transform: scale(1.05);
}

@media (max-width: 768px) {

  #contact {
    padding: 30px 10px 50px;
    text-align: center;
  }

  #contact .section-title span {
    font-size: 1.5rem;
  }

  #contact .section-title p {
    font-size: 1rem;
  }

  #contact .contact-sidebar {
    padding: 20px 20px 0px;
  }

  #contact .contact-method {
    margin-bottom: 25px;
  }

  #contact .contact-method i {
    font-size: 1.2rem;
  }

  #contact .contact-sidebar h3 {
    font-size: 1.5rem;
    margin-bottom: -20px;
  }

  #contact .contact-sidebar span {
    font-size: 0.7rem;
  }

  #contact .contact-sidebar p {
    font-size: 0.8rem;
  }

  #contact .contact-form {
    background: var(--surface-color);
    border-radius: 12px;
    padding: 18px 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  }

  #contact .contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  #contact .contact-form input,
  #contact .contact-form textarea {
    text-align: center;
    font-size: 0.8rem;
    padding: 10px;
  }

  #contact .contact-form button.btn {
    background: var(--accent-color);
    color: var(--text-color);
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    margin-top: -35px;
    transition: all 0.3s ease;
  }

  #contact .contact-form .loading {
    margin-bottom: 20px;
    font-size: 0.8rem;
  }

  #contact .contact-form .error-message {
    margin-bottom: 20px;
    font-size: 0.8rem;
  }

  #contact .contact-form .sent-message {
    margin-bottom: 20px;
    font-size: 0.8rem;
  }

  #contact .contact-form .btn {
    font-size: 0.9rem;
  }

}

@media (min-width: 769px) and (max-width: 1024px) {

  #contact {
    padding: 30px 10px 50px;
    text-align: center;
  }

  #contact .section-title span {
    font-size: 1.5rem;
  }

  #contact .section-title p {
    font-size: 1rem;
  }

  #contact .contact-sidebar {
    padding: 20px 20px 0px;
  }

  #contact .contact-method {
    margin-bottom: 25px;
  }

  #contact .contact-method i {
    font-size: 1.2rem;
  }

  #contact .contact-sidebar h3 {
    font-size: 1.5rem;
    margin-bottom: -20px;
  }

  #contact .contact-sidebar span {
    font-size: 0.7rem;
  }

  #contact .contact-sidebar p {
    font-size: 0.8rem;
  }

  #contact .contact-form {
    background: var(--surface-color);
    border-radius: 12px;
    padding: 18px 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  }

  #contact .contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  #contact .contact-form input,
  #contact .contact-form textarea {
    text-align: center;
    font-size: 0.8rem;
    padding: 10px;
  }

  #contact .contact-form button.btn {
    background: var(--accent-color);
    color: var(--text-color);
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    margin-top: -35px;
    transition: all 0.3s ease;
  }

  #contact .contact-form .loading {
    margin-bottom: 20px;
    font-size: 0.8rem;
  }

  #contact .contact-form .error-message {
    margin-bottom: 20px;
    font-size: 0.8rem;
  }

  #contact .contact-form .sent-message {
    margin-bottom: 20px;
    font-size: 0.8rem;
  }

  #contact .contact-form .btn {
    font-size: 0.9rem;
  }

}

#floating-cta {
  position: fixed;
  right: 20px;
  bottom: 25px;
  z-index: 9999;
  background-color: var(--surface-color);
  color: var(--text-color);
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 80%);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: floatCTA 3s ease-in-out infinite;
  transition: all 0.3s ease;
}

#floating-cta:hover {
  background-color: var(--accent-color);
}

@media (max-width: 768px) {

  #floating-cta {
    padding: 10px;
  }

  #floating-cta:hover {
    background-color: var(--surface-color);
  }

  #floating-cta {
    font-size: 0.8rem;
  }

}

@media (min-width: 769px) and (max-width: 1024px) {

  #floating-cta {
    padding: 10px;
  }

  #floating-cta:hover {
    background-color: var(--surface-color);
  }

  #floating-cta {
    font-size: 0.8rem;
  }

}

@keyframes floatCTA {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.footer {
  background-color: var(--footer-background-color);
  color: var(--text-color);
  padding: 2rem 0 2rem;
}

.footer h4 {
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.footer .footer-social {
  margin-right: 200px;
}

.footer .footer-about p {
  font-size: 1rem;
  color: var(--muted-text-color);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.footer img {
  width: 70px;
}

.footer .footer-social h4 {
  color: var(--text-color);
}

.footer .footer-social p {
  color: var(--muted-text-color);
}

.footer .social-links {
  display: flex;
  gap: 1rem;
}

.footer .social-links a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--surface-color);
  text-decoration: none;
}

.footer .social-links a:hover {
  transform: translateY(-5px);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer .social-links a img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  pointer-events: none;
}

.footer .copyright {
  font-size: 0.8rem;
  color: var(--muted-text-color);
  margin-top: 20px;
}


@media (max-width: 767px) { 

  #footer {
    text-align: center;
  }

  #footer h4 {
    font-size: 1rem;
  }

  #footer .footer-about p {
    font-size: 0.8rem;
  }

  #footer .footer-about img {
    width: 50px;
  }

  #footer .footer-social h4 {
    display: none;
  }

  #footer .footer-social p {
    display: none;
  }

  #footer .footer-social .social-links {
    justify-content: center;
  }

  #footer .copyright {
    font-size: 0.7rem;
  }

}

@media (min-width: 768px) and (max-width: 1024px) {

  #footer {
    text-align: center;
  }

  #footer .footer-content {
    margin-left: 210px;
  }

  #footer h4 {
    font-size: 1rem;
  }

  #footer .footer-about p {
    font-size: 0.8rem;
  }

  #footer .footer-about img {
    width: 50px;
  }

  #footer .footer-social h4 {
    display: none;
  }

  #footer .footer-social p {
    display: none;
  }

  #footer .footer-social .social-links {
    justify-content: center;
  }

  #footer .copyright {
    font-size: 0.7rem;
  }

}