
/*
yellow skin old color
color: #ffb400;

*/


.kws-link {
    text-decoration: none;
    color: #fff;
}
.kws-link:hover {
    text-decoration: underline;
    color: #fff;
}

.kws-desktop-block1 {
    background-color: #fdc403 !important;
}
.kws-desktop-logo {
    border-radius: 50%;
    border: 2px solid #fff;
    margin: 0 auto 25px;
    display: block;
    width: 300px;
    height: 300px;
}

.kws-mobile-logo {
    border-radius: 50%;
    border: 2px solid #fff;
    width: 110px;
    height: 110px;
    display: block;
}

.why-choose-us {
    border:2px solid #fdc403;
    border-radius: 3px;
    margin:5px;
    padding: 15px;
    
}



@media only screen and (min-width: 768px) {
  .why-choose-us {
    min-height: 180px;
  }
}



/* Footer Styling */
footer {
  color: #fff;
  padding: 20px;
  text-align: center;
  border-top:1px solid #333;
}

/* Footer Links */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px; /* Spacing between links */
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  padding: 10px 15px; /* Better touch targets */
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover Effect */
.footer-links a:hover {
  background-color: #555;
  color: #ffcc00;
  text-decoration: none;
}

footer p {
    color: #555;
    font-size: 10px;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-links {
    flex-direction: column; /* Stack links vertically */
    gap: 5px;
  }

  .footer-links a {
    font-size: 12px; /* Slightly larger for readability */
    padding: 12px 20px;
  }
}


/* Content Styling */
a.innerlink {
  color: #fff;
  text-decoration: underline;
}
a.innerlink:hover {
  text-decoration: none;
  color: #ffcc00;
}