body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #333; /* Dark gray for better readability */
}

/* HERO */
.hero {
  background: url('https://res.cloudinary.com/daip0qjsz/image/upload/v1767910427/hero-hair_uqemap.jpg') center/cover no-repeat;
  padding: 250px 20px;
  color: white;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.hero .btn-primary {
  background-color: #2b2b2b; /* Gray color for a more professional look */
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.hero .btn-primary:hover {
  background-color: #5a6268; /* Slightly darker gray on hover */
  transform: translateY(-3px);
}

/* PORTFOLIO */
.portfolio {
  padding: 80px 20px;
  text-align: center;
  background-color: #f8f9fa; /* Light gray background */
}

.portfolio h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.portfolio-item img {
  width: 100%;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

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

/* PRODUCTS */
.products-preview {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://res.cloudinary.com/daip0qjsz/image/upload/v1767941118/productshero_jt4kwz.jpg') center/cover no-repeat; /* Light gray background */
}

.products-preview h2{
  font-size: 2rem;
  margin-bottom: 40px;
color: #ffffff; /* Light gray background */
}

/* HERO PRODUCTS*/
.products-hero {
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://res.cloudinary.com/daip0qjsz/image/upload/v1767912375/Products_hero_vjkyb2.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 200px 20px;
}

.products-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
}

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

.products-hero .btn-primary {
  background-color: #6c757d; /* Gray */
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.products-hero .btn-primary:hover {
  background-color: #5a6268; /* Darker gray */
  transform: translateY(-3px);
}

/* PRODUCTS GRID */
.products-list {
  padding: 80px 20px;
  background-color: #f8f9fa;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.product-card2 {
    display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgb(255, 255, 255);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 50px;
}

.product-card2:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.product-card2 img {
  
  height: 100%;              /* Bigger image */
  object-fit: contain;        /* SHOW FULL PRODUCT */
  background-color: #f8f9fa;  /* Clean backdrop */
  padding: 0px;
  transition: transform 0.4s ease;
  margin-bottom: -32px;
}

.product-card2:hover img {
  transform: scale(1.05);
}


.product-details {
  padding: 20px;
}

.product-details h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: -5px;
}

.product-details p {
  font-size: 0.95rem;
  margin-bottom: 15px;
  color: #555;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  color: #6c757d;
}

.product-meta .price {
  font-size: 1.1rem;
  margin-top: 10px;
}

.product-meta .stock {
  font-size: 0.9rem;
  color: #5a6268;
margin-top: 10px;
}


/* SERVICES */
.services-overview {
  padding: 80px 20px;
  text-align: center;
  background-color: #ffffff; /* Light gray background */
}

.services-overview h2{
  font-size: 2rem;
  margin-bottom: 40px;
}

/* SERVICES OVERVIEW (Integrated with images) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

/* Card with overlay text */
.service-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 50px;
  margin-top: 20px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* IMAGE */
.service-image {
  position: relative;
  width: 100%;
  height: 500px; /* Make image taller */
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* OVERLAY TEXT */
.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.45); /* semi-transparent overlay */
  color: white;
  padding: 20px;
  text-align: center;
}

.service-overlay h3 {
  margin: 0 0 5px;
  font-size: 1.5rem;
}

.service-overlay p {
  margin: 0;
  font-size: 0.95rem;
}




/* CTA */
.cta-booking {
background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://res.cloudinary.com/daip0qjsz/image/upload/v1767944443/rossbopic_iqsnun.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 250px 20px;
}

.cta-booking .btn-primary {
  background-color: white;
  color: #000000; /* Gray */
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: bold;
}

.cta-booking .btn-primary:hover {
  background-color: #e9ecef; /* Light gray hover effect */
  color: #5a6268; /* Darker gray */
}

/* CONTACT */
.contact {
  padding: 80px 20px;
  background-color: #f4f4f4; /* Light gray */
}

.contact h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
}

.contact-info {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info ul li {
  margin-bottom: 5px;
}

.contact-info .socials a {
  margin: 0 10px;
  text-decoration: none;
  color: #6c757d; /* Neutral gray */
  font-weight: bold;
}

.contact-info .socials a:hover {
  color: #5a6268; /* Darker gray */
}

/* Header & Footer */
/* =====================
   HEADER
===================== */
.site-header {
  position: sticky;
  top: 0;
  background: #000000;
  z-index: 1000;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 22px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  font-size: 1.6rem;
  font-weight: bold;
  color: white;
  letter-spacing: 1px;
  text-decoration: none;
}

.logo span {
  font-weight: normal;
  color: #adb5bd;
}

/* NAV */
.main-nav a {
  color: white;
  text-decoration: none;
  margin-left: 30px;
  font-weight: 500;
  position: relative;
  font-weight: bold;
}

/* underline animation */
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #adb5bd;
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

/* CTA */
.nav-cta {
  background: #6c757d;
  padding: 8px 18px;
  border-radius: 25px;
}

.nav-cta:hover {
  background: #5a6268;
}

/* =====================
   FOOTER
===================== */
.site-footer {
  background: #000000;
  color: white;
  padding: 20px 20px 3px;
  margin-top: 0px;
}

.footer-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.footer-brand h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.footer-brand p {
  color: #adb5bd;
  margin-bottom: -10px;
}

.footer-info p {
  margin-top: -10px;
  font-size: 0.9rem;
  color: #adb5bd;
}


/* Cards */
.card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Buttons */
.btn {
    background: #313131; /* Neutral gray */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.btn:hover {
    background: #5a6268; /* Slightly darker gray */
}

/* Responsive Layout */
@media (max-width: 768px) {
    .service-cards, .product-cards {
        flex-direction: column;
        align-items: center;
    }
}

.booking-container {
    max-width: 700px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.step {
    margin-bottom: 20px;
}

/* SLOTS GRID */
.slots-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.slot-bubble {
  background: #6c757d;
  color: white;
  border: none;
  padding: 10px 0;
  border-radius: 25px;
  cursor: pointer;
  font-size: 0.9rem;
  text-align: center;
  transition: all 0.2s ease;
}

.slot-bubble:hover {
  background: #5a6268;
  transform: translateY(-2px);
}

.slot-bubble.selected {
  background: #343a40;
}


/* Form Button */
.booking-step button {
    cursor: pointer;
  width: 100%;
  padding: 14px;
  border-radius: 30px;
  font-size: 1.1rem;
  margin-top: 10px;
}

form label {
  display: block; /* Ensures label takes up full width */
  margin-bottom: 5px; /* Adds space between the label and input field */
}

form input {
  display: block; /* Ensures the input takes up the full width */
  width: 90%; /* Optional: makes the input field full width */
  padding: 8px;
  margin-bottom: 15px; /* Adds space below the input fields */
}


/* HERO */
.services-hero {
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://res.cloudinary.com/daip0qjsz/image/upload/v1767933845/Services_ucoueq.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 200px 20px;
}

.services-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
}

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

.services-hero .btn-primary {
  background-color: #6c757d; /* Gray */
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.services-hero .btn-primary:hover {
  background-color: #5a6268;
  transform: translateY(-3px);
}

/* SERVICES GRID */
.services-list {
  padding: 80px 20px;
  background-color: #f8f9fa;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.service-icon img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-details {
  padding: 20px;
}

.service-details h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
  color: #333;
}

.service-details p {
  font-size: 0.95rem;
  margin-bottom: 15px;
  color: #555;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  margin-bottom: 15px;
  color: #6c757d; /* Gray */
}

.service-details .btn-secondary {
  background-color: #333; /* Dark gray */
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.service-details .btn-secondary:hover {
  background-color: #555; /* Lighter gray */
  transform: translateY(-2px);
}

/* BOOKING PAGE */
.booking-page {
  background: #f8f9fa;
  padding: 60px 20px;
}

.booking-wrapper {
  max-width: 700px;
  margin: auto;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.booking-header {
  text-align: center;
  margin-bottom: 40px;
}

.booking-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.booking-header p {
  color: #555;
}

/* Steps */
.booking-step {
  margin-bottom: 30px;
}

.booking-step h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}

/* Inputs */
.booking-step select,
.booking-step input {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.booking-step select:focus,
.booking-step input:focus {
  outline: none;
  border-color: #6c757d;
}

/* BOOKING HERO */
.booking-hero {
  background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
              url('https://res.cloudinary.com/daip0qjsz/image/upload/v1767935068/bookapp_2_b4bpny.jpg') center/cover no-repeat;
  text-align: center;
  color: white;
  padding: 140px 20px;
}

.booking-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}

.booking-hero p {
  font-size: 1.2rem;
  opacity: 0.95;
}

/* BOOKING PAGE */
.booking-page {
  background: #f8f9fa;
  padding: 80px 20px;
}

.booking-wrapper {
  max-width: 720px;
  margin: -60px auto 0;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* SERVICES PAGE ONLY */
.services-page {
  padding: 80px 20px;
  background-color: #f8f9fa;
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* CARD WITH IMAGE AND OVERLAY */
.services-page-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-page-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* IMAGE */
.services-page-image {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.services-page-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* OVERLAY */
.services-page-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.45);
  color: white;
  padding: 20px;
  text-align: center;
}

.services-page-overlay h3 {
  margin: 0 0 5px;
  font-size: 1.5rem;
}

.services-page-overlay p {
  margin: 0 0 10px;
  font-size: 0.95rem;
}

.services-page-meta {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  margin-bottom: 10px;
  color: #e0e0e0;
}

.services-page-overlay .btn-secondary {
  background-color: #333;
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.services-page-overlay .btn-secondary:hover {
  background-color: #555;
  transform: translateY(-2px);
}

.socials i {
  font-size: 30px;
}



/* ======================
   MOBILE OPTIMIZATION
====================== */
@media (max-width: 768px) {

  /* Prevent horizontal scroll completely */
  html, body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }

  /* HEADER - hamburger */
  .header-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: relative;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
  }

  .hamburger div {
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .hamburger.active div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active div:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active div:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #343a40;
    width: 100%;
    text-align: center;
    z-index: 999;
    padding-bottom: 20px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    color: white;
    padding: 15px 0;
    font-weight: bold;
    width: 100%;
    text-align: center; /* center text exactly */
    margin: 0;
  }

  /* HERO SECTIONS */
  .hero, .products-hero, .services-hero, .booking-hero {
    padding: 120px 15px;
  }
  .hero h1, .products-hero h1, .services-hero h1, .booking-hero h1 {
    font-size: 2rem;
  }
  .hero p, .products-hero p, .services-hero p, .booking-hero p {
    font-size: 1rem;
  }

  /* PORTFOLIO GRID */
  .portfolio-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
  }
  .portfolio-item {
    flex: 0 0 250px;
    scroll-snap-align: start;
  }

  /* PRODUCTS GRID */
  .products-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding-left: 15px;
    padding-bottom: 15px;
  }
  .product-card2 {
    flex: 0 0 250px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    background: rgb(236,236,236);
    border-radius: 15px;
    overflow: hidden;
  }
  .product-card2 img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* full height */
    background-color: #f8f9fa;
    border-radius: 15px 15px 0 0;
  }
  .product-details {
    padding: 10px;
    background: #fff;
    flex-shrink: 0;
  }
  .product-details h3 {
    font-size: 1rem;
    margin-bottom: 3px;
  }
  .product-details p {
    font-size: 0.85rem;
    margin-bottom: 5px;
  }
  .product-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-top: 5px;
    color: #6c757d;
  }

  /* SERVICES GRID - INDEX */
  .services-overview .services-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding-left: 15px;
    padding-bottom: 15px;
  }
  .services-overview .service-card {
    flex: 0 0 250px;
    scroll-snap-align: start;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
  }
  .services-overview .service-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
  }
  .services-overview .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .services-overview .service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 10px;
    text-align: left;
  }
  .services-overview .service-overlay h3 {
    font-size: 1rem;
    margin-bottom: 3px;
  }
  .services-overview .service-overlay p {
    font-size: 0.85rem;
    margin: 0;
  }

  /* SERVICES PAGE - SAME AS INDEX */
  .services-page-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding-left: 15px;
    padding-bottom: 15px;
  }
  .services-page-card {
    flex: 0 0 250px;
    scroll-snap-align: start;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
  }
  .services-page-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
  }
  .services-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .services-page-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 10px;
    text-align: left;
    border-radius: 0 0 15px 15px;
  }
  .services-page-overlay h3 {
    font-size: 1rem;
    margin-bottom: 3px;
  }
  .services-page-overlay p {
    font-size: 0.85rem;
    margin: 0;
  }
  .services-page-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-top: 5px;
    color: #e0e0e0;
  }
  .services-page-overlay .btn-secondary {
    font-size: 0.85rem;
    padding: 6px 15px;
    border-radius: 20px;
    margin-top: 5px;
  }

  /* CTA & other text smaller */
  .cta-booking {
    
    padding: 30px 15px;
  }

  /* BOOKING PAGE */
  .booking-wrapper {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  .booking-header h1 {
    font-size: 2rem;
  }
  .booking-step input,
  .booking-step select,
  .booking-step textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px;
    font-size: 1rem;
    border-radius: 10px;
    border: 1px solid #ccc;
    margin-top: 5px;
  }
    .booking-step {
    width: 100%;
    margin-bottom: 20px;
  }
    .booking-step.step-date input[type="date"] {
    width: 92%;
    margin-left: auto;
    margin-right: auto;
    display: block; /* center it */
    box-sizing: border-box;
  }
  .slots-container {
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
  }
  .slot-bubble {
    width: 100%;
    padding: 8px 0;
    font-size: 0.85rem;
    border-radius: 25px;
    text-align: center;
  }
  .booking-step button {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    border-radius: 25px;
    margin-top: 15px;
    box-sizing: border-box;
  }

  /* Social icons */
  .socials i {
    font-size: 24px;
  }

}
