
/* Go Back Button Styling */
.go-back {
  position: absolute;
  top: 20px;
  left: 20px;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.3s ease, opacity 0.3s ease;
  animation: slideInFromLeft 1s ease-in-out forwards;
}

.go-back:hover {
  transform: scale(1.2) rotate(-10deg);
  opacity: 0.8;
}

/* Go Back Image Styling */
.go-back-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgb(8, 55, 116);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.go-back-image:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transform: scale(1.1);
}

/* Keyframe Animations */
@keyframes slideInFromLeft {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Styling for the Image Card */
.image-card {
  width: 1200px; /* Set width of the card */
  height: 650px; /* Set height of the card */
  border-radius: 10px; /* Rounded corners for the card */
  overflow: hidden; /* Hide overflowing content */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Box shadow effect */
  margin: 30px auto; /* Center the card */
  border: 3px solid rgb(20, 76, 150);
  margin-top: 60px;
  display: flex;
  justify-content: center; /* Center the video */
  align-items: center; /* Center the content */
  position: relative; /* For stacking content on top of the video */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Add transition effect */
}

/* Hover effect for the card */
.image-card:hover {
  transform: translateY(-10px) translateX(-10px);
  box-shadow: 0 26px 26px rgba(250, 0, 0, 0.5); /* Apply text shadow effect */
  transition: all 0.3s ease-in-out; /* Smooth transition for transform and text-shadow */
}

/* Video background styling */
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; /* Place the video behind the content */
}

/* Optional content on top of the video */
.card-content {
  z-index: 1;
  color: #fff;
  font-size: 2rem;
  font-family: "Arial", sans-serif;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
  text-align: center;
}

/* Optional: Add text content if necessary */
.card-content h2 {
  font-size: 3rem;
  margin-top: 20px;
}

/* Responsive Styling for Go Back Button and Image Card */
@media (max-width: 767px) {
  /* Go Back Button Styling */
  .go-back {
    top: 10px;
    left: 10px;
    width: 50px; /* Reduce size of the go back button */
    height: 50px; /* Adjust size for mobile */
  }

  /* Go Back Image Styling */
  .go-back-image {
    width: 50px; /* Make the go back image smaller */
    height: 50px; /* Adjust the image size */
  }

  .go-back:hover {
    transform: scale(1.2) rotate(-10deg);
    opacity: 0.8;
  }

  .go-back-image:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transform: scale(1.1);
  }

  /* Image Card */
  .image-card {
    width: 90%; /* Make the card full width on mobile */
    height: auto; /* Adjust height to auto for better responsiveness */
    max-width: 500px; /* Set a maximum width to avoid overly stretched cards */
    margin: 20px auto; /* Center the card */
    border: 3px solid rgb(20, 76, 150);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .image-card:hover {
    transform: translateY(-10px) translateX(-10px);
    box-shadow: 0 8px 16px rgba(250, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;
  }

  /* Image inside the card */
  .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* service explanation styling */
.cards-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.card {
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  width: 100%; /* Make the image fill the card */
  height: 200%; /* Make the image fill the card */
  object-fit: cover; /* Ensure the image covers the area of the card */
}

/* Card Text Styling */
.card-text {
  background-color: #ffffff; /* Initial background color */
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(50px);
  position: relative;
  overflow: hidden;
  transition: background 0.6s ease, color 0.3s ease; /* Smooth background and color transition */
}

/* Card Image Styling */
.card-image {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease-in-out;
}

/* Hover Effect for Card Image */
.card-image:hover .card-img {
  transform: scale(1.1);
}

/* Fade-In Animation for Text Cards */
.card-text.visible {
  opacity: 1;
  transform: translateY(0);
  animation: bounceIn 1s ease-out forwards,
    colorTransition 1s ease 0.5s forwards;
}

/* Bounce In Animation for Card Text */
@keyframes bounceIn {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  60% {
    transform: translateY(-10px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Slide Up and Fade-In Animation for Card Title */
@keyframes slideUpFadeIn {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Apply to card title */
.card-title {
  font-size: 24px;
  font-weight: 600;
  color: #000000; /* Initial text color */
  margin-bottom: 15px;
  text-transform: uppercase;
  animation: slideUpFadeIn 1s ease-out forwards;
}

/* Scale-Up Animation for Card Description */
@keyframes scaleUp {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Apply to card description */
.card-description {
  font-size: 16px;
  text-align: left;
  color: #000000; /* Initial text color */
  line-height: 1.5;
  animation: scaleUp 0.8s ease-out forwards;
}

/* Text Color Change with Delay */
@keyframes colorTransition {
  0% {
    color: #000; /* Initial color */
  }
  100% {
    color: #fff; /* White text color */
  }
}

/* Hover Effect for Card Text, Card Title, and Card Description */
.card-text:hover {
  background-color: rgb(8, 55, 116); /* Dark blue background */
  color: #fff; /* White text color for the entire card */
}

/* Hover Effect for Card Title */
.card-text:hover .card-title {
  color: #fff; /* Change text color to white on hover */
}

/* Hover Effect for Card Description */
.card-text:hover .card-description {
  color: #fff; /* Change text color to white on hover */
}

/* Hover Glowing Text Shadow for Card Title */
.card-text:hover .card-title {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Hover Glowing Text Shadow for Card Description */
.card-text:hover .card-description {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Card Image Styling */
.card-image {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease-in-out;
}

/* Hover Effect for Card Image */
.card-image:hover .card-img {
  transform: scale(1.1);
}

/* Apply Animation on Load */
.card-text {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* Animation for Cards Section */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 767px) {
  .cards-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0; /* Adjust padding for mobile */
  }

  .card {
    width: 100%;
    margin: 0 15px 30px; /* Adjust margins for better spacing */
    height: auto; /* Adjust card height */
  }

  .card-text {
    padding: 20px; /* Reduce padding for mobile view */
  }

  .card-title {
    font-size: 20px; /* Reduce font size */
  }

  .card-description {
    font-size: 14px; /* Reduce font size */
  }

  .card-img {
    max-height: 250px; /* Adjust image size for mobile */
    object-fit: cover; /* Ensure image fills container */
  }

  .card-image {
    text-align: center;
  }

  /* Card Hover Effect Adjustments */
  .card-text:hover {
    background-color: rgb(8, 55, 116); /* Dark background on hover */
    color: #fff; /* White text on hover */
  }

  .card-text:hover .card-title,
  .card-text:hover .card-description {
    color: #fff; /* White text on hover */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8); /* Glowing effect */
  }
}

#faq-section {
  padding: 50px;
  background-color: #f7f7f7;
  font-family: "Work Sans", sans-serif;
}

#faq-section h2 {
  padding: 10px;
  text-align: center;
  background-color: #f7f7f7;
  margin-bottom: 30px;
  font-family: "Work Sans", sans-serif;
  font-size: 30px;
  opacity: 0;
  transform: translateX(-100%);
  animation: slideInFromLeft 1s forwards;
  font-weight: bold;
  color: rgb(8, 55, 116);
  margin-top: 50px;
}

#faq-section h2:hover {
  transform: translateY(-10px) translateX(-10px);
  text-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

/* padding: 10px;
    text-align: center;
    background-color: #f7f7f7;
    margin-bottom: 30px;
    font-family: "Work Sans", sans-serif;
    font-size: 24px;
    color: rgb(8, 55, 116);
    opacity: 0;
    transform: translateX(-100%);
    animation: slideInFromLeft 1s forwards;
  }
   */
@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background-color: #fff;
  border: 1px solid #000000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 8px rgb(8, 55, 116);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: rgb(8, 55, 116);
  color: white;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
}

.faq-question h3 {
  color: white;
  font-weight: bold;
  margin-left: 40px;
  font-size: 18px;
  cursor: pointer;
}

.faq-answer {
  padding: 20px;
  background-color: #f9f9f9;
  display: none;
}

.faq-answer p {
  color: #070707;
  font-weight: bold;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-arrow {
  width: 24px; /* Adjust the width of your image */
  height: 24px; /* Adjust the height of your image */
  transition: transform 0.3s ease;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

/* Animation for smooth transition */
.faq-item {
  max-height: 50px; /* Collapsed state */
  overflow: hidden;
}

.faq-item.open {
  max-height: 300px; /* Expanded state */
}

/* Responsive Design */
@media (max-width: 768px) {
  #faq-section {
    padding: 20px;
  }

  #faq-section h2 {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 15px;
  }

  .faq-question {
    padding: 8px;
    font-size: 14px;
  }

  .faq-question h3 {
    margin-left: 10px;
    font-size: 14px;
  }

  .faq-answer {
    padding: 10px;
    font-size: 14px;
  }

  .faq-arrow {
    width: 16px;
    height: 16px;
  }

  .faq-container {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  #faq-section h2 {
    font-size: 18px;
  }

  .faq-question {
    font-size: 12px;
  }

  .faq-answer {
    font-size: 12px;
  }
}

/* Pin the section to the right side */
#pinned-section {
  position: fixed; /* Keeps the section fixed while scrolling */
  top: 0; /* Aligns to the top of the page */
  right: 10px; /* Adds some spacing from the right edge */
  width: 66px; /* Set a width for the section */
  background-color: rgb(50, 100, 167); /* Optional: Set a background color */
  padding: 10px;
  margin-top: 150px;
  z-index: 1000; /* Ensures it appears above other elements */
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1); /* Adds a shadow effect */
  border-radius: 10px; /* Rounds the section itself slightly */
}

/* Styling the image links */
.image-link {
  display: block; /* Make each image link a block element for stacking */
  margin-bottom: 15px; /* Add space between images */
  position: relative;
  text-decoration: none;
  text-align: center; /* Center-align images and names */
}

/* Styling circular images */
.image-link img {
  width: 50px; /* Set fixed width for circle */
  height: 50px; /* Set fixed height for circle */
  object-fit: cover; /* Ensures the image fits properly */
  border-radius: 50%; /* Makes the images circular */
  border: 2px solid #020202; /* Add a border around the images */
  transition: transform 0.3s ease, border-color 0.3s ease; /* Smooth hover effect */
}

/* Hover effect for image scaling */
.image-link:hover img {
  transform: scale(1.1); /* Zoom effect */
  border: 2px solid #ff0808; /* Add a border around the images */
}

/* Hover name (hidden by default) */
.hover-name {
  position: absolute;
  bottom: -20px; /* Position name just below the image */
  right: 40%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 12px;
  opacity: 0; /* Hidden by default */
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* Show the name on hover */
.image-link:hover .hover-name {
  opacity: 1;
}

/* MEDIA QUERIES */

/* Small devices (e.g., smartphones) */
@media (max-width: 480px) {
  #pinned-section {
    width: 56px; /* Adjust section width */
    margin-top: 100px; /* Reduce top margin for smaller screens */
    right: 5px; /* Adjust right position */
    padding: 5px; /* Reduce padding */
  }

  .image-link img {
    width: 40px; /* Reduce image size for smaller screens */
    height: 40px;
  }

  .hover-name {
    font-size: 10px; /* Adjust font size of hover text */
    padding: 3px 5px;
  }
}

/* Medium devices (e.g., tablets) */
@media (max-width: 768px) {
  #pinned-section {
    width: 40px; /* Slightly larger width than on small devices */
    margin-top: 120px; /* Adjust top margin */
    right: 8px;
  }

  .image-link img {
    width: 40px; /* Resize images for medium screens */
    height: 40px;
    margin-left: -3px;
  }

  .hover-name {
    font-size: 11px; /* Adjust hover text size for medium devices */
  }
}

/* Back to Top Button */
#back-to-top {
  position: fixed; /* Keeps it at the bottom-right corner */
  bottom: 20px; /* Distance from the bottom */
  right: 20px; /* Distance from the right */
  width: 60px; /* Button size */
  height: 60px;
  background-color: rgb(50, 100, 167); /* Button background color (blue) */
  border: none; /* Remove border */
  border-radius: 50%; /* Make it circular */
  cursor: pointer; /* Show pointer on hover */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
  transition: transform 0.3s ease, background-color 0.3s ease; /* Hover transition */
  display: none; /* Initially hidden */
  z-index: 1000; /* Ensures it stays above other content */
}

/* Add the image inside the button */
#back-to-top img {
  width: 90%; /* Adjust image size */
  height: 90%;
  object-fit: contain; /* Make sure the image fits properly inside */
  display: block;
  margin: 0 auto; /* Center the image inside the button */
}

/* Hover effect */
#back-to-top:hover {
  transform: scale(1.1); /* Slight zoom effect */
  background-color: #0056b3; /* Darker blue on hover */
  box-shadow: 0 6px 12px #ff0808; /* Add shadow on hover */
}

/* Show the button when scrolled */
#back-to-top.show {
  display: block; /* Show button when class 'show' is added */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  /* Reduce button size on smaller screens */
  #back-to-top {
    width: 50px;
    height: 50px;
    bottom: 15px; /* Reduce the bottom margin */
    right: 15px; /* Reduce the right margin */
  }

  /* Adjust image inside the button for smaller screens */
  #back-to-top img {
    width: 80%; /* Slightly smaller image on mobile */
    height: 80%;
  }
}

@media (max-width: 480px) {
  /* Further reduce button size on very small screens */
  #back-to-top {
    width: 45px;
    height: 45px;
    bottom: 10px; /* Further reduce bottom margin */
    right: 10px; /* Further reduce right margin */
  }

  /* Adjust image inside the button for very small screens */
  #back-to-top img {
    width: 90%; /* Even smaller image */
    height: 90%;
  }
}

/* General Footer Styling */
footer {
  background-color: rgb(8, 55, 116);
  color: white;
  padding: 40px 20px;
  font-weight: bold;
  text-align: center;
  font-size: 16px;
  position: relative;
  overflow: hidden;
  z-index: 1; /* Ensuring footer stays on top */
}

/* Footer Container */
.footer-container {
  display: flex;
  flex-wrap: nowrap; /* Prevent wrapping on larger screens */
  justify-content: space-between; /* Space items evenly */
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
  animation: fadeIn 1s ease-out;
}

/* Footer Links */
.footer-links ul {
  list-style: none;
  display: flex;
  gap: 15px;
  font-size: 18px;
  padding: 0;
  margin: 0;
  align-items: center;
}

.footer-links li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links li a:hover {
  color: rgb(167, 4, 4);
  transform: translateY(-5px);
}

/* Certificate Images */
.footer-certificates {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
}

.footer-cer img {
  height: 100px; /* Manageable size for certificates */
  width: auto;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-cer img:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.footer-cer1 img:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.footer-cer2 img:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.footer-cer3 img:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.footer-contact {
  display: flex;
  align-items: center;
  justify-content: flex-start;

  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  margin-bottom: 10px;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

.contact-item img {
  height: 20px;
  width: auto;
  transition: transform 0.3s ease;
}

.contact-item:hover img {
  transform: scale(1.2);
}

.contact-item a {
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-item a:hover {
  color: rgb(167, 4, 4);
  transform: translateY(-5px);
}

/* Footer Bottom Section */
.footer-bottom {
  background-color: rgb(8, 55, 116);
  color: white;
  padding: 10px 0;
  font-size: 15px;
  font-weight: bold;
  margin-top: 20px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 60%;
  padding: 10px;
  width: 50px;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.back-to-top:hover {
  background-color: rgb(8, 55, 116);
  transform: scale(1.1);
}

.back-to-top i {
  transition: transform 0.3s ease;
}

.back-to-top:hover i {
  transform: rotate(360deg);
}

/* Footer container */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: row; /* Align items in a row */
    justify-content: space-between; /* Spread out the items */
    align-items: center; /* Vertically align items */
    gap: 15px; /* Provide space between elements */
    padding: 20px; /* Add padding for better spacing */
    flex-wrap: wrap; /* Allow wrapping if there's not enough space */
  }

  /* Footer Links */
  .footer-links ul {
    display: flex; /* Align links in a row */
    gap: 20px; /* Space between links */
  }

  .footer-links li a {
    font-size: 16px; /* Increase font size for readability */
    margin-left: 10px;
  }

  /* Footer Certificates */
  .footer-certificates {
    display: flex; /* Align certificates in a row */
    gap: 20px; /* Space between certificates */
  }

  .footer-cer img {
    height: 80px; /* Set the height for certificates */
    width: auto; /* Keep aspect ratio intact */
  }

  /* Contact Section */
  .footer-contact {
    display: flex; /* Align contact items in a row */
    gap: 20px; /* Space between contact items */
    align-items: center; /* Center items vertically */
  }

  .contact-item {
    font-size: 16px; /* Increase font size for better readability */
  }

  /* Back to Top Button */
  .back-to-top {
    position: fixed; /* Keep the button fixed on the screen */
    bottom: 10px;
    right: 10px;
    padding: 12px; /* Slightly larger button for easy touch */
    font-size: 24px; /* Increase button size */
    width: 50px;
    height: 50px;
    border-radius: 50%; /* Make button round */
  }

  /* Chatbot */
  #chatbot-footer {
    bottom: 100px; /* Position the chatbot button */
    width: 60px; /* Adjust the chatbot button size */
    height: 60px;
    gap: 15px;
  }

  /* PC view */
  #chatbot {
    bottom: 450px;
    left: 10px;
    width: 320px;
    height: 360px;
  }

  /* Mobile view */
  @media (max-width: 768px) {
    #chatbot {
      bottom: 150px;
      left: 10px;
      width: 320px;
      height: 360px;
    }
  }

  .chatbot-header {
    font-size: 16px; /* Adjust chatbot header font size */
    padding: 12px;
  }

  .input-container input {
    font-size: 14px; /* Adjust input field font size */
    width: 75%; /* Adjust input field width */
    padding: 10px; /* Add padding */
  }

  .input-container button {
    font-size: 16px; /* Adjust button font size */
    padding: 10px 15px; /* Increase button padding */
  }
}

/* Additional Media Query for Extra Small Screens */
@media (max-width: 480px) {
  .footer-container {
    flex-direction: row; /* Keep items in a row on smaller screens */
    justify-content: space-between; /* Distribute elements evenly */
    gap: 15px; /* Space between elements */
  }

  .footer-links ul {
    display: flex; /* Align links in a row */
    gap: 10px; /* Adjust space between links */
  }

  .footer-links li a {
    font-size: 14px; /* Slightly smaller font for smaller screens */
  }

  .footer-cer img {
    height: 60px; /* Reduce certificate size for small screens */
    width: auto;
  }

  .contact-item {
    font-size: 14px; /* Smaller font for contact items */
  }

  .back-to-top {
    padding: 10px; /* Increase button size for better tap */
    font-size: 22px; /* Adjust button font size */
    width: 50px;
    height: 50px;
  }

  #chatbot {
    width: 280px; /* Adjust chatbot width */
    height: 320px;
  }

  .chatbot-header {
    font-size: 14px; /* Smaller font size */
    padding: 10px;
  }

  .input-container input {
    font-size: 12px; /* Smaller input font size */
    width: 70%; /* Adjust input width */
    padding: 8px; /* Add padding */
  }

  .input-container button {
    font-size: 14px; /* Slightly smaller button size */
    padding: 8px 12px; /* Adjust padding */
  }
}
