/*
Theme Name: Cancard
Theme URI: https://yourwebsite.com/
Author: Your Name
Description: A lightweight WordPress theme using Tailwind.
Version: 1.0
*/
/* Works in WebKit browsers (Chrome, Safari, Edge) */
html::-webkit-scrollbar {
    width: 5px;
}

html::-webkit-scrollbar-track {
    background: #838383;
}

html::-webkit-scrollbar-thumb {
    background-color: #facc15;
    border-radius: 5px;
}

.nav-underline {
    position: relative;
    display: block;
    transition: all 0.3s ease-in-out;
}

.nav-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #013C58;
    transition: width 0.3s ease;
}

.nav-underline:hover::after {
    width: 100%;
}

.team-img {
    height: 250px !important;
    border-radius: 10px !important;
}

.post-img {
    height: 350px !important;
    border-radius: 16px !important;
}


.custom-bullet {
    width: 20px;
    height: 20px;
    background-color: #D9D9D9;
    margin: 0 4px;
    border-radius: 50%;
    border: solid 5px #000;
    box-shadow: 0 0 1px 2px #000;
    transition: all 0.3s ease;

}

.custom-bullet-active {
    background-color: #F5E876;
    box-shadow: 0 0 1px 2px #F5E876;
}

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

.contactForm .pi-form-control {
    width: 100%;
    padding: 20px;
    border-radius: 12px;
    background-color: #1513040D;
    color: #15130499;
    outline: none;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 20px;
	border: none;
}

.contactForm .pi-form-control::-webkit-input-placeholder {
    color: #15130499;
}

.contactForm .pi-form-control:-moz-placeholder {
    color: #15130499;
}

.contactForm .pi-form-control::-moz-placeholder {
    color: #15130499;
}

.contactForm .pi-form-control:-ms-input-placeholder {
    color: #15130499;
}


.contactForm .pi-form-control:focus {
    border: none;
}

.contactForm .submitBtn {
    background-color: #222A31;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: white;
    width: 100%;
    padding: 16px 40px;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contactForm .submitBtn:hover {
    background-color: #fff;
    color: #000;
}

.pi-form-control {
  width: 100%;
  padding: 0.5rem 1rem; /* py-2 px-4 */
  border: 1px solid #6b7280; /* border-gray-500 */
  border-radius: 0.5rem; /* rounded-lg */
  background: transparent;
  color: #fff;
}
.pi-form-control::placeholder {
  color: #9ca3af; /* placeholder-gray-400 */
}

.pi-form-control:focus {
  outline: none;
  border-color: #f5e876; /* focus:border-[#f5e876] */
  box-shadow: 0 0 0 1px #f5e876; /* focus:ring-1 focus:ring-[#f5e876] */
}
.contactForm .pi-form-control.fixed-height-textarea,
.pi-form-control.fixed-height-textarea{
  height: 120px;
}
.submitBtn{
  width: 100%;
  padding-top: 0.75rem;   /* py-3 */
  padding-bottom: 0.75rem;
  background-color: #f5e876; /* bg-[#f5e876] */
  color: #000; /* text-black */
  font-weight: 700; /* font-bold */
  border-radius: 0.5rem; /* rounded-lg */
  transition: background-color 0.3s ease;
  cursor: pointer;
}
.submitBtn:hover{
	background-color: #fff;
}
.testimonialSwiper img{
    border-radius: 50% !important;
}
.patients-quotes-swiper .custom-bullet {
	background-color: #121212;
    border: solid 5px #F5E876;
    box-shadow: 0 0 1px 2px #F5E876;
}
.patients-quotes-swiper .custom-bullet-active {
    background-color: #000;
    box-shadow: 0 0 1px 2px #000;
}

.whoBannerSec{
    position: relative;
}

.whoBannerSec .top-img{
    position: absolute;
    right: 0;
    top: 0;
}

.whoBannerSec .bottom-img{
    position: absolute;
    left: 0;
    bottom: 0;
}
@media screen and (max-width:1024px) {
	.post-img {
       height: 290px !important;
   }
}

@media screen and (max-width:911px) {
    .team-img {
        height: 200px !important;
    }
	.post-img {
       height: 100% !important;
   }
}

@media screen and (max-width:575px) {
    .team-img {
        width: 75px !important;
        height: 90px !important;
    }
}