@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');



:root {
  --background-color: #ffffff;
  --default-color: #000000;
  --heading-color: #2d465e;
  --accent-color: #0092d8;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* Nav Menu Colors  */
:root {
  --nav-color: #212529;
  --nav-hover-color: #0092d8;
  --nav-mobile-background-color: #ffffff;

}

body {
  font-family: "Manrope", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  overflow-x: hidden;
  background-color: white;
}


/* header */
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0px;
  transition: all 0.5s;
  z-index: 997;

}


.header .header-container {
  background: var(--surface-color);
  border-radius: 45px;
  padding: 0px 55px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  text-decoration: none;

}

.scrolled .header .header-container {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);

}

.header .logo {
  line-height: 1;
  padding-left: 5px;
  margin: -17px;
}

.header .logo img {
  max-height: 140px;
  margin-right: 8px;

}

.navmenu a {
  text-decoration: none;
  background-color: #ffffff;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {

  text-decoration: none;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.navmenu .dropdown ul {
  background-color: white;
  padding: 0;

  margin: 0;
  list-style: none;
}

/* Optional: Style the dropdown items */
.navmenu .dropdown ul li a {
  color: black;
  padding: 15px 15px;
  text-decoration: none;
  display: block;
  padding-bottom: 21px !important;
}

.navmenu .dropdown ul li a.last-child {
  padding-bottom: 10px !important;
}

.navmenu .dropdown ul li {
  color: black;

  margin-top: -9px;
  text-decoration: none;
  display: block;
}

/* Optional: Add hover effect */
.navmenu .dropdown ul li a:hover {
  background-color: var(--accent-color);
}


@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
    padding-left: 30px;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: 100%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    right: 100%;
    visibility: visible;
    width: 115%;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {

  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;

  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}




/* hero */

.hero-section {
  background-image: url('pics/background\ hero\ pic.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1800px;
  /* Sets a max width for the container */
  width: 100%;
  height: 800px;
  margin: 0 auto;
  /* Centers the section itself in its container */
  position: relative;
  overflow: hidden;

}

.col-md-6 {
  padding: 0;
  /* Remove padding in columns */
}

.order-management-blue {
  color: var(--accent-color);
  font-weight: bold;
}

h1.display-4,
.lead {
  margin: 0 70px;
  text-align: left;
  font-size: 3rem;
  font-weight: bolder
}



.custom-image {
  width: 800px;
  height: 500px;

  position: relative;

  /* Fade from right to left */
}

.lead {
  margin-top: 20px;
  color: #fff;
}

.btn-purple {
  background-color: var(--accent-color);
  /* Customize this shade if needed */
  color: white;
  border-radius: 25px;
  padding: 12px 25px;

  text-align: center;

  display: inline-block;

  margin-top: 20px;

  margin-left: 60px;
}

.btn-purple:hover {
  background-color: #000000;
  color: white;
}

/* Quick Start Package */
.quickstart-container {
  background: #ffffff;
  color: #333;
  max-width: 1250px;
  margin: 0 auto;

}


.quickstart-header {
  font-size: 2.5rem;
  font-weight: bold;
}

.quickstart-subtext {
  font-size: 1.2rem;
  color: #000000;

  margin: auto;
  text-align: left;
}

.divider {
  width: 100px;
  height: 4px;
  background: #007bff;
  border-radius: 10px;
  margin-top: 10px;
}


.quickstart-item {
  background: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  border: 1px solid #ddd;
  height: 400px;
  width: 400px;

  display: flex;
  flex-direction: column;
  justify-content: space-around;
}


.quickstart-item p {
  flex-grow: 1;
}


.quickstart-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}


.quickstart-title a {
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 25px;
  color: #222;
  text-align: left;
  text-decoration: none;
}

.quickstart-title a:hover {

  color: var(--accent-color);

}

.quickstart-title a {
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 15px;
  color: #000000;
  text-align: left;
}


.quickstart-text {
  font-size: 1rem;
  color: #000000;
  text-align: left;
}

.quickstart-image {
  width: 360px;
  height: 200px;

}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 55px;
  height: 55px;
  margin: -50px;
  top: 65%;
  background: #007bff;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

.carousel-control-icon {
  font-size: 28px;
}

.carousel-control-icon {
  font-size: 28px;
}


/* empoweringsection */

.empowering-container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.empowering-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.empowering-title {
  text-transform: uppercase;
  color: #ff7043;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 2px;
}

.empowering-subtitle {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.empowering-cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.empowering-card {

  width: 550px;
  background-color: #fff;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
}

.empowering-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.empowering-card-body {
  padding: 1rem;
}

.empowering-card-title {
  font-weight: 600;
  font-size: 1.25rem;
  margin: 1rem 0 0.5rem;
}

.empowering-card-text {
  color: #6c757d;
  font-size: 0.95rem;
}

/* fature */

.features-container {
  background-image: url('pics/featurepic.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  max-width: 1800px;
  height: 700px;
  margin: 0 auto;
  padding: 8rem 10rem;
  background-color: #000;
  color: #fff;
}



.features-heading .section-subtitle {
  text-transform: uppercase;
  color: #4395ff;
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 2px;

}

.features-heading .section-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.features-heading .section-highlight {
  font-style: italic;
  font-weight: 500;
}

.features-heading .section-description {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #d6d6d6;
}

.features-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.features-icons .feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.features-icons .feature-icon {
  font-size: 1.5rem;
  color: #4395ff;
}

/* how to oreder */

.HowtoOrder-container {
  background-image: url('pics/featurepic\ 2\ half.png');
  /* Add your image URL here */
  background-size: cover;
  background-position: center;
  max-width: 1800px;
  height: 700px;
  margin: 0 auto;
  text-align: right;
  /* Align the heading to the right */
  color: white;

  display: flex;
  align-items: center;
}

.text-container {
  text-align: left;
  max-width: 550px;
  margin-left: auto;

  color: white;

  padding-right: 150px;


}

.list-item {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
}

.list-item::before {
  content: ".";

  margin-right: 10px;

  font-weight: bold;

}


.for-whom-container {
  background-image: url('pics/featurepic 2 half.png');
  /* Ensure the image path is correct */
  background-size: cover;
  background-position: center;
  max-width: 1800px;
  /* Maximum width */
  height: 700px;
  /* Fixed height */
  margin: 0 auto;
  /* Centering the container */
  padding: 70px;
  /* Optional: Add some padding for better spacing */

}

.for-whom-container .row {
  display: flex;
  /* Use flexbox for layout */
  justify-content: center;
  /* Center the content horizontally */
  align-items: flex-start;
  /* Align items to the start */
  max-width: 1500px;
  margin: 0 auto;
}

.for-whom-container h1 {
  text-align: left;
  /* Text alignment */
  color: #000000;
  /* Heading color */
  padding-top: 150px;
  max-width: 500px;
}

.for-whom-container p {
  text-align: left;
  /* Text alignment */
  color: #000000;
  /* Heading color */
  max-width: 500px;
}

.icon-hedss h3 {
  margin-top: -10px;
  font-size: 1rem;
  color: rgb(0, 0, 0);
  text-align: left;
  /* Text alignment */
}

.icon-hedss p {
  font-size: 1rem;
  color: rgb(0, 0, 0);
  text-align: center;
  /* Text alignment */
  text-align: justify;
  max-width: 300px;
}

.for-whom-container button {
  background-color: #ffffff;
  color: #000000;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
}

.for-whom-container button:hover {
  background-color: #000000;
  transition: background-color 0.3s ease;
}

.forwhomicons {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
  background-color: #ffffff3d;
  color: #000000;
}





/* processing */
.Processing-section {
  background-image: url('pics/processinghero\ pic.png');
  /* Add your background image URL here */
  background-size: cover;
  background-position: center;
  padding: 60px 0;

  max-width: 1800px;
  margin: 0 auto;

}

.Processing-container {

  max-width: 1800px;
  margin: 0 auto;
  text-align: center;
  color: white;
  /* Text color */
}

.icons-container {
  margin-top: 30px;
}

.icon {
  font-size: 2rem;
  /* Adjust icon size */
  margin: 0 15px;
  /* Spacing between icons */
}

.icons-container {
  margin-top: 30px;
}

.icon-wrapper {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  /* Semi-transparent white background */
  border-radius: 50%;
  /* Round shape */
  padding: 20px;
  /* Space around the icon */
  margin: 0 15px;
  /* Spacing between icons */
  transition: background-color 0.3s;
  /* Transition effect */
}

.icon-wrapper:hover {
  background-color: rgba(255, 255, 255, 0.5);
  /* Change on hover */
}

.icon {
  font-size: 2rem;
  /* Adjust icon size */
  color: white;
  /* Icon color */
}



/* best sol */
.BestSolution-section {
  background-color: #ffffff;
  /* Light background color */
  padding: 50px 20px;
  /* Add some padding for better spacing */
}

.BestSolution-container {
  display: flex;
  justify-content: center;
  /* Centers content horizontally */
  align-items: center;
  /* Centers content vertically */
  gap: 40px;
  /* Adds space between image and content */
  max-width: 1800px;
  margin: 0 auto;
  color: #343a40;
  /* Dark text color */
}

.BestSolution-image {
  max-width: 1000px;
  /* Makes the image responsive and limits its size */
  height: auto;
  /* Maintains aspect ratio */
  object-fit: cover;
  /* Ensures the image looks good in the space */
}

.BestSolution-content {
  display: flex;
  flex-direction: column;
  align-items: left;
  /* Centers the text content */
  text-align: left;
  /* Centers the text */
  max-width: 800px;
  /* Limits the width of the text content */
}

.BestSolution-content h2 {
  font-size: 2rem;
  /* Enhances heading size */
  margin-bottom: 20px;
  /* Adds space between heading and paragraph */
  text-align: left;
}

.BestSolution-content p {
  font-size: 1.1rem;
  /* Increases readability */
  margin-bottom: 30px;
  /* Adds space before the button */
  line-height: 1.6;
  /* Improves readability */
  text-align: left;
}

.BestSolution-button {
  padding: 12px 24px;
  /* Increases button size */
  font-size: 1.1rem;
  /* Increases button text size */
  cursor: pointer;
  border: none;
  background-color: #007bff;
  color: #fff;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  max-width: 150px;


}

.BestSolution-button:hover {
  background-color: #0056b3;
}





/* test */
.test-cont {
  background-image: url('pics/foodddback.png');
  background-size: cover;
  background-repeat: no-repeat;
  height: 600px;
  max-width: 1800px;
  margin: 0 auto;
  margin-top: -3rem;
}

.testimonial-heading {
  font-weight: bold;
  font-size: 3rem;
  padding-top: 80px;
  color: white;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-carousel {

  padding: 2rem;
  border-radius: 0.5rem;
  text-align: center;
  color: white;
  max-width: 900px;
  margin: 0 auto;

}





/* best sol */
.BestSolution-sectiontwo {
  background-color: #ffffff;
  /* Light background color */
  padding: 50px 20px;
  /* Add some padding for better spacing */
}

.BestSolution-containertwo {
  display: flex;
  justify-content: center;
  /* Centers content horizontally */
  align-items: center;
  /* Centers content vertically */
  gap: 40px;
  /* Adds space between image and content */
  max-width: 1800px;
  margin: 0 auto;
  color: #343a40;
  /* Dark text color */
}

.BestSolution-image {
  max-width: 1000px;
  /* Makes the image responsive and limits its size */
  height: auto;
  /* Maintains aspect ratio */
  object-fit: cover;
  /* Ensures the image looks good in the space */
}

.BestSolution-contenttwo {
  display: flex;
  flex-direction: column;
  align-items: left;
  /* Centers the text content */
  text-align: left;
  /* Centers the text */
  max-width: 600px;
  margin: 0 auto;
  /* Limits the width of the text content */
}

.BestSolution-contenttwo h2 {
  font-size: 2rem;
  /* Enhances heading size */
  margin-bottom: 20px;
  /* Adds space between heading and paragraph */
  text-align: left;
}

.BestSolution-contenttwo p {
  font-size: 1.1rem;
  /* Increases readability */
  margin-bottom: 30px;
  /* Adds space before the button */
  line-height: 1.6;
  /* Improves readability */
  text-align: left;
}

.BestSolution-button {
  padding: 12px 24px;
  /* Increases button size */
  font-size: 1.1rem;
  /* Increases button text size */
  cursor: pointer;
  border: none;
  background-color: #007bff;
  color: #fff;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  max-width: 150px;


}

.BestSolution-button:hover {
  background-color: #0056b3;
}


/* why choose */
.whychoose-container {
  background: url('pics/whychoose-heropic.png') no-repeat center center;
  background-size: cover;
  padding: 10px 90px;
  color: white;
  position: relative;
  height: 400px;
  max-width: 1800px;
  margin: 0 auto;
}

.whychoose-heading {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 2rem;
  max-width: 500px;
  font-weight: bold;
}

.whychoose-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;

}

.left-image img {
  max-width: 350px;
  height: 200px;
  margin-left: 90px;
  margin-top: 50px;


}

.right-text {
  max-width: 580px;
  font-size: 1rem;
  padding-top: 90px;
}











/* qs */

.faq-section {
  padding: 40px;
  background: #ffffff;
  /* Light background for better contrast */
  margin: 0 auto;
}

h2.text-center {
  margin-bottom: 40px !important;
  /* Reduce margin between heading and questions */
}

p.lead {
  font-size: 1.125rem;
  color: #555;
  font-weight: 300;
}

.accordion-button {
  margin-left: -100px;
  width: 1000px;

  font-size: 1.125rem;
  padding: 15px;
  background-color: #fff;
  color: #333;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.accordion-button:hover {
  background-color: #e9f5ff;
  color: #b35a00;
}

.accordion-button:not(.collapsed) {
  background-color: #f56004;
  color: #fff;
  border-color: #fd790d;
  font-weight: bold;
}

.accordion-body {
  margin: 0 auto;
  width: 1000px;
  margin-left: -100px;
  padding: 20px;
  line-height: 1.7;
  font-size: 1rem;
  color: #444;
  background-color: #fff;
  border: 1px solid #ddd;
}

.accordion-item {
  border: none;
}

.accordion-item+.accordion-item {
  margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
  h2.text-center {
    font-size: 2rem;
  }

  .accordion-button {
    font-size: 1rem;
    padding: 12px;
  }

  .accordion-body {
    font-size: 0.95rem;
  }
}





/* Footer */
.footer {
  color: var(--default-color);
  font-size: 14px;
  position: relative;
  background-image: url('pics/darkergreyfooter.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  font-family: "Manrope", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  color: white;
}

.fot-btn {
  transition: background-color 0.3s ease;
  /* Smooth transition */
  background-color: var(--accent-color);
  color: #fdfdfd;
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  transition: 0.3s;
  text-decoration: none;
}

.fot-btn:hover {
  background-color: black !important;
  /* Change to black on hover */
  color: white;
  /* Optional: change text color to white on hover */
}

.footer .footer-about .logo img {
  max-height: 160px;
  margin-right: 6px;
  width: 200px;

}

.footer-contact {
  margin-top: -40px;
}

.footer .footer-about p {
  font-size: 16px;
  padding-left: 10px;
  color: white;
}

.footer .social-links a {

  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 20px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 20px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  margin-top: 60px;

}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;

}

.footer .footer-links ul li a {
  padding: 10px 0;
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  color: white;
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: rgb(255, 255, 255);
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

.footer-contact,
footer .footer-links ul li a:hover {
  color: var(--accent-color);
}

.contact-footer-links a{
  color: #ffffff;
  text-decoration: none;
}
