body {
  font-family: "Inter", sans-serif;
  background-color: #f9f9f9;
  color: #333;
}
.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.navbar-brand {
  color: #ffc107 !important;
  font-weight: 700;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}
.navbar-brand:hover {
  color: #e0a800 !important;
}
.nav-link {
  color: #333 !important;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: #ffc107 !important;
}
.toto-home {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("/images/bg-img.png") no-repeat center center/cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 600px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.toto-home h1 {
  font-size: 3.5rem;
  font-weight: 700;
  animation: fadeInDown 1s ease-in-out;
}

#changing-word {
  display: inline-block;
  animation: fadeIn 1s ease-in-out infinite;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.services-section,
.about-section,
.download-section,
.careers-section,
.contact-section {
  padding: 80px 0;
}
.underline-text {
  font-weight: 700;
  position: relative;
  margin-bottom: 40px;
  font-size: 45px;
  display: inline-block;
}

.underline-text:after {
  content: "";
  display: block;
  width: 24%;
  height: 3px;
  background-color: rgba(215, 223, 35, 1);
  position: absolute;
  left: 0;
  bottom: -6px;
}
.services-section .card {
  border: none;
  text-align: center;
  padding: 20px;
  background-color: #fff;
  border-radius: 27px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.services-section .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.services-section .card img {
  transition: transform 0.3s ease;
}
.services-section .card:hover img {
  transform: scale(1.04);
}
.about-section {
  background-color: #fff9e5;
  position: relative;
}
.about-section h3 {
  font-weight: 600;
  color: #333;
}
.about-section p {
  color: #666;
  line-height: 1.8;
}
.about-section img {
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.about-section img:hover {
  transform: scale(1.05);
}
.founder-img {
  width: 120px;
  height: 120px;
  margin-bottom: 15px;
  transition: border-color 0.3s ease;
  background: transparent;
}
.download-section {
  background-color: #000;
  color: white;
  text-align: center;
  position: relative;
}
.download-section img {
  transition: transform 0.3s ease;
}
.download-section img:hover {
  transform: scale(1.1);
}
.careers-section {
  background-color: #fff9e5;
}
.careers-section p {
  color: #666;
}
.btn-yellow {
  background-color: #d6e027;
  border: none;
  color: black;
  font-weight: 600;
  padding: 10px 30px;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.btn-yellow:hover {
  background-color: #c0ca03;
  transform: scale(1.05);
}
.contact-section {
  background-color: #f8f9fa;
}
.contact-section .form-control {
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 10px;
  transition: border-color 0.3s ease;
}
.contact-section .form-control:focus {
  border-color: #d6e027;
  box-shadow: none;
}

.footer {
  background-color: #f8f9fa;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid #ddd;
}

.footer a,
.footer {
  color: #333;
  text-decoration: none;
  font-size: 18px;
  line-height: 2;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #a2aa00;
}

.footer .social-icons a {
  font-size: 20px;
  margin-right: 15px;
}

.footer h5.text-muted {
  margin-top: 20px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .toto-home h1 {
    font-size: 2.5rem;
  }
  .toto-home {
    height: 400px;
  }
  .services-section .card,
  .about-section img {
    margin-bottom: 20px;
  }
}

.c-nav-item {
  border-radius: 20px;
  margin-right: 10px;
  background-color: #fff;
  border: 1px solid gray;
  padding: 8px 20px;
}
.c-nav-item:hover {
  background-color: #f9ff8e;
}
.c-nav-item a {
  color: black;
  text-decoration: none;
}

p {
  font-size: large;
}

input {
  border-radius: 0px !important;
}
select {
  border-radius: 0px !important;
}
textarea {
  border-radius: 0px !important;
}

.social-icons a {
  color: #333;
  margin-right: 10px;
  font-size: 20px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #a2aa00;
}
