@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&family=Tagesschrift&display=swap');

@supports(scroll-snap-type: y mandatory) {
  .no-support {
    display: none;
  }
}
/* Add this temporarily to your CSS */
/* * {
  outline: 1px solid rgb(0, 255, 34) !important;
  background: rgba(0,0,0,0.1) !important;
}

@media (max-width: 768px) {
  * {
    outline: 1px solid rgb(0, 255, 34) !important;
  }
} */

body {
  scroll-snap-type: y mandatory;
  scroll-snap-stop: normal;
  scroll-behavior: smooth;
  font-family: "Roboto Slab";
  color: #d4d4d8;
  margin-top: 2rem;
  overflow-x: hidden; /* Prevent horizontal scroll */
  width: 100vw;
  position: relative;
}

/* Add this to your CSS */
.blob {
  overflow: hidden; /* Contain the SVG */
  width: 100%;
  max-width: 550px; /* Match your SVG width */
  margin: 0 0 0 7rem;
}

.blobsvg {
  width: 100%;
  height: auto;
  max-width: 550px;
  transform-origin: center; /* Better rotation center */
}

@media (max-width: 1024px){
  .blob {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .blob {
    max-width: 100vw;
    padding: 0 5%;
  }
  
  .blobsvg {
    transform: rotate(-65deg) scale(0.9); /* Slightly scale down on mobile */
  }
  
  .img {
    width: 30% !important; /* Ensure image stays contained */
    max-width: 180px !important;
  }
}

/* Add these styles to your CSS */
.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0f172a; /* Dark background matching your glassmorphism */
  backdrop-filter: blur(5px);
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Keep the existing loader styles from Uiverse */
.loader {
  position: relative;
  margin: auto;
  box-sizing: border-box;
  background-clip: padding-box;
  width: 200px;
  height: 200px;
  border-radius: 100px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  -webkit-mask: linear-gradient(rgba(0, 0, 0, 0.1), #000000 90%);
  transform-origin: 50% 60%;
  transform: perspective(200px) rotateX(66deg);
  animation: spinner-wiggle 1.2s infinite;
}


.loader:before,
.loader:after {
  content: "";
  position: absolute;
  margin: -4px;
  box-sizing: inherit;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  opacity: .05;
  border: inherit;
  border-color: transparent;
  animation: spinner-spin 1.2s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, spinner-fade 1.2s linear infinite;
}

.loader:before {
  border-top-color: #66e6ff;
}

.loader:after {
  border-top-color: #f0db75;
  animation-delay: 0.3s;
}

/* Add this new animation */
@keyframes spinner-wiggle {
  0%, 100% {
    transform: perspective(200px) rotateX(66deg) rotate(0deg);
  }
  50% {
    transform: perspective(200px) rotateX(66deg) rotate(10deg);
  }
}

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

@keyframes spinner-fade {
  20% {
    opacity: .1;
  }

  40% {
    opacity: 1;
  }

  60% {
    opacity: .1;
  }
}

/* Hide all content initially */
body:not(.loaded) main,
body:not(.loaded) header,
body:not(.loaded) footer {
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* When loaded */
body.loaded .loader-overlay {
  opacity: 0;
  visibility: hidden;
}

body.loaded main,
body.loaded header,
body.loaded footer {
  opacity: 1;
}

.hide-overflow {
  overflow: hidden;
}

/* Navbar Styles */
header {
  position: relative;
  z-index: 1000;
  width: 100%;
}

nav {
  width: 100%;
  padding: 2rem 1rem;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100vw;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.nav-logo {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.1);
}

.nav-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #d4d4d8;
  text-decoration: none;
  transition: color 0.3s ease;
}


/* Nav Right Styles */
.nav-right {
  display: flex;
  align-items: center;
}

/* Hamburger Button Styles */
.menu-button-container {
  display: none;
}

.menu-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-button svg {
  fill: #d4d4d8;
  transition: fill 0.3s ease;
}

/* Nav Links Styles */
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #d4d4d8;
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
  transition: color 0.3s ease;
}

/* Update the .nav-link::after styles */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%; /* Start from center */
  width: 0;
  height: 3px;
  background-color: #2563eb;
  transition: width 0.3s ease, left 0.3s ease; /* Add left transition */
  transform: translateX(-50%); /* Center the underline */
}

.nav-link:hover::after {
  width: 100%;
  left: 50%; /* Keep centered while growing */
}

.close-btn {
  display: none;
  background: none;
  border: none;
  font-size: 3rem;
  cursor: pointer;
  color: #d4d4d8;
  position: absolute;
  top: 1rem;
  right: 3rem;
  transition: color 0.3s ease;
}

/* Mobile Styles with Glassmorphism */
@media (max-width: 768px) {
  .menu-button-container {
    display: block;
    z-index: 1002;
  }

  .nav-title {
    font-size: 1.3rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: auto;
    height: 100vh;
    /* Glassmorphism effect */
    background: rgba(15, 23, 42, 0.7); /* Adjust opacity as needed */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
  }

  .nav-links.active {
    right: 0;
    box-shadow: -10px 0 30px -15px rgba(2, 12, 27, 0.7);
  }

  .close-btn {
    display: block;
  }

  .nav-link {
    font-size: 1.2rem;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
  }

  .nav-links.active .nav-link {
    opacity: 1;
    transform: translateX(0);
    transition-delay: calc(0.1s * var(--i));
  }
}

@media (max-width: 480px) {
  nav {
    width: 100%;
    padding: 1rem 1rem;
  }
  .nav-title {
    font-size: 1.1rem;
  }
}

/* Hamburger Animation */
.menu-button {
  transition: transform 0.3s ease;
}

.menu-button.active {
  transform: rotate(90deg);
  display: none;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.btn1 {
  cursor: pointer;
  position: relative;
  /* padding-left: 30px;
  padding-right: 30px;
  padding-top: 10px;
  padding-bottom: 10px; */
  padding: 5px 0px 5px 10px;
  font-size: 15px;
  font-weight: 400;
  border: none;
  display: flex;
  align-items: center;
  background: transparent;
  transition: all 100ms;
  overflow: hidden;
  height: 50px;
  width: 130px;
}

.btn2 {
  cursor: pointer;
  position: relative;
  /* padding-left: 30px;
  padding-right: 30px;
  padding-top: 10px;
  padding-bottom: 10px; */
  padding: 5px 0px 5px 38px;
  font-size: 15px;
  font-weight: 400;
  border: none;
  display: flex;
  align-items: center;
  background: transparent;
  transition: all 100ms;
  overflow: hidden;
  height: 50px;
  width: 130px;
}


.left-span {
  position: absolute;
  left: 0;
  height: 50px;
  width: 15px;
  border-top: 1px solid #2563eb;
  border-bottom: 1px solid #2563eb;
  border-left: 1px solid #2563eb;
  transition: all 500ms;
}

.right-span {
  position: absolute;
  right: 0;
  height: 50px;
  width: 15px;
  border-top: 1px solid #2563eb;
  border-bottom: 1px solid #2563eb;
  border-right: 1px solid #2563eb;
  transition: all 500ms;
}

.text-btn {
  position: absolute;
  transform: translateX(0px);
  transition: all 200ms;
}

.hidden-text-btn {
  position: absolute;
  transform: translateX(150px);
  opacity: 0;
  transition: all 200ms;
}

.btn1:hover .text-btn, .btn2:hover .text-btn {
  transform: translateX(-150px);
  opacity: 0;
}

.btn1:hover {
  padding-left: 1.9rem;
}

.btn2:hover {
  padding-left: 2.3rem;
}

.btn1:hover .hidden-text-btn, .btn2:hover .hidden-text-btn {
  transform: translateX(0px);
  opacity: 1;
}

.btn1:hover .right-span,
.btn1:hover .left-span, .btn2:hover .right-span,
.btn2:hover .left-span  {
  width: 100%;
}

/* About section*/

.about-section {
  max-width: 100%;
  padding: 3rem 4rem;
  gap: 2rem;
  margin-top: 3rem;
}
.about-heading {
  margin: 1rem 0 3rem 4rem;
  padding-top: 6%;
  width: 420px;
  font-weight: 900;
  font-size: 2rem;
  color: #d4d4d8;

}
.pattern-dot {
  height: 64px;
  width: 176px;
  color: #2563eb;

}
.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding-top: 2rem;
}

.grid-item {
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
}

.item-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.item-header img {
  width: 50px;
  height: 50px;
  margin-right: 15px;
}

.item-header h3 {
  font-size: 22px;
  margin: 0;
}

.grid-item p {
  font-size: 16px;
  line-height: 1.6;
  margin-left: 65px; /* align paragraph start with heading */
  text-align: left;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .about-section {
    padding: 1rem 2rem;
  }
  .about-heading {
    font-size: 1.5rem;
    margin: 0 auto;
    padding-top: 4%;
    text-align: center;
  }
  .grid-container {
    grid-template-columns: 1fr;
  }
  .item-header {
    justify-content: center;
    text-align: center;
  }

}

@media (max-width: 480px) {
  .about-heading {
    font-size: 1.15rem;
    padding-top: 1.2rem;
    padding-right: 39%;
    margin-bottom: 1.5rem;
  }
  .grid-item {
    padding: 15px 10px;
  }
  .grid-item p {
    font-size: 14px;
  }
}

/* Skill section */
.skills-section {
  max-width: 100%;
  padding: 3rem 1rem;
  display: flex;
  flex-direction: column-reverse;
  gap: 2rem;
  margin-top: 3rem;
}

.skill-heading {
  margin: 1rem 0 3rem 4.3rem;
  width: 420px;
  font-weight: 900;
  font-size: 2rem;
  color: #d4d4d8;
}

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

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

.heading-section {
  display: flex;
  flex-direction: column;
}

.heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}

h1 {
  font-size: 2rem;
  color: #D1D5DB;
  margin-left: -4rem;
  margin-top: 1rem;
  font-weight: 900;
  width: 11.5rem;
}

.skill1, .skill2 {
  font-size: large;
}

.skills-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 5rem;
  margin-top: 5rem;
  flex-wrap: wrap;
}

.skills-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.skill {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1rem;
}

.skill-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.skill-name {
  font-size: 1rem;
  font-weight: 500;
}

.skill-percentage {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1D4ED8;
}

.progress-container {
  margin-bottom: 0.25rem;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}

.progress-title {
  font-size: 1rem;
  font-weight: 500;
}

.progress-percentage {
  font-size: 0.875rem;
  font-weight: 500;
}

.progress-bar-background {
  width: 100%;
  background-color: transparent;
  border: 2px solid #363636;
  border-radius: 9999px;
  height: 0.925rem;
  position: relative;
  overflow: hidden;
  padding: 2px;
  box-sizing: border-box;
}

.progress-bar-fill {
  background-color: #2563EB;
  height: 60%;
  border-radius: 9999px;
  position: absolute;
  left: 2px;
  top: 2px;
  bottom: 2px;
}

/* RESPONSIVE STYLES */
@media (max-width: 1024px) {
  .skills-content {
    gap: 3rem;
    margin-top: 3rem;
  }
  .skill-heading {
    font-size: 1.75rem;
    padding-top: 3%;
  }
  h1 {
    font-size: 1.75rem;
    margin-left: 0;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .skills-content {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
  .skills-list {
    width: 100%;
  }
  .skill-heading {
    font-size: 1.5rem;
    padding-top: 2%;
  }
  h1 {
    font-size: 1.5rem;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .skills-section {
    padding: 2rem 1rem;
  }
  .skill-heading {
    font-size: 1.7rem;
    margin-bottom: 2rem;
    padding-top: 1%;
  }
  .skills-content {
    margin-top: 2rem;
    gap: 2rem;
  }
  h1 {
    font-size: 1.25rem;
  }
  h2 {
    font-size: 1.125rem;
  }
  .skill-name {
    font-size: 0.95rem;
  }
  .skill-percentage {
    font-size: 0.8rem;
  }
}

/* Experience Section */

.experience-section {
  padding: 3rem 1rem;
  margin-top: 4rem;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Heading */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.experience-heading {
  margin: 1rem 0 3rem 4.3rem;
  padding-top: 0.4rem;
  font-weight: 900;
  font-size: 2rem;
  color: #d4d4d8;
}

/* Experience Card */
.experience-card {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  overflow: hidden;
  margin: 2rem 0 3rem 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.7);
}

/* Reverse Card */
.experience-card.reverse {
  flex-direction: column-reverse;
}

/* Image Container */
.experience-image-container {
  flex: 1;
  width: 100%;
}

.experience-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Details */
.experience-details {
  padding: 2rem;
}

.experience-year {
  font-size: 1rem;
  color: #969997; /* green */
  margin-bottom: 0.5rem;
}

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

.experience-role {
  font-size: 1.5rem;
  font-weight: bold;
  color: #d4d4d8;
}

.experience-company {
  font-size: 0.6rem;
  font-weight: bold;
  color: #38bff8e1; /* sky blue */
  margin-top: 0.5rem;
}

.experience-description {
  font-size: 1rem;
  margin-top: 1rem;
  color: #d4d4d8;
  line-height: 1.7;
}

/* Responsive Design */
@media (min-width: 768px) {
  .experience-card {
    flex-direction: row;
  }

  .experience-card.reverse {
    flex-direction: row-reverse;
  }
  
  .experience-image-container {
    flex: 1;
  }
  
  .experience-details {
    flex: 1;
    padding: 3rem;
  }
  
  .experience-year {
    font-size: 1rem;
  }
  
  .experience-role {
    font-size: 1.5rem;
  }
  
  .experience-company {
    font-size: 1rem;
  }
  
  .experience-description {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) {
  .experience-heading{
    font-size: 1.7rem;
    padding-top: 0.7rem;
  }
  .experience-section {
    margin-top: 2rem;
  }

}

.hire-section {
  background: #0a0a0a;
  padding: 1rem 1rem;
  text-align: center;
  color: #d4d4d8;
}

.hire-heading {
  margin: 1.3rem 0 0 0;
  padding: 0.5rem 0 0 0;
  width: 420px;
  font-weight: 900;
  font-size: 2rem;
  color: #d4d4d8;
}

.hire-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.hire-header img {
  width: 3rem;
  height: 3rem;
  margin-right: 15px;
}
.hire-card {
  font-weight: 900;
}

.hire-card h3 {
  font-size: 1rem;
}

.hire-card p {
  font-size: 0.9rem;
  font-weight: 500;
}

.hire-card p a {
  color: #2564ebe3;
}

/* --- Responsive for Hire Section --- */
@media (max-width: 1024px) {
  
  .hire-heading {
    width: 100%;
    font-size: 1.8rem;
    margin: 1rem 0 0 3rem;
    text-align: center;
  }

  .hire-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hire-header img {
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {

  .hire-heading {
    font-size: 1.6rem;
  }

  .hire-header img {
    width: 2.5rem;
    height: 2.5rem;
  }
}

@media (max-width: 480px) {
  .hire-section {
    padding: 1.5rem 1rem;
  }

  .hire-heading {
    font-size: 1.4rem;
  }

  .hire-header img {
    width: 2rem;
    height: 2rem;
  }
}

/* Contact Section Styling */
.contact-section {
  background: #0a0a0a;
  color: #d4d4d8;
  padding: 4rem 1rem;
}

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

.contact-heading {
  margin: 1.3rem 0 0 4rem;
  padding: 0.5rem 0 0 0;
  width: 420px;
  font-weight: 900;
  font-size: 2rem;
  color: #d4d4d8;
}

.contact-content {
  margin: 4rem 0 0 0;
  background: #141414; /* light grey background */
  padding: 40px;
  display: flex;
  gap: 50px;
  border-radius: 10px;
}

.contact-details {
  flex: 1;
}

.contact-form {
  flex: 1;
  background: #e5e7eb; /* different light grey background */
  padding: 30px;
  border-radius: 10px;
}

.contact-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #d4d4d8;
}

.contact-title, .form-title, .info-item p, .info-item a {
  color: #d4d4d8;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.icon {
  background-color: #252525;
  padding: 12px;
  border-radius: 50%;
  margin-right: 15px;
}

.icon-svg {
  width: 24px;
  height: 24px;
  fill: white;
  transition: fill 0.4s ease;
}

.info-item:hover .icon-svg {
  fill: #2563EB; /* light blue on hover */
}

.social-icons {
  margin-top: 20px;
}

.social-link {
  background-color: #252525;
  padding: 10px;
  margin-right: 10px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.4s ease;
}

.social-link .icon-svg {
  width: 24px;
  height: 24px;
  fill: white;
  transition: fill 0.4s ease;
}

.social-link:hover .icon-svg {
  fill: #2563EB;
}

/* Right Side - Contact Form */
.contact-form {
  background: #282828; /* Lighter than contact-content background */
  padding: 2rem;
  border-radius: 16px;
}

.form-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #d4d4d8;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.input-group label {
  font-size: 1rem;
  font-weight: 600;
  color: #d4d4d8;
}

.input-group input, .input-group textarea {
  padding: 0.8rem 1rem;
  border: none;
  background-color: #1f1f1f !important;
  color: #d4d4d8;
  font-size: 1rem;
  border-radius: 8px;
  outline: none;
}

.input-group input:focus, .input-group textarea:focus {
  border: 1px solid #2563EB;
}

.submit-btn {
  padding: 0.9rem 2rem;
  color: #fff;
  font-size: 1rem;
  border: solid #2563EB;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #2563EB;
}

.g-recaptcha:first-child {
  transform:scale(0.95) !important;
-webkit-transform:scale(0.95) !important;
transform-origin:0 0 !important;
-webkit-transform-origin:0 0 !important;
}
/* --- Responsive for Contact Section --- */
@media (max-width: 1024px) {
  .contact-section {
    padding: 3rem 1rem;
  }

  .contact-heading {
    width: 100%;
    font-size: 1.8rem;
    text-align: center;
  }

  .contact-content {
    flex-direction: column;
    padding: 30px 20px;
    gap: 30px;
  }

  .contact-details, .contact-form {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 2rem 1rem;
  }

  .contact-heading {
    font-size: 1.6rem;
    margin: 1rem 0 0 3rem;
  }

  .contact-content {
    padding: 20px 15px;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .form-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 1.5rem 1rem;
  }

  .contact-heading {
    font-size: 1.4rem;
  }

  .contact-content {
    padding: 1.5rem;
    gap: 20px;
  }

  .contact-form {
    padding: 1rem;
  }

  .form-title {
    font-size: 1.4rem;
  }

  .submit-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }

  .input-group input,
  .input-group textarea {
    font-size: 0.9rem;
  }
}

footer {
  width: 100%;
  padding: 1rem 0;
  font-size: 1rem;
  text-align: center;
  margin-top: auto;
  margin-bottom: 2rem;
  z-index: 999;
  position: relative;
}

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

.footer-container p {
  margin: 0;
  word-break: break-word;
  font-weight: 400;
}

/* Responsive for small screens */
@media (max-width: 600px) {
  footer {
    padding: 0.8rem 0;
  }

  .footer-container p {
    font-size: 0.85rem;
    padding: 0 10px;
  }
}