/* ======= VARIABLES ======= */
:root {
  /* Main Colors */
  --primary-color: #6366f1;
  --secondary-color: #ec4899;
  --dark-color: #1e293b;
  --light-color: #f8fafc;
  --grey-color: #94a3b8;
  
  /* Gradient Colors */
  --gradient-primary: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
  --gradient-dark: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  
  /* Text Colors */
  --text-dark: #1e293b;
  --text-light: #f8fafc;
  --text-grey: #94a3b8;
  
  /* Font Families */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Montserrat', sans-serif;
  
  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;
  
  /* Shadows */
  --shadow-small: 0 2px 5px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 25px rgba(0, 0, 0, 0.1);
  
  /* Border Radius */
  --radius-small: 4px;
  --radius-medium: 8px;
  --radius-large: 16px;
  --radius-full: 9999px;
}

/* ======= RESET & BASE STYLES ======= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  background-color: var(--light-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--secondary-color);
}

ul {
  list-style: none;
}

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

section {
  padding: 100px 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ======= PRELOADER ======= */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: var(--transition-medium);
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader {
  text-align: center;
}

.logo-container {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background: var(--gradient-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-medium);
  animation: pulse 1.5s infinite;
}

.logo-text {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--light-color);
}

.loading-text {
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 500;
}

.dots {
  display: inline-block;
  animation: loadingDots 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(99, 102, 241, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
  }
}

@keyframes loadingDots {
  0% { opacity: 0.2; }
  20% { opacity: 1; }
  100% { opacity: 0.2; }
}

/* ======= NAVIGATION ======= */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  transition: var(--transition-medium);
  z-index: 1000;
}

#navbar.scrolled {
  background-color: var(--light-color);
  box-shadow: var(--shadow-medium);
  padding: 15px 5%;
}

.logo {
  font-family: var(--font-secondary);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
}

.logo span {
  color: var(--secondary-color);
}

.nav-links ul {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-dark);
  font-weight: 500;
  padding: 5px 0;
  position: relative;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--primary-color);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-fast);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* ======= HERO SECTION ======= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 150px 5% 100px;
  position: relative;
  overflow: hidden;
  background-image: 
    radial-gradient(circle at 15% 85%, rgba(99, 102, 241, 0.08) 0%, transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(236, 72, 153, 0.08) 0%, transparent 30%);
}

.hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  font-size: 1.8rem;
  font-weight: 400;
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-grey);
}

.hero .name {
  font-size: 4rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.text-animation {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  min-height: 44px;
  position: relative;
}

#job-title {
  color: var(--primary-color);
}

.cursor {
  display: inline-block;
  width: 3px;
  height: 1.2em;
  background-color: var(--primary-color);
  margin-left: 5px;
  animation: blink 1s infinite;
  vertical-align: middle;
}

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

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-grey);
  max-width: 90%;
}

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

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: var(--radius-full);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  outline: none;
  font-family: var(--font-primary);
  font-size: 1rem;
}

.primary-btn {
  background: var(--gradient-primary);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.primary-btn:hover {
  color: var(--text-light);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.5);
  transform: translateY(-3px);
}

.secondary-btn {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
  background: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-3px);
}

.hero-image {
  flex: 1;
  max-width: 500px;
  position: relative;
  z-index: 1;
}

.shape {
  width: 350px;
  height: 350px;
  background: var(--gradient-primary);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  margin-left: auto;
  box-shadow: var(--shadow-large);
  animation: morphShape 8s ease-in-out infinite;
}

@keyframes morphShape {
  0%, 100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }
  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: float 2s ease-in-out infinite;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--primary-color);
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.wheel {
  width: 4px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 2px;
  margin-top: 8px;
  animation: scroll 1.5s ease-in-out infinite;
}

.arrow-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.arrow-down span {
  display: block;
  width: 15px;
  height: 15px;
  border-bottom: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
  transform: rotate(45deg);
  animation: arrowDown 1.5s ease-in-out infinite;
}

.arrow-down span:nth-child(2) {
  animation-delay: 0.2s;
}

.arrow-down span:nth-child(3) {
  animation-delay: 0.4s;
}

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

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(15px);
  }
}

@keyframes arrowDown {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-5px, -5px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(5px, 5px);
  }
}

/* ======= SECTION COMMON STYLES ======= */
.section {
  position: relative;
  padding: 100px 5%;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.section-header h2 span {
  color: var(--primary-color);
}

.underline {
  height: 4px;
  width: 70px;
  background: var(--gradient-primary);
  margin: 0 auto;
  border-radius: var(--radius-full);
}

/* ======= ABOUT SECTION ======= */
.about-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.about-image {
  flex: 1;
  min-width: 350px;
  max-width: 450px;
}

.image-frame {
  position: relative;
  padding-bottom: 130%;
}


.image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/diolez.jpg');
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-medium);
}
/* REMOVED THE BORDER - This ::before pseudo-element was creating the border */
/*  
.image-bg::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 4px solid var(--primary-color);
  border-radius: var(--radius-medium);
  z-index: -1;
} */


.about-text {
  flex: 1.5;
}

.tools-container
{
	margin-left: 1.8rem;
}
.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.about-details {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.detail {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.detail i {
  font-size: 1.8rem;
  color: var(--primary-color);
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background-color: rgba(99, 102, 241, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.detail h4 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.detail p {
  color: var(--text-grey);
  margin-bottom: 0;
}

/* ======= SKILLS SECTION ======= */
.skills-content {
  display: flex;
  gap: 4rem;
  margin-bottom: 4rem;
}

.skills-description {
  flex: 1;
}

.skills-description h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.skills-bars {
  flex: 1.5;
}

.skill {
  margin-bottom: 2rem;
}

.skill-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.skill-logo {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-small);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: var(--text-light);
  background: var(--gradient-primary);
}

.skill h4 {
  font-size: 1.1rem;
  margin-bottom: 0;
}

.progress-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.progress-bar {
  height: 8px;
  width: 100%;
  background-color: rgba(99, 102, 241, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.progress {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  width: 0;
  transition: width 1.5s ease-in-out;
}

.percentage {
  font-weight: 600;
  color: var(--primary-color);
  min-width: 45px;
  text-align: right;
}

.advanced-skills {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.skill-card {
  background-color: var(--light-color);
  border-radius: var(--radius-medium);
  padding: 1.5rem;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-medium);
}

.skill-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.skill-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: var(--text-light);
  background: var(--gradient-primary);
  margin-bottom: 1rem;
}

.skill-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.skill-card p {
  color: var(--text-grey);
  margin-bottom: 0;
}

/* ======= SERVICES SECTION ======= */
.services-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--light-color);
  border-radius: var(--radius-medium);
  padding: 2rem;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-primary);
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-large);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  color: var(--text-light);
  background: var(--gradient-primary);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.service-card ul {
  margin-top: 1rem;
}

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

.service-card ul li::before {
  content: '✓';
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

/* ======= PROJECTS SECTION ======= */
.project-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 8px 20px;
  background-color: transparent;
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-grey);
  transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.project-card {
  background-color: var(--light-color);
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-medium);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-large);
}

.project-img {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

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

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 41, 59, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-medium);
}

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

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

.project-links a {
  width: 45px;
  height: 45px;
  border-radius: var(--radius-full);
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--light-color);
  color: var(--primary-color);
  font-size: 1.2rem;
  transition: var(--transition-fast);
  transform: translateY(20px);
  opacity: 0;
}

.project-card:hover .project-links a {
  transform: translateY(0);
  opacity: 1;
}

.project-links a:hover {
  background: var(--primary-color);
  color: var(--light-color);
}

.project-links a:nth-child(2) {
  transition-delay: 0.1s;
}

.project-info {
  padding: 1.5rem;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.project-tags span {
  padding: 4px 12px;
  background-color: rgba(99, 102, 241, 0.1);
  color: var(--primary-color);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
}

.project-info h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.project-info p {
  color: var(--text-grey);
  margin-bottom: 1rem;
}

.project-status {
  display: flex;
  justify-content: flex-end;
}

.status {
  padding: 5px 15px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
}

.status.completed {
  background-color: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.status.in-progress {
  background-color: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.view-more {
  text-align: center;
  margin-top: 3rem;
}

/* ======= TESTIMONIALS SECTION ======= */
.testimonials {
  background-color: rgba(99, 102, 241, 0.03);
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial {
  display: none;
}

.testimonial.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.testimonial-content {
  background-color: var(--light-color);
  border-radius: var(--radius-medium);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-medium);
  position: relative;
  text-align: center;
}

.quote-icon {
  font-size: 2rem;
  color: var(--primary-color);
  opacity: 0.2;
  margin-bottom: 1rem;
}

.testimonial-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.client-info {
  margin-top: 1.5rem;
}

.client-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-color);
}

.client-position {
  color: var(--text-grey);
  font-size: 0.9rem;
}

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

.prev-btn, .next-btn {
  border: none;
  background: transparent;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
  transition: var(--transition-fast);
}

.prev-btn:hover, .next-btn:hover {
  color: var(--secondary-color);
}

.slider-dots {
  display: flex;
  gap: 0.8rem;
  margin: 0 2rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background-color: rgba(99, 102, 241, 0.3);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background-color: var(--primary-color);
  width: 30px;
}

/* ======= CONTACT SECTION ======= */
.contact-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.contact-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.contact-intro p {
  font-size: 1.1rem;
  color: var(--text-color);
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

.contact-info, .contact-form-container {
  flex: 1;
  min-width: 300px;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem
}

.info-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  color: var(--text-light);
  background: var(--gradient-primary);
  flex-shrink: 0;
}

.info-item h4 {
  margin: 0;
  font-size: 1rem;
  color: var(--text-dark);
}

.info-item p {
  margin: 0.25rem 0 0;
  color: var(--text-color);
  font-size: 0.95rem;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: var(--radius-medium);
  background-color: var(--bg-light);
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-color);
}

.contact-form button {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-medium);
  background: var(--gradient-primary);
  color: var(--text-light);
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  opacity: 0.9;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}
/* ======= FOOTER ======= */
footer {
  background-color: #ffffff; /* White background */
  color: var(--text-dark); /* Dark text for contrast */
  padding: 3rem 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
  border-top: 1px solid #ddd;
}

footer .logo {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: inline-block;
}

footer p {
  font-size: 1rem;
  margin: 0.5rem 0;
  color: var(--text-dark);
  line-height: 1.6;
}

footer .socials {
  margin-top: 1.5rem;
}

footer .socials a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin: 0 0.4rem;
  border-radius: var(--radius-full);
  background-color: var(--primary-color);
  color: #ffffff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

footer .socials a:hover {
  background-color: var(--primary-dark);
  transform: scale(1.1);
}

footer .footer-bottom {
  margin-top: 2rem;
  font-size: 0.9rem;
  opacity: 0.6;
  color: var(--text-dark);
}