footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 70vh;
  
}
.section {
  flex: 1; /* Equal width for all sections */
  text-align: center;
  color: white;
  font-size: 16px; /* Reduce global font size */
  padding: 20px;
}
                                                /* Section 1 */
.section1 {
  display: flex;
  align-items: center; /* Align content vertically */
  justify-content: center; /* Center content horizontally */
  gap: 20px; /* Add spacing between logo and heading */
  border: 2px hidden red;
  margin-top: -70px;
  margin-left: 60px;
  margin-right: -230px;
}

.section1 img {
  width: 130px; /* Increased size of the logo */
  height: auto;
}

.section1 h1 {
  font-size: 20px; /* Reduced heading size */
  margin: 0;
  text-align: left; /* Align heading text to the left */
  color: white;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: 900;
}

                                                /* Section 2 */
.section2 {
  border: 2px hidden rgb(9, 255, 0);
  text-align: left;
  padding: 0px; /* Smaller padding */
  color: white;
  font-family: Arial, sans-serif;
  font-size: 12px; /* Decrease text size */
  line-height: 1.5; /* Adjust line spacing for readability */
  margin-left: 400px;
  margin-top: -60px;
}

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

.contact-list li {
  margin-bottom: 10px; /* Reduce spacing between items */
}

.contact-list i {
  margin-right: 20px; /* Adjust spacing for icons */
  font-size: 12px; /* Reduce icon size */
  vertical-align: middle;
}

.contact-list a {
  color: #00ff00;
  text-decoration: none;
  font-size: 12px; /* Decrease link text size */
}

.contact-list a:hover {
  text-decoration: underline;
}

.contact-list li i,
.contact-list li a {
  display: inline-block; /* Place icons and links in one line */
}

.contact-list li b {
  font-size: 16px;
  display: inline;
  margin:0;
}
.contact-list li a {
  color: #f49d1a;
  text-decoration: none;
  font-size: 12px;
  margin-left: 5px; /* Add a small space if needed between the label and email */
  display: inline; /* Ensure it stays on the same line */
}

.contact-list li {
  line-height: 1.6; /* Reduce line spacing within each list item */
}


                                                /* Section 3 */
/* Main container for the layout */
.container {
  display: flex;
  align-items: center;
  position: relative;
  border:  2px hidden rgb(201, 250, 86);
}

/* Red dot styles */
.red-dot {
  width: 45px;
  height:45px;
  background-color: #f49d1a;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  text-decoration: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

/* Icons inside red dots */
.red-dot i {
  font-size: 20px;
}

/* Red dots positioned to form an arrow */
.red-dot:nth-child(1) {
  top: -58px;
  left: 95px;
  background-color: rgb(18, 140, 126);
}

.red-dot:nth-child(2) {
  top: -38px;
  left: 40px;
  background-color: red;
}

.red-dot:nth-child(3) { /* TikTok icon */
  top: 9px; /* Adjusted position to match image */
  left: 10px;
  background-color: rgb(43, 43, 43); /* TikTok's signature color */
}

.red-dot:nth-child(4) {
  top: 57px;
  left: 40px;
  background-color: rgb(225, 48, 108);
}

.red-dot:nth-child(5) {
  top: 70px;
  left: 97px;
  background-color: rgb(24, 119, 242);
}

/* Styling for the white card */
.white-card {
  width: 210px;
  height: 55px;
  background-color: white;
  border-radius: 30px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 60px; /* Offset to align with red dots */
  position: relative;
  padding-left: 30px;
}
/* Text inside the white card */
.text {
  font-size: 18px;
  color: #333;
}

/* Hover effect for red dots */
.red-dot:hover {
  transform: scale(1.1);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.bottom-bar {
  width: 100%;
  padding: 10px 0px;
  box-sizing: border-box;
  background-color: #ffad4d; /* Background color */
  color: #fff; /* Text color */
  text-align: center; /* Center align text */
  bottom: 0;
  left: 0;
}

/* Ensure responsive typography */
.bottom-bar p {
  margin: 0;
  font-size: 1rem; /* Base font size */
}

                /* Default styles for larger screens (desktop) are already in place */

                          /* Medium devices (tablets, 768px and up) */
@media (max-width: 991px) {
  footer {
    flex-direction: column; /* Stack sections vertically */
    height: 100vh;
    padding: 20px 0;
  }

  .section {
    margin: 0 auto; /* Center sections */
    padding: 10px;
    text-align: center; /* Center align text for smaller screens */
  }

  .section1 {
    gap: 10px;
    margin-top: -50px;
    border: 2px hidden rgb(39, 26, 182);
  }
  .section1 img {
    width: 70px;
  }
  .section1 h1 {
    font-size: 14px;
  }
 
  .section2 {
    font-size: 8px;
    line-height: 1.0;
    text-align: left;
    border: 2px hidden rgb(32, 193, 11);
    margin-top: -45px;
  }

  .contact-list li {
    font-size: 10px;
    line-height: 1.1;
  }

  .contact-list a {
    font-size: 10px;
  }
  .section2 ul {
    padding: 0;
  }

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

  .section3 .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border: 2px hidden red;
  }

  .red-dot {
    width: 38px;
    height: 38px;
    font-size: 18px;
    margin: 0;
    position: relative;
  }

  .red-dot:nth-child(1),
  .red-dot:nth-child(2),
  .red-dot:nth-child(3),
  .red-dot:nth-child(4),
  .red-dot:nth-child(5) {
    position: absolute;
  }
  /* Red dots positioned to form an arrow */
.red-dot:nth-child(1) {
  top: -30px;
  left: 105px;
}

.red-dot:nth-child(2) {
  top: -15px;
  left: 50px;
}

.red-dot:nth-child(3) { /* TikTok icon */
  top: 20px; /* Adjusted position to match image */
  left: 16px;
}

.red-dot:nth-child(4) {
  top: 55px;
  left: 52px;
}

.red-dot:nth-child(5) {
  top: 68px;
  left: 97px;
}

.white-card {
  width: 210px;
  height: 55px;
  background-color: rgb(255, 255, 255);
  border-radius: 30px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 30px;
  margin-left: 10px; /* Increase this value to push it further right */
}

}

                                      /* Small devices (mobile phones, 576px and below) */
@media (max-width: 576px) {
  footer {
    height: 100vh;
    padding: 15px;
  }

  .section {
    padding: 5px;
  }

  .section1 {
    gap: 10px;
    margin-top: -50px;
    border: 2px hidden rgb(39, 26, 182);

  }

  .section1 img {
    width: 65px;
  }

  .section1 h1 {
    font-size: 13px;
  }

  .section2 {
    font-size: 8px;
    line-height: 1.0;
    text-align: left;
    margin-top: -40px;
    border: 2px hidden red;
  }

  .contact-list li {
    font-size: 9px;
    line-height: 1.1;
  }

  .contact-list a {
    font-size: 9px;
  }

  .section3 .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border: 2px hidden red;
  }

  .red-dot {
    width: 35px;
    height: 35px;
    font-size: 18px;
    margin: 0;
    position: relative;
  }

  .red-dot:nth-child(1),
  .red-dot:nth-child(2),
  .red-dot:nth-child(3),
  .red-dot:nth-child(4),
  .red-dot:nth-child(5) {
    position: absolute;
  }
  /* Red dots positioned to form an arrow */
.red-dot:nth-child(1) {
  top: -38px;
  left: 75px;
}

.red-dot:nth-child(2) {
  top: -25px;
  left: 35px;
}

.red-dot:nth-child(3) { /* TikTok icon */
  top: 9px; /* Adjusted position to match image */
  left: 5px;
}

.red-dot:nth-child(4) {
  top: 45px;
  left: 35px;
}

.red-dot:nth-child(5) {
  top: 58px;
  left: 75px;
}

  .white-card {
    width: 170px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 30px;
    background-color: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
    margin-top: 5px;
    margin-left: 50px;

  }

  .text {
    font-size: 15px;
    color: #333;
  }
  .bottom-bar p {
    font-size: 0.875rem; /* Slightly smaller font size */
    padding: 5px 10px;
  }
}
