/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #000000;
  color: white;
}

/* Navbar Styles */
.navbar {     
  display: flex;
  justify-content: space-between; /* Space between left and right elements */
  align-items: center;
  padding: 0.5rem 2rem;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.navbar-left {
  display: flex;
  align-items: center;
}

.navbar-left .brand-name {
  color: white;
  font-size: 1.5rem; /* Adjust size as needed */
  font-weight: bold;
  text-transform: uppercase; /* Optional: Make the text uppercase */
  text-decoration: none; /* Removes underline */
  padding-right: 0px;
  margin-top: 15px;
  white-space: nowrap;
}

.navbar .nav-links {
  display: flex;
  list-style: none;
  justify-content: flex-end; /* Align items to the right */
  width: 100%;
}

.navbar .nav-links li {
  margin: 0 35px; /* Reduced space between items */
  margin-top: 15px;
}

.navbar .nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.navbar .navbar-left a:hover {
  color: #ff1493;
}
.navbar .nav-links li a:hover {
  color: #ff1493;
}

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

.hamburger .bar {
  height: 3px;
  width: 100%;
  background-color: white;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100vh;
  background-color: black;
  padding: 0 10%;
}


.text-container {
  margin-top: 40px;
  width: 50%;
}

.image-container {
  width: 50%;
  text-align: right;
}

/* New animation for blur-to-normal effect */
@keyframes blurToNormal {
  from {
    filter: blur(10px);
    opacity: 0;
  }
  to {
    filter: blur(0);
    opacity: 1;
  }
}

/* Image Container with Blur Animation */
.image-container img {
  width: 500px;
  border-radius: 50%;
  margin-left: 60px;
  margin-top: 40px;
  animation: blurToNormal 1.5s ease-out forwards; /* Blur to Normal Effect */
}

/* Typography Styles */
.hello-text {
  font-family: 'Space Mono', monospace;
  color: #d73cbe;
  font-size: 1.5rem;
  font-weight: bold;
}

.name-text {
  font-family: 'League Spartan', sans-serif;
  font-size: 5rem;
  font-weight: bold;
  margin-top: 10px;
}

.role-container {
  background-color: #d73cbe;
  color: black;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
  margin-top: 20px;
  
  transition: box-shadow 0.3s ease;
}

.role-container:hover {
  box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.9);
}


.role-text {
  font-family: 'Space Mono', monospace;
  font-size: 1.5rem;
  margin: 0;
  
}

.description {
  font-family: 'Canva Sans', sans-serif;
  font-size: 1rem;
  margin-top: 20px;
  line-height: 1.6;
}

/* Animation Styles */
@keyframes animateFromLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes typing {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.animate-left {
  animation: animateFromLeft 1s ease-out forwards;
}

.animate-typing {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  border-right: 4px solid #fff;
  animation: typing 2s steps(30) 1s forwards infinite;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 0;
  }

  .text-container, .image-container {
    margin-top: 100px;
    width: 100%;
  }

  .image-container {
    margin-top: 20px;
    margin-right: 70px;
  }

  .navbar .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #000000;
    padding: 10px 0;
    border-radius: 5px;
  }

  .navbar .nav-links li {
    margin: 10px 0;
  }

  .navbar .nav-links li a {
    font-size: 1.5rem;
  }

  .hamburger {
    display: flex;
  }

  .navbar.active .nav-links {
    display: flex;
  }
  
  
}



/* Make sure the parent container is relative for the absolute bg */
#about {
  position: relative;
  overflow: hidden;
}

.gradient-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(
    -60deg,
    rgba(0, 0, 0, 0.8),
    rgba(44, 3, 44, 0.8),
    rgba(9, 15, 19, 0.8),
    rgba(44, 3, 44, 0.8),
    rgba(0, 0, 0, 0.8)
  );
  background-size: 300% 300%;
  animation: auroraMove 10s linear infinite, auroraFade 5s ease-in-out infinite alternate;
}

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

@keyframes auroraFade {
  0%   { opacity: 0.9; }
  100% { opacity: 1; }
}





/* About Me Section styling */
.about-me-section {
  padding: 40px;
  background: transparent; /* No background here, gradient-bg handles it */
  color: #ffffff;
  padding-top: 100px;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding-left: 150px;
  padding-top: 150px;
}

.about-buttons button {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-size: 18px;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.1s ease;
  position: relative;
  overflow: hidden;
}

.about-buttons button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
  animation: pop 2s infinite alternate;
  transform: translateY(-5px);
}

.about-buttons button::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255, 255, 255, 0.1);
  z-index: -1;
  transform: scale(0);
  transition: all 0.1s ease;
  border-radius: 25px;
}

.about-buttons button:hover::before {
  transform: scale(2);
}

.about-text {
  flex: 1;
  max-width: 50%;
  padding-left: 20px;
}

.about-text h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.6;
}




.social-links {
  display: flex;
  justify-content: center;
  gap: 20px; /* Space between social buttons */
  margin-top: 50px;
  margin-left: 270px;
  margin-bottom: 50px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff; 
  text-align: center;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-btn i {
  transition: all 0.3s ease;
}

.social-btn:hover {
  background-color: rgba(255, 255, 255, 0.1); /* Slight white background on hover */
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.7); /* Glowing effect */
}

.social-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  z-index: -1;
  transform: scale(0);
  transition: all 0.3s ease;
  border-radius: 50%;
}

.social-btn:hover::before {
  transform: scale(2); /* Creates a glowing light effect */
}

.social-btn:hover i {
  transform: scale(1.4); /* Icon enlarges slightly on hover */
}

.know-more-link {
  position: relative;
  text-decoration: none;
  color: inherit;
  font-weight: bold;
  font-size: 20px;
  cursor: pointer;
  margin-left: 620px;
}

.know-more-link::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: black;
  left: 0;
  bottom: -2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.know-more-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
  background-color: white; /* Change the underline color to white on hover */
}


/* Keyframes for blur effect */
@keyframes blurToNormal {
  0% {
    filter: blur(10px);
    opacity: 0;
  }
  100% {
    filter: blur(0);
    opacity: 1;
  }
}

.divider img {
  width: 450px;
  height: 450px;
  border-radius: 50%;
  animation: blurToNormal 2.5s ease-out forwards;
}

.education-main-section h1 {
  font-size: 46px;
  font-weight: bold;
  padding-top: 120px;
  padding-left: 100px;
  background-color: rgb(40, 7, 53);

}

.education-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(rgb(40, 7, 53), rgb(25, 39, 43), rgb(9, 15, 19));
  position: relative;
  padding-top: 10px;
  padding-bottom: 50px;
}

.education-column {
  width: 25%;
  padding: 20px;
  opacity: 0; /* Start invisible */
  transform: translateX(-100%); /* Initial position for left */
}

.right {
  transform: translateX(100%); /* Initial position for right */
}

.education-section.active .left {
  transform: translateX(0); /* Slide in from the left */
  opacity: 1; /* Fade in */
  transition: transform 3s ease-out, opacity 0.6s ease-out;
}

.education-section.active .right {
  transform: translateX(0); /* Slide in from the right */
  opacity: 1; /* Fade in */
  transition: transform 3s ease-out, opacity 0.6s ease-out;
}

.education-box {
  background: rgba(17, 33, 36, 0.5); /* Dark background for the box */
  padding: 20px;
  border-radius: 15px; /* Rounded corners */
  box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.9); /* White glow */
  transition: box-shadow 0.6s ease-in-out;
}

.education-item h3 {
  margin: 0;
  font-size: 20px;
  color: #fff;
}

.education-item p {
  margin: 5px 0;
  font-size: 16px;
  color: #ddd;
}



#skills {
  padding: 50px 0;
  background: linear-gradient(rgb(9, 15, 19),rgb(44, 3, 44), rgb(0, 0, 0)) ;
  
}


.skill {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s ease;
}

.skill.visible {
  opacity: 1;
  transform: translateY(0);
}


#skills h2{
 font-size: 46px;
 text-align: center;
 padding-bottom: 25px;
 
}
.skills-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  perspective: 1000px;
  margin-top: 50px;
  
  
}
.skill {
  margin: 20px;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1s ease;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transform-style: preserve-3d;
  
}
.skill i {
  font-size: 50px;
  color: white;
  text-shadow: 0 0 5px rgb(255, 255, 255);
  
}
.skill span {
  margin-top: 10px;
  font-size: 16px;
  text-shadow: 0 0 10px rgb(255, 255, 255,1);
}
.skill:hover {
  opacity: 1;
  transform: scale(1.5);
  color: #71d3f4;
  text-shadow: 0 0 20px #25c5f1;
}


/* Responsive Styles for 768px (Tablets) */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    width: 100%;
    padding-left: 16px;
  }

  .navbar .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: fixed;
    top: 60px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.9);
    width: 20%;
    border-radius: 5px;
  }

  .navbar .nav-links li {
    margin: 10px 0;
  }

  .hamburger {
    display: flex;
    margin-right: 700px;
  }

  

  .navbar.active .nav-links {
    display: flex;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    height: auto;
    padding: 5% 10%;
  }

  .text-container {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }

  .image-container {
    width: 80%;
    text-align: center;
  }

  .image-container img {
    
    max-width: 400px;
    margin-left: 30;

  }

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    max-width: 90%;
  }

  .about-buttons {
    flex-direction: column;
    align-items: center;
    padding: 50px 0;
  }

  .social-links {
    flex-wrap: wrap;
    justify-content: center;
    margin-left: 0;
  }

  .know-more-link {
    margin-left: 0;
    display: block;
    text-align: center;
  }

  .education-section {
    flex-direction: column;
    padding: 30px 10px;
  }

  .education-column {
    width: 100%;
    text-align: center;
    transform: none;
  }

  .education-box {
    margin: 20px 0;
  }

  .skills-gallery {
    flex-wrap: wrap;
  }

  .skill {
    width: 100px;
    height: 100px;
  }
}

/* Responsive Styles for 480px (Mobile Phones) */
@media (max-width: 480px) {
  .navbar {
    padding: 1rem;
    flex-direction: column;
    align-items: center;
  }

  .hamburger {
    display: flex;
    margin-right: 300px;
  }


  .navbar .nav-links {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 100px;
    right: 0;
  }

  .hero {
    padding: 10% 5%;
  }

  .name-text {
    font-size: 3rem;
  }

  .role-text {
    font-size: 1.2rem;
  }

  .description {
    font-size: 0.9rem;
  }

  .image-container img {
    width: 90%;
    max-width: 300px;
  }

  .about-text h1 {
    font-size: 28px;
  }

  .about-text p {
    font-size: 14px;
  }

  .about-buttons {
    padding-top: 50px;
  }

  .about-buttons button {
    font-size: 16px;
    padding: 8px 15px;
  }

  .social-links {
    flex-wrap: wrap;
  }

  .education-main-section h1 {
    font-size: 32px;
    padding-left: 0;
    text-align: center;
  }

  .education-section {
    flex-direction: column;
    padding: 20px 5px;
  }

  .skills-gallery {
    justify-content: center;
  }

  .skill {
    width: 80px;
    height: 80px;
  }

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

  .skill span {
    font-size: 14px;
  }
}









.projects-section {
  padding: 140px 100px;
  background: linear-gradient(rgb(9, 15, 19), rgb(44, 3, 44), rgb(9, 15, 19));
}

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

.project-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.9); /* Glowing effect */
  display: flex;
  flex-direction: column;
  height: 100%; /* ensures full height in grid */
}

.project-card.visible {
  opacity: 1;
  transform: translateY(0);
}



.project-card:hover {
  transform: translateY(-8px);
    box-shadow:
    0 0 10px white,
    0 0 20px rgb(99, 178, 194),
    0 0 30px rgb(219, 131, 175);
}

.project-card img {
  width: 100%;
  height: 180px; /* consistent height for all images */
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.projects-section h2 {

  font-size: 46px;
 text-align: center;
 padding-bottom: 80px;

}

.projects-section h3 {
  font-size: 16px;
  margin: 10px 10px 0;
  color: black;
}

.projects-section p {
  font-size: 14px;
  margin: 8px 10px;
  color: black;
  flex-grow: 1; /* stretches this content to push link down */
}

.tags {
  margin: 10px;
}

.tags span {
  background: #4a0478;
  margin: 4px;
  padding: 4px 8px;
  border-radius: 20px;
  font-size: 12px;
  display: inline-block;
}

.project-links {
  margin: 10px;
}

.project-links a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  transition: color 0.3s ease;
}

.project-links a:hover {
  color: #4078c0;
}

.project-links i {
  font-size: 18px;
}



.timeline-section {
  background: linear-gradient(rgb(0, 0, 0), rgb(44, 3, 44), rgb(9, 15, 19));
  padding: 120px 40px;
  color: #fff;
  position: relative;
  
}

.timeline-content:hover {
  transform: translateY(-5px);
   box-shadow:
    0 0 10px white,
    0 0 20px rgb(99, 178, 194),
    0 0 30px rgb(219, 131, 175);
}
.timeline-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  color: #fff;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: #ffffff;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 12px rgba(246, 245, 245, 0.9);
  
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}

.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 0%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border: 4px solid #ffffff;
  top: 20px;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(246, 245, 245, 0.9);
}

.timeline-item.left::after {
  right: -10px;
}

.timeline-item.right::after {
  left: -10px;
}

.timeline-content {
  background-color: #fff;
  color: #000;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 3;
  position: relative;
}

.timeline-date {
  font-size: 14px;
  color: #666666;
  margin-bottom: 10px;
  display: inline-block;
}

.tech-tags {
  margin-top: 10px;
}

.tech-tags span {
  background: #6c0284;
  color: #ffffff;
  margin: 5px 5px 0 0;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  display: inline-block;
}

/* Tablet and smaller devices */
@media screen and (max-width: 768px) {
  .timeline::after {
    left: 10px;
    transform: none;
  }

  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 25px;
    left: 0 !important;
  }

  /* Keep negative margin for right items */
  .timeline-item.right {
    margin-left: -570px; /* your original negative margin */
  }

  .timeline-item::after {
    left: 10px;
  }

  .timeline-content {
    margin: 0;
  }
}

/* Phone devices (max-width 480px) */
@media screen and (max-width: 480px) {
  .timeline {
    padding-left: 15px;
    padding-right: 15px;
  }

  .timeline::after {
    left: 8px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 40px;
    padding-right: 15px;
    left: 0 !important;
  }

  /* Keep negative margin but reduce it to avoid overflow */
  .timeline-item.right {
    margin-left: -300px; /* reduce negative margin for smaller screen */
  }

  .timeline-item::after {
    left: 8px;
  }

  .timeline-content {
    margin: 0;
    font-size: 14px;
  }
}



.footer {
  background: var(--footer-bg, linear-gradient(135deg, #0b132b, #1f2a54, #3e497a));
  color: #d8e3e7;
  padding: 50px 40px 25px;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.03em;
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.03);
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-left, .footer-right {
  flex: 1 1 350px;
  margin: 10px;
  padding: 0 15px;
  box-sizing: border-box;
}

.footer-left {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-left h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
  color: #f5f7fa;
  text-shadow: 0 0 5px #9fa8da;
}

.footer-left p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 8px 0;
  color: #c5d0e6;
  transition: color 0.3s ease;
}

.footer-left p:hover {
  color: #aab9f5;
  cursor: default;
}

.footer-right p {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #c5d0e6;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.footer-email {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #a3c8ff;
  font-weight: 600;
  font-size: 1.15rem;
  text-decoration: none;
  margin-bottom: 20px;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.footer-email:hover {
  border-bottom: 2px solid #a3c8ff;
  color: #d0e6ff;
}

.gmail-icon {
  flex-shrink: 0;
  filter: drop-shadow(0 0 1px #7b9fff);
  transition: transform 0.3s ease;
}

.footer-email:hover .gmail-icon {
  transform: scale(1.15);
}

.back-to-top {
  position: fixed !important;
  bottom: 30px;
  right: 30px !important;
  left: auto !important;
  z-index: 9999;

  background: linear-gradient(135deg, #5b2647, #7873f5);
  color: white;
  border: none;
  border-radius: 50%;
  padding: 14px 16px;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(212, 185, 201, 0.7), 0 0 20px rgba(142, 139, 240, 0.7);
  transition: background 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  pointer-events: none; /* disable clicking when hidden */
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto; /* enable clicking when visible */
}

.back-to-top:hover {
  background: linear-gradient(135deg, #ff4ab3, #615de8);
  transform: scale(1.15);
}


.footer-btn {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: #fff;
  border: none;
  padding: 14px 36px;
  font-size: 1.15rem;
  border-radius: 35px;
  cursor: pointer;
  box-shadow:
    0 4px 15px rgba(102, 126, 234, 0.6),
    0 0 8px rgba(118, 75, 162, 0.8);
  transition: all 0.4s ease;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: inline-block;
}

.footer-btn:hover {
  background: linear-gradient(45deg, #8a92f9, #9e6fd9);
  box-shadow:
    0 6px 20px rgba(138, 146, 249, 0.8),
    0 0 15px rgba(158, 111, 217, 1);
  transform: scale(1.05);
}

.footer-bottom {
  margin-top: 45px;
  font-size: 0.9rem;
  color: #a1afc9;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.03em;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-left {
    border-right: none;
    padding-bottom: 30px;
  }
  .footer-left, .footer-right {
    flex: unset;
    width: 100%;
    padding: 0;
  }
}
