/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #0d0d0d;
  color: #ccc;
}

/* Navbar & Header */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  padding: 15px 20px;
  transition: background 0.3s;
}

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

.logo {
  font-size: 2rem;
  font-weight: bold;
  color: #1e90ff; /* Blue accent */
}

/* Navigation Menu */
.nav-menu ul {
  display: flex;
  list-style: none;
}

.nav-menu ul li a {
  text-decoration: none;
  color: #ccc;
  padding: 0 15px;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav-menu ul li a:hover {
  color: #1e90ff;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: #ccc;
  border-radius: 2px;
}

/* Sidebar Styles */
.sidebar {
  position: fixed;
  top: 0;
  right: -300px; /* Hidden off-screen */
  width: 300px;
  height: 100%;
  background: #121212;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
  transition: right 0.3s ease;
  z-index: 1100;
  padding: 20px;
}

.sidebar.active {
  right: 0;
}

.sidebar .close-sidebar {
  background: none;
  border: none;
  font-size: 2rem;
  color: #ccc;
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
}

.sidebar ul {
  list-style: none;
  margin-top: 60px;
}

.sidebar ul li {
  margin: 20px 0;
}

.sidebar ul li a {
  text-decoration: none;
  font-size: 1.2rem;
  color: #ccc;
  transition: color 0.3s;
}

.sidebar ul li a:hover {
  color: #1e90ff;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 50, 0.8), rgba(0, 0, 50, 0.8)),
              url('images/sheet-metalworker.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  color: #fff;
  z-index: 2;
  animation: slideIn 1.5s ease-out;
  max-width: 90%; /* Prevent content from being too wide on small screens */
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

.btn {
  background: #1e90ff;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn:hover {
  background: #187bcd;
}

/* Font Awesome Icon CSS */
.fas {
  font-size: 3rem; /* Increase icon size */
  color: #1e90ff; /* Blue color for icons */
  margin-bottom: 15px;
}

/* Extended Content Sections */
.extended-content,
.extended-content-alt {
  padding: 60px 20px;
  background: #121212;
  color: #ccc;
  text-align: center;
}

.extended-content h2,
.extended-content-alt h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #1e90ff;
}

/* Grid for Content */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.content-box {
  background: #222;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.content-box:hover {
  transform: translateY(-10px);
}

.content-box .icon {
  margin-bottom: 20px;
}

.content-box h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 10px;
}

.content-box p {
  font-size: 1rem;
  color: #bbb;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

/* Icon Box */
/* Icon Box Alignment Fix */
.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;  /* Center both icon and text */
  gap: 20px;
  margin-top: 40px;
  text-align: center;  /* Ensure text is also centered */
}

.icon-box .icon {
  display: inline-block;
  font-size: 3rem; /* Ensure proper icon size */
  color: #1e90ff;
  margin-bottom: 0; /* Remove any unwanted space beneath the icon */
}

.icon-box p {
  font-size: 1rem;
  color: #bbb;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
  .content-box h3 {
    font-size: 1.2rem;
  }
  .content-box p {
    font-size: 0.9rem;
  }
}

/* Footer */
footer {
  background: #ffffff;
  color: #888;
  padding: 20px 0;
  text-align: center;
}

footer p {
  font-size: 0.9rem;
}

/* Animations */
@keyframes slideIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .navbar {
    padding: 10px 20px;
  }
  /* Hide the standard nav-menu on mobile */
  .nav-menu {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .extended-content h2,
  .extended-content-alt h2 {
    font-size: 2rem;
  }
  .extended-content p,
  .extended-content-alt p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .btn {
    padding: 10px 20px;
    font-size: 1rem;
  }
  footer p {
    font-size: 0.8rem;
  }
}





/* Butoni i gjuhës në formë toggle */
.language-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 50%;
  z-index: 1000;
}

.language-toggle button {
  background-color: transparent;
  color: #fff;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.language-toggle button:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

/* Menu i gjuhëve */
.language-selector {
  position: fixed;
  bottom: 60px;
  right: 20px;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 5px;
  padding: 10px;
  z-index: 1000;
}

.language-selector button {
  background-color: #1e90ff;
  color: #fff;
  border: none;
  padding: 10px 15px;
  font-size: 1rem;
  margin: 5px 0;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.language-selector button:hover {
  background-color: #187bcd;
}

/* ===== GALERIA E RE MODERNE ===== */

/* Stilizimi i seksionit të galerisë */
.gallery-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  color: #ccc;
  text-align: center;
  position: relative;
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="%23ffffff" opacity="0.03"/><circle cx="40" cy="25" r="0.3" fill="%23ffffff" opacity="0.02"/><circle cx="70" cy="45" r="0.4" fill="%23ffffff" opacity="0.025"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
  pointer-events: none;
  z-index: 1;
}

/* Header i galerisë */
.gallery-header {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto 60px;
}

.gallery-header h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, #1e90ff, #00bfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(30, 144, 255, 0.3);
  letter-spacing: -1px;
}

.gallery-subtitle {
  font-size: 1.2rem;
  color: #999;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Kontejneri i kategorive */
.gallery-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Kartat e kategorive - Dizajn Clean */
.category-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  background: #1a1a1a;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.category-card:active {
  transform: translateY(-2px);
  transition: transform 0.1s ease;
}

.category-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-card:hover img {
  transform: scale(1.03);
}

/* Gradient overlay që është gjithmonë i dukshëm */
.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.85) 30%,
    rgba(0, 0, 0, 0.55) 70%,
    rgba(0, 0, 0, 0) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 1;
  pointer-events: none;
}

/* Përmbajtja e kategorisë - gjithmonë e dukshme */
.category-content {
  text-align: center;
  color: white;
  padding: 0 20px 30px;
  width: 100%;
}

.category-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

/* Butoni i kategorisë - i thjeshtuar */
.category-btn {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.category-card:hover .category-btn {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

.category-btn i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.category-card:hover .category-btn i {
  transform: translateX(3px);
}

/* ===== MODAL MODERN ===== */

/* Modal i galerisë */
.modern-gallery-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modern-gallery-modal.active {
  opacity: 1;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.modal-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-gallery-modal.active .modal-container {
  transform: translateY(0);
}

/* Header i modalit */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
  font-size: 1.8rem;
  color: #ffffff;
  font-weight: 600;
  margin: 0;
}

.modal-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

/* Përmbajtja e modalit */
.modal-content {
  flex: 1;
  position: relative;
  overflow-y: auto;
  padding: 40px;
}

/* Grid i imazheve në modal */
.gallery-grid-modal {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-grid-modal .gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 15px;
  overflow: hidden;
  background: #1a1a1a;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(20px);
  animation: slideInUp 0.6s ease forwards;
}

.gallery-grid-modal .gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-grid-modal .gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-grid-modal .gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-grid-modal .gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-grid-modal .gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-grid-modal .gallery-item:nth-child(6) { animation-delay: 0.6s; }

.gallery-grid-modal .gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(30, 144, 255, 0.3);
}

.gallery-grid-modal .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.gallery-grid-modal .gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Loading spinner */
.loading-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  color: #ccc;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(30, 144, 255, 0.3);
  border-top: 3px solid #1e90ff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

.loading-spinner p {
  font-size: 1rem;
  opacity: 0.7;
}

/* ===== MODAL I IMAZHIT TË VETËM ===== */

.image-view-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4000;
  background: rgba(0, 0, 0, 0.98);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-view-modal.active {
  opacity: 1;
}

.image-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.image-modal-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 20px;
}

.image-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  z-index: 4001;
}

.image-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.image-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#modal-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: zoomIn 0.5s ease forwards;
}

/* Butonat e navigimit */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  border: none;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  z-index: 4001;
}

.nav-btn:hover {
  background: rgba(30, 144, 255, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

/* Info i imazhit */
.image-info {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
}

/* ===== ANIMACIONET ===== */

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

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

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

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 768px) {
  .gallery-header h2 {
    font-size: 2.2rem;
  }
  
  .gallery-subtitle {
    font-size: 1rem;
    padding: 0 20px;
  }
  
  .gallery-categories {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 10px;
  }
  
  .category-card {
    height: 300px;
  }
  
  .category-content h3 {
    font-size: 1.5rem;
  }
  
  .modal-header {
    padding: 15px 20px;
  }
  
  .modal-title {
    font-size: 1.4rem;
  }
  
  .modal-content {
    padding: 20px;
  }
  
  .gallery-grid-modal {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
  }
  
  .nav-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .prev-btn {
    left: 10px;
  }
  
  .next-btn {
    right: 10px;
  }
  
  .image-modal-close {
    width: 40px;
    height: 40px;
    top: 15px;
    right: 15px;
    font-size: 1.2rem;
  }
}






/* About Us Section */
.about-section {
  padding: 80px 20px;
  background: #121212;
  color: #ccc;
  text-align: center;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
  gap: 20px;
}

/* Teksti i About Us */
.about-text {
  flex: 1;
  text-align: left;
  max-width: 500px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #1e90ff;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Fotoja */
.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    text-align: center;
    max-width: 100%;
  }

  .about-image img {
    max-width: 90%;
  }
}





/* What We Do Section */
.what-we-do {
  text-align: center;
  padding: 80px 20px;
  background: #121212;
  color: #ccc;
}

.what-we-do h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #1e90ff;
  text-transform: uppercase;
  font-weight: bold;
}

/* Lista e punëve */
.work-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

/* Stili i punëve */
.work-item {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}

.work-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.2);
}

/* Ikonat */
.work-item i {
  font-size: 2rem;
  color: #1e90ff;
  margin-bottom: 10px;
}

/* Titujt e punëve */
.work-item h3 {
  font-size: 1.2rem;
  color: #fff;
  font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .work-list {
    grid-template-columns: 1fr;
  }
}









/* Contact Section */
.contact-section {
  text-align: center;
  padding: 80px 20px;
  background: #121212;
  color: #ccc;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #1e90ff;
  text-transform: uppercase;
  font-weight: bold;
}

.contact-section p {
  font-size: 1rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Container for Icons */
.contact-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Style for Contact Icons */
.contact-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1a1a1a;
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2rem;
  color: #fff;
  font-weight: bold;
  transition: transform 0.3s, background 0.3s;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}

.contact-icon i {
  font-size: 1.8rem;
}

/* WhatsApp Button */
.whatsapp {
  background: #25d366;
}

.whatsapp:hover {
  background: #1ebe5d;
  transform: scale(1.1);
}

/* Viber Button */
.viber {
  background: #7360f2;
}

.viber:hover {
  background: #5d4ac8;
  transform: scale(1.1);
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .contact-icons {
    flex-direction: column;
    align-items: center;
  }

  .contact-icon {
    width: 80%;
    justify-content: center;
  }
}
