*{
    font-family: "Outfit",sans-serif;
}
html, body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}
::selection{
    color:var(--bodyColor);
    background-color: rgb(198, 4, 4);
}
:root {
    --primary-color: rgb(198, 4, 4);
    --secondary-color: #f9f9f9;
    --bodyColor: #f8f6f4;
    --boxColor: #eff0ef;
    --dark-brand-color: #202020;
}
/* Css for loader start*/
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: black;
}
.circuit-loader{
    width: 20%;
    height: 20vh;
    background: url("../static/images/loader2.gif") no-repeat center center;
    background-size: contain;
}
/* loader css end */

/* css for button slice hover effect start */
.btn {
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    color: var(--bodyColor);
    font-weight: 800;
    border-radius: 40px;
    padding: 8px 25px;
    font-size: 20px;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    justify-content: center;
    text-transform: capitalize;
    align-items: center;
    text-align: center;
    letter-spacing: 0.5px;
    outline: none;
    font-weight: bold;
    transition: 0.8s all ease;
    cursor: pointer;
    z-index: 1;
}
.btn::before {
    color: var(--bodyColor);
    background:black;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: all 0.6s ease;
    width: 100%;
    height: 0%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.btn:hover::before {
    height: 380%;
    color: var(--bodyColor);
}
/* css for button slice hover effect end */

/* css chat button start */
.chat-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 80%;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}  
.chat-button:hover {
    background: rgb(198, 4, 4);;
    transform: translateY(-3px);
}  
.chat-button i {
    font-size: 24px;
}  
.chat-popup {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transform: scale(0);
    transform-origin: bottom right;
    transition: all 0.3s ease;
    z-index: 1000;
}  
.chat-popup.active {
    transform: scale(1);
}  
.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px 15px 0 0;
    border-bottom: 1px solid #eee;
}  
.chat-header h5 {
    margin: 0;
    font-size: 1.1rem;
}  
.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}
.chat-body {
    padding: 20px;
}  
.chat-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    margin-bottom: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}  
.chat-option:hover {
    background: #e9ecef;
    transform: translateX(5px);
}  
.chat-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}
.chat-form input,.chat-form textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}  
.chat-form button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
}
/* css for chat button end */
/* css for custom hover */
.custom-hover {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: color 2s ease;
}
.custom-hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 1s ease;
}
.custom-hover:hover {
    color: var(--primary-color);
}

.custom-hover:hover::after {
    width: 100%;
}
.hover:hover {
    background-color: var(--secondary-color);
    color: #333;
    font-weight: 500;
    transition: 0.2s ease;
    border-color: var(--primary-color);
}
/* css for custom hover end */


/* css for scroll up button */
#scrollToTop {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 63px;
    height: 63px;
    border: none;
    border-radius: 50%;
    background: transparent;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 0;
    cursor: pointer;
    color: rgb(198, 4, 4);
}
.progress-ring {
    transform: rotate(-90deg);
}
#scrollToTopText {
    position: absolute;
    font-size: 14px;
    font-weight: bold;
    
    pointer-events: none;
}
#scrollToTopText img{
    width: 2rem;
}
#progressCircle{
     stroke: rgb(144, 8, 8) !important;
}
/* css for scroll up button end */




/* navbar style start */
.navbar {
    padding: 0;
    transition: all 0.3s;
    width: 100%;
    max-width: 100vw;
    
}
.nav-item .active{
  color: var(--primary-color) !important;
}
.nav-link {
    color: #5e5e5e !important;
    margin-left: 8px !important;
    font-weight: bold !important;
}
.navbar-scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
}
.appointment{
    font-size: 1rem;margin-top: -1.5%;
}

@media (max-width: 991px) {
    .navbar-collapse {
        padding: 1rem;
        background: white;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
        margin-top: 1rem;
    }
    
    .nav-item {
        margin: 0.5rem 0;
    }
    
    .appointment {
        width: 100%;
        text-align: center;
    }
}
/* Navbar desgin end */

/* css for footer start */
footer {
    background: #2a2a2a !important;
}
footer h5 {
    color: #fff;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}
footer {
    color: #fff;
}
footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}
.social-icons i {
    font-size: 18px;
    transition: 0.3s;
}
.social-icons a:hover i {
    color: var(--primary-color) !important;
}
.text-center a{
    color: rgb(198, 4, 4);
}
/* css for footer end */


.breadcrumbs {
    margin-top: 5rem;
    background: var(--dark-brand-color);
    min-height: 40px;
    color: var(--bodyColor);
  }
  .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px;
    text-transform: uppercase;
  }
  .breadcrumbs h2 {
    color: #eaf0ec;
  }
  .breadcrumbs ol a {
    color: #f8f6f4;
    transition: 0.3s;
    text-decoration: none;
  }
  .breadcrumbs p {
    color: #b6b6b6;
  }
  
  .breadcrumbs ol a:hover {
    color: var(--primary-color);
  }
  
  .breadcrumbs ol li + li {
    padding-left: 10px;
    color: #f9f9f9;
  }
  
  .breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #f8f6f4;
    content: "/";
  }
