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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
}

.header {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 10px;
  grid-template-areas: 
    "logo nav contact";
  align-items: center;
  justify-content: center;
  padding: 10px;
  background-image: linear-gradient(red, rgb(151, 18, 18)); /* Light background for contrast */
  position: relative;
  color: white;
  height: 60px;
}

.header-mobile {display: none}

.logo {
  grid-area: logo;
  position: absolute;
  left: 5px;
  top: -10px;
  z-index: 1001; /* Adjust this value for the desired overflow */
}

.logo img {
  width: auto; 
  height: 150px; 
}

.nav {
  grid-area: nav;
  flex-grow: 1;
  display: flex; 
  justify-content: center;  
}

.nav-bar {
  list-style: none;
  display: flex; /* Arrange items horizontally */
  padding: 0; /* Remove default padding */

}

.nav-option {
  text-decoration: none;
  padding: 15px 20px;
  transition: background-color 0.3s, color 0.3s;
  color: white;
  font-weight: 500;
  border-radius: 10pxs;
}

.nav-option:hover {
  background-color: #ffcccc; /* Light red on hover */
  color: #900000; /* Darker red on hover */
}

.cta-button-header {
  grid-area: contact;
  margin-left: auto; /* Push the button to the right */
}

.cta-button-header a {
  text-decoration: none;
  color: #004eca;
  background-color: #ebfbff; 
  border: solid 1px #004eca;
  font-weight: 600;/* Bootstrap's red color */
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.cta-button-header a:hover {
  background-color: #1258c7;
  color: rgb(255, 255, 255); /* arker red on hover */
}

.cta-button-header a:active {
  background-color: #558ce4;
  color: rgb(255, 255, 255);
}

.services-cta a:hover {
  background-color: #1258c7;
  color: rgb(255, 255, 255);
}

.services-cta a:active {
  background-color: #558ce4;
  color: rgb(255, 255, 255);
}
.cta-button-header a:visited {
  text-decoration: none;
}

.menu-toggle {
  display: none;
}

.menu-toggle {
  display: none; /* Hidden by default */
  background: none;
  border: none;
  color: white;
  font-size: 24px; /* Size of hamburger icon */
  cursor: pointer;
}

.hero {
  position: relative; /* Change to relative for overlay */
  background-image: url('./DC-Cap-Hill-Night-HD.jpg'); /* Replace with actual image */
  background-size: cover;
  background-position: 50% 5%;
  width: 100%;
  color: white;
  padding: 100px 20px;
  text-align: center;
  height: 60vh;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay */
  z-index: 1;
}

.hero-content {
  position: relative; /* Ensure content appears above overlay */
  z-index: 2;
}

.stand-out {
  margin-top: 40px;
}

.hero-brag {
  position: relative; 
  bottom: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  align-items: center;
  color: white;
  width: 40%;
  max-width: 300px;
  background-color: rgba(197, 190, 190, 0.354);
  border-radius: 30px;
  margin-right: auto;
  margin-left: auto;
}

.hero-brag a {
  color: white;
  line-height: 40px;
  height: 40px;
}

.hero-brag div {
  display: flex;
  align-items: center;
  gap: 10px; 
}

.hero-brag img {
  width: 60px;
  object-fit: contain;
}

.hero p {
  margin-bottom: 20px;
}

.cta-button {
  background-color: #ff4d4d; /* Lighter Red */
  color: white;
  font-size: 1.2em;
  font-weight: 400;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #1258c7;
}
.cta-button:active {
  background-color: #4684e8;
}

.why-choose-us, .services-home, .testimonials, .cta-banner {
  padding: 60px 20px;
  text-align: center;
}

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


.reason-item, .service-item {
  background: #f4f4f4; /* Light background for items */
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Added transition */
}

.reason-item:hover, .service-item:hover {
  transform: scale(1.05); /* Scale effect on hover */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

.country:hover {
  transform: scale(1.05); 
}

.reason-item img, .service-grid img {
  object-fit: contain;
  width: 100%;
}

.service-grid img {
  max-height: 275px;
}

.services-cta a {
  position: relative;
  top: 30px;
  background-color: #ff4d4d; /* Lighter Red */
  color: white;
  font-size: 1.2em;
  font-weight: 400;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
}

.testimonials {
  position: relative;
  width: 80%; /* Adjust width as needed */
  margin: auto;
  overflow: hidden; /* Hide overflow to show one at a time */
  border: 1px solid #d9534f; /* Optional: border to define section */
  border-radius: 5px; /* Optional: rounded corners */
  padding: 20px; /* Space inside the box */
  background-color: #f8f9fa; /* Background color */
  margin-bottom: 20px;
}

.testimonial {
  display: none; /* Hide all testimonials initially */
  text-align: center; /* Center text */
}

.testimonial.active {
  display: block; /* Show the active testimonial */
}

.cta-banner {
  background: #ffe6e6; /* Very Light Red Background */
  padding: 20px 20px;
  border-radius: 5px;
}

.cta-banner p {
  margin-bottom: 20px;
}

/* -----------FOOTER-------------- */

footer {
  background-image: linear-gradient(red,rgb(145, 9, 9)); /* Dark Red */
  color: white;
  padding: 5px 0;
  text-align: center;
  margin: 0 auto;
}

.footer-small {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: center;
  gap: 5px;
  align-items: center;
  margin-bottom: 10px;
}

.footer-numbers1 {
  display: none;
}

.footer-small button {
  padding: 5px;
  font-size: 1.2em;
  color: white;
  padding: 5px 15px;
  background-color: green;
  border-radius: 4px;
  border: none;
}

.footer-content {
  width: 96vw;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 10px; /* Spacing between footer items */
}

.footer-left, .footer-center, .footer-right {
  text-align: center; /* Ensure full width for better alignment */
}

.footer-left {
  text-align: left;
  font-size: 0.8em;
}

.footer-left h3 {
  color: white;
  text-align: center;
}

.footer-left h4 {
  margin-bottom: 10px;
  text-align: center; /* Space below the title */
}

.social-links {
  list-style: none;
  display: flex;
  justify-content: center; /* Center the social links */
  align-items: center;
  gap: 20px; /* Space between icons */
  padding: 10px; /* Remove default padding */
  border-radius: 4px;
}

.social-links img {
  width: 40px; /* Uniform size for icons */
  transition: transform 0.3s ease; /* Smooth scaling effect */
}

.social-links .yelp img{
  width: 90px;
  object-fit: contain;
}

.social-links img:hover {
  transform: scale(1.1); /* Scale effect on hover */
}

.footer-right {
  text-align: center; /* Center the copyright text */
}

.footer-center {
  font-size: 0.9em; /* Smaller font for copyright text */
}

/* Responsive Adjustments */
@media (min-width: 768px) {
  .footer-content {
    flex-direction: row; /* Row layout on larger screens */
    justify-content: space-between; /* Space items evenly */
  }
  
  .footer-left, .footer-center, .footer-right {
    width: auto; /* Adjust widths for row layout */
  }
}

@media (max-width: 768px) {
  .hero-brag {
    display: none;
  }
}

/* EXTRA */


/* --------------SERVICES STYLING-------------------- */

/* Services Page Styles */
.services-page {
  padding: 20px;
  background-color: #f9f9f9; /* Light background for contrast */
}

.services-grid {
  display: flex; /* Use flexbox for alignment */
  flex-wrap: wrap; /* Allow items to wrap onto the next line */
  justify-content: center; /* Center items horizontally */
  gap: 20px; /* Space between items */
}

.service-category {
  background-color: #fff; /* White background for each category */
  border: 1px solid #ddd; /* Light border for definition */
  border-radius: 8px; /* Rounded corners */
  padding: 20px; /* Inner spacing */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  transition: transform 0.3s; /* Smooth hover effect */
  flex: 0 1 calc(25% - 20px); /* Flexible width, adjusts based on available space */
  max-width: 300px; /* Set a maximum width for categories */
  min-width: 250px; /* Set a minimum width for categories */
}

.service-category:hover {
  transform: translateY(-5px); /* Lift effect on hover */
}

.category-image {
  width: 100%; /* Responsive image */
  height: auto; /* Maintain aspect ratio */
  border-radius: 5px; /* Rounded corners */
  margin-bottom: 15px; /* Space below the image */
}

.service-item {
  margin-bottom: 15px; /* Space between service items */
}

.service-item h4 {
  font-size: 1.2em; /* Slightly larger title */
  color: #333; /* Darker text for readability */
}

.service-item p {
  font-size: 0.9em; /* Normal text size */
  color: #666; /* Lighter text for description */
}

/* Heading Styles */
h2 {
  text-align: center; /* Center the main heading */
  margin-bottom: 30px; /* Space below heading */
  font-size: 2em; /* Larger font for emphasis */
  color: #2c3e50; /* Dark color for contrast */
}

h3 {
  margin-top: 20px; /* Space above category headings */
  font-size: 1.5em; /* Larger category titles */
  color: #0f0546; /* Color for category titles */
  padding-bottom: 5px; /* Space below category titles */
}



.services-car-types {
  padding: 60px 20px;
  text-align: center;
}

.car-section {
  width: 90vw;
  margin: 0 auto 40px auto;
  padding: 20px;
  padding-top: 10px;
  background-color: #bbbbbb;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.car-section h3 {
  color: #3e3e3e; /* Dark Red */
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1.6em;
}

.country {
  margin: 5px auto 20px auto;
  width: 80%;
  background-color: #ebebeb;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 5px;
}

.country h4 {
  margin-top: 5px;
  color: #535353; /* Lighter Red */
  font-size: 1.3em;
  margin-bottom: 10px;
}

.car-brands {
  list-style: none;
  padding: 5px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Adjusts to screen size */
  gap: 20px;
  justify-items: center;
  
}

.car-brands li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  align-items: top;
  overflow: hidden;
  font-size: 0.5em;
  width: 80px;
}

.car-brands img {
  height: auto; /* Adjust logo size */
  width: 100%;
  height: 65px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 5px;
}

/* --------------ABOUT US--------------- */

.about-us h1 {
  text-align: center;
  margin-bottom: 20px;
  color: #2c3e50;
}

.about-us {
  margin: 5vh auto;
}
.about-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.videoFrame {
  text-align: center;
  margin: 20px 0;
}
iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 8px;
}
.mission {
  margin-top: 20px;
  font-size: 1.1em;
  line-height: 1.6;
}

.about-content a {
  text-decoration: underline;
  color: black;
}

/* -------------------CONTACT------------------ */
.contact-body {
  background-color: #f8f8f8;
}

.contact-us {
  background: transparent;
  padding: 40px 0;
  width: 90vw;
  margin-top: 80px;
  margin-right: auto;
  margin-left: auto;
}


.page_title {
  text-align: center;
  margin-bottom: 20px;
}

.row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}

.col-12 {
  flex: 0 0 100%;
}

.col-lg-4 {
  flex: 0 0 30%;
}

.col-lg-8 {
  flex: 0 0 60%;
}

/* Contact Info Styles */

.page-contact_info {
  background-color: transparent;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  height: 500px;
  color: black;
}

.info {
  height: 100%;
}

.info_body {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.info_wrapper {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 100%;
}

.info-body .socials {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-address {
  font-size: 1.1em;
  font-weight: 600;
  text-align: center;
  grid-area: address;
}

.col-lg-4 {
  height: 500px;
  background-color: white;
  border-radius: 8px;
}

.headline {
  margin-bottom: 5px;
  text-align: center;
  grid-area: welcome;
}

.contacts {
  grid-area: contact-info;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}


.phone, .email-1, .work-time {
  display: flex;
  align-items: start;
}

.email-1 svg {
  margin-right: 10px;
}

.svg_element-ui a {
  vertical-align: center;
  margin-top: auto;
  margin-bottom: auto;
}


.svg_element-ui-hours {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  gap: 20px;
  font-weight: 600;
}

.svg-clock {
  width: 8%;
  text-align: right;
}

.svg-clock img {
  width: 100%;
  object-fit: contain;
}

.hours {
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.svg_element-ui {
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.svg_element-ui .phone-icon-container {
  width: 10%;
}

.phone-icon {
  height: 25px;
  width: 100%;
  object-fit: contain;
}


.svg_element-ui .phone-number {
  width: 100%;
  text-decoration: none;
  font-weight: 400;
}

.svg_element-ui svg {
  height: 25px;
}

.phone-number a{
  text-decoration: none;
  color: black;
  text-align: center;
}

.phone .number, .email-1 a, .work-time .content {
  margin-left: 10px;
}

.email-1 a{
  display: flex;
  align-items: center;

}

.work-time {
  grid-area: hours;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.work-time .content { 
  width: 100%;
}

.info_wrapper .info_body svg {
  height: 25px;
  width: auto;
}

.social {
  margin: 10px auto;
  width: 90%;
  grid-area: socials;
}

.list-inline{
  width: 100%;
  list-style-type: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: nowrap;
}

.list-inline > li {
  display: inline-block;
}

.widget-social-icons img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.svg_element-ui svg {
  width: 25px;
  height: 25px;
}

.social .list-inline .yelp img {
  width: 80px;
}

.col-lg-8 {
  background: white;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 45vw;
  height: 500px;
}

.col-12 form {
  width: 80%;
  margin: 0 auto;
}


.form_group {
  margin-bottom: 15px;
}

.form_group textarea {
  height: 80px;
}

.form_input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form_button {
  background: #b22222;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
  font-weight: 500;
}

.form_button:hover {
  background: #920707;
}

.contact-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  height: 90%;
}


.contact-form div {
  width: 100%;
}

.contact-form .form-button {
  width: fit-content;
}

.contact-form button {
  width: 120px;
  height: 40px;
}

.google-maps-container {
  width: 90%;
  margin: 40px auto;
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.google-maps-container h1 {
  text-align: center;
}

/* Media Queries */
@media (max-width: 768px) {
  .col-lg-4, .col-lg-8 {
      flex: 0 0 100%;
  }
}


@media (max-width: 480px) {

.google-maps-container {
  width: 100%;
  margin: 40px auto;
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

  .header {
    display: none;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #fff;
    color: #333;
  }

  .header-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40px;
    position: relative;
    background-color: #de2626;
    max-height: 60px;
    overflow: visible;
    padding: 0 10px; /* Padding for sides */
  }

  .services-page {
    margin-top: 50px;
  }

  .header-mob-container {
    width: 100%;
    height: 100%;
    line-height: 20px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
  }

  .services-page {
    margin-top: 90px;
  }
  .about-us {
    margin-top: 90px;
  }

  .menu-toggle {
    width: 80px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    cursor: pointer;
  }

  .hamburger {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 10px;
    transition: 0.3s;
    position: relative;
    top: 0px;
    left: 0px;
    z-index: 100002;
  }

  .hamburger:before, .hamburger:after {
    content: "";
    position: absolute;
    height: 3px;
    width: 20px;
    background-color: white;
    border-radius: 10px;
    left: 0;
  }

  .hamburger:before {
    top:-7px;
  }

  .hamburger:after {
    top: 7px;
    width: 20px;
  }

  .menu-toggle-mystery {
    position: absolute;
    width: 25px;
    height: 100%;
    z-index: 100000005;
    cursor: pointer;
    opacity: 0;
  }

  .menu-toggle input:checked ~ .hamburger {
    background-color: transparent;
  }

  .menu-toggle input:checked ~ .hamburger:before {
    top: 0;
    transform: rotate(-45deg);
    width: 25px;
  }

  .menu-toggle input:checked ~ .hamburger:after {
    top: 0;
    transform: rotate(45deg);
    width: 25px;
  }

  .menu-toggle input:checked ~ .nav {
    left: 0;
  }

  .mobile-logo {
    grid-area: logo;
    width: 200px;
    height: 100%;
    z-index: 1001; /* Adjust this value for the desired overflow */
  }
  
  .mobile-logo img {
    grid-area: logo;
    width: 100%; 
    object-fit: contain;
  }

  .cta-button-header {
    margin-left: auto;
    margin-right: 5px; 
    height: 90%;
    display: flex;
    align-items: center;
  }

  .cta-button-header a {
    text-decoration: none;
    color: #fff; /* White text */
    background-color: #1358b9; /* Bootstrap's red color */
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.7em;
    transition: background-color 0.3s;
  }




  /* Navigation Styles */
  .nav {
    width: 20vw;
    justify-content: start;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0;
    left: -20vw;
    height: 100%;
    background-color: rgba(255, 26, 26, 0.594);
    z-index: 10001;
  }

  .nav-bar {
    margin-top: 50px;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 30px;
    font-size: 0.5em;
  }
  .nav-option:hover {
    background-color: #ffcccc;
    color: #900000;
  }

  .nav-option:active {
    background-color: transparent;
    border: solid 1px white;
  }


  .hero {
  position: relative; /* Change to relative for overlay */
  background-image: url('./DC-Cap-Hill-Night-HD.jpg'); /* Replace with actual image */
  background-size: cover;
  background-position: 50% 5%;
  width: 100%;
  color: white;

  text-align: center;
  height: 70vh;
  overflow: hidden;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    align-items: center;
  }

  .hero-content h1 {
    margin-top: 20px;
  }
  .hero-brag {
    width: 80px;
  }
  .hero-brag a {
    display: block;
    color: white;
    min-width:800px;
  }
  
  .hero-brag div {
    display: flex;
    align-items: center;
    gap: 10px; 
  }
  
  .hero-brag img {
    width: 60px;
    object-fit: contain;
  }

  .brag-stars{
    min-width: 60px;
  }

  /* ------------------SERVICES PAGE --------------------------- */

.services-car-types {
  padding: 60px 20px;
  text-align: center;
}

.car-section {
  width: 90vw;
  margin: 0 auto 40px auto;
  padding: 20px;
  padding-top: 10px;
  background-color: #bbbbbb;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.car-section h3 {
  color: #3e3e3e; /* Dark Red */
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1.6em;
}

.country {
  margin: 5px auto 20px auto;
  width: 80%;
  background-color: #ebebeb;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 5px;
}

.country h4 {
  margin-top: 5px;
  color: #535353; /* Lighter Red */
  font-size: 1.3em;
  margin-bottom: 10px;
}

.car-brands {
  list-style: none;
  padding: 5px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  
}

.car-brands li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  align-items: top;
  overflow: hidden;
  font-size: 0.5em;
  width: 80px;
}

.car-brands img {
  height: auto; /* Adjust logo size */
  width: 100%;
  height: 65px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 5px;
}
  /* ------------------ FOOTER MEDIA QUERIES ----------------------*/

  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .footer-content div {
    width: 100%;
    text-align: center;
  }
  .social-links {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center; /* Center the social links */
    align-items: center;
    gap: 20px; /* Space between icons */
    padding: 0; /* Remove default padding */
  }
  
  .social-links img {
    width: 40px; /* Uniform size for icons */
    transition: transform 0.3s ease; /* Smooth scaling effect */
  }

  .footer-center {
    width: 100%;
    font-size: 0.7em;
    opacity: 0.8;
  }
  
  .social-links .yelp img{
    width: 90px;
    object-fit: contain;
  }
  
  .footer-right {
    text-align: center; /* Center the copyright text */
  }
  
  .footer-center {
    font-size: 0.9em; /* Smaller font for copyright text */
  }

  .footer-numbers1 {
    display: none;
  }

  .footer-small {
    margin: 5px auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: white;
  }
  
  .footer-small button {
    width: 160px;
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
    margin-bottom: 10px;
  }

  .footer-small button:hover {
    background-color: #ff7c7c;
  }

}
