/*
    Theme Name: Abhishek
    Theme URI: http:exapmle.com
    Theme Author: Abhishek Tiwari
    Theme Author URI: http://example.com
    Theme Description: This is my first theme
    Theme Version: 1.0
*/


:root {
    --primary-color: #7FA99B;
    --secondary-color: #F5EFEA;
    --text-color: #2B2B2B;
    --white: #FFFFFF;
    --accent-color: #e11314;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: 'Roboto Condensed', sans-serif;
}

.fs-15 {
    font-size: 15px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.btn {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--accent-color);
}

.btn-new-dark {
    padding: 10px 20px;
    color: #000;
    border: 2px solid #000;
    background-color: transparent;
    cursor: pointer;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500;
    display: inline-block;
    margin-top: 30px;
    text-decoration: none;
}

.btn-new-dark:hover {
    background-color: #000;
    text-decoration: none;
    color: #fff;
}

.btn-rounded {
    border-radius: 25px;
}

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1220px;
    }
}

/* =====================Navbar Styles===================== */
.topbar-nav {
    background-color: #df1716;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    z-index: 1000;
}

.topbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 15px 20px;
    margin: 0px 12px;
    display: inline-block;
    font-family: "Roboto Condensed", sans-serif;
    transition: all 0.3s ease;
}

.topbar-nav .nav-link:hover {
    color: var(--accent-color);
}

.topbar-nav .navbar {
    padding: 20px 0;
}

.contact-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

.contact-btn svg {
    width: 22px;
    fill: var(--white);
    margin-right: 5px;
    vertical-align: middle;
}

.navbar-brand span {
    font-size: 24px;
    font-weight: 700;
    color: #C8A96A;
}

.btn-outline-brown {
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

/* =====================Navbar Styles End===================== */
/* =====================Hero Styles start===================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-carousel .owl-carousel .owl-item {
    height: 100vh;
    min-height: 600px;
}

.hero-slide {
    position: relative;
    height: 80vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgb(114 113 113 / 85%) 0%, rgba(43, 38, 39, 0.56) 50%, rgba(45, 44, 44, 0.14) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 600px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
}

.cta-button {
    background-color: transparent;
    color: white;
    padding: 15px 40px;
    border: 2px solid #fff;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.cta-button:hover {
    background-color: rgba(20, 20, 20, 0.95);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.hero-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 3;
}

.hero-carousel .owl-prev,
.hero-carousel .owl-next {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-carousel .owl-prev,
.hero-carousel .owl-next {
    font-size: 28px !important;
}

.hero-carousel .owl-prev:hover,
.hero-carousel .owl-next:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.hero-carousel .owl-prev {
    left: 30px;
}

.hero-carousel .owl-dots .owl-dot span {
    width: 30px;
    height: 8px;
    border: 1px solid #fff;
    background: none !important;
}

.hero-carousel .owl-dots .owl-dot.active span {
    background: #fff !important;
    width: 35px;
    height: 8px;
}

.hero-carousel .owl-next {
    right: 30px;
}

.hero-carousel .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 30px;
}

.hero-carousel .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    cursor: pointer;
}

/* =====================Hero Styles End===================== */
/* =====================About Styles Start===================== */
.heading-secondary {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-color);
    font-family: "Roboto Condensed ", sans-serif;
    margin-bottom: 10px;
}

.about-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.btn-new-warning {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    display: inline-block;
    font-weight: 500;
    margin-top: 15px;
}

.about-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 0px;
}

/* =====================About Styles End===================== */
/* =====================Service Styles Start===================== */

.hover-row {
    display: flex;
    height: 380px;
}

.hover-box {
    flex: 1;
    position: relative;
    overflow: hidden;
    transition: flex 0.6s ease;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

/* Hover Expand */
.hover-row:hover .hover-box {
    flex: 0.7;
}

.hover-row .hover-box:hover {
    flex: 2;
}

/* Overlay */
.hover-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    transition: background 0.4s ease;
}

.hover-box:hover::before {
    background: rgba(0, 0, 0, 0.6);
}

/* Content */
.box-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    text-align: center;
}

.hover-box:hover .box-content {
    opacity: 1;
    transform: translateY(0);
}

/* Background Images */
.box-1 {
    background-image: url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9');
}

.box-2 {
    background-image: url('https://images.unsplash.com/photo-1515377905703-c4788e51af15');
}

.box-3 {
    background-image: url('https://images.unsplash.com/photo-1503341455253-b2e723bb3dbb');
}

.box-4 {
    background-image: url('https://images.unsplash.com/photo-1540555700478-4be289fbecef');
}

/* Mobile */
@media (max-width: 768px) {
    .hover-row {
        flex-direction: column;
        height: auto;
        gap: 20px;
    }

    .box-content {
        opacity: 1;
        position: relative;
        height: 250px;
    }

    .hover-box {
        height: auto;
        flex: auto;
    }
}

.services-section {
    padding: 80px 0;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.read-more-btn {
    margin-top: 10px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    display: inline-block;
    transition: background-color 0.3s ease;
}

/* =====================Service Styles End===================== */
/* =====================Choose Styles Start===================== */
.heading-wrappper-section {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.same-text {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.card-choose {
    border-radius: 10px;
    background-color: transparent;
    transition: all 0.5s;
    color: #000;
}

.icon-svg {
    transition: all 0.5s;
    background: #ffffff12;
    display: inline-flex;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    align-items: center;
    border: 1px solid var(--accent-color);
    justify-content: center;
}

.icon-svg svg {
    width: 40px;
    transition: all 0.5s;
    fill: var(--accent-color);
}

.card-choose:hover {
    transform: translateY(-5px);
    box-shadow: rgba(241, 241, 241, 0.1) 0px -3px 15px !important;
    border: 1px solid var(--accent-color);
}

.card-choose:hover .icon-svg svg {
    fill: #000;
}

.card-choose:hover .icon-svg {
    background: var(--accent-color);
}

.bg-black {
    background-color: #000 !important;
}

.bg-chosse {
    background-color: var(--secondary-color);
}

/* =====================Choose Styles End===================== */
/* =====================Testimonial Styles Start===================== */
.card-testmonial {
    padding: 15px 15px;
    border-radius: 10px;
}

.testimonial-slider .owl-nav .owl-prev,
.testimonial-slider .owl-nav .owl-next {
    border-radius: 50% !important;
    position: absolute;
    top: 50%;
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #573826 !important;
    transform: translateY(-50%);
    color: #fff !important;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 5px 10px;
}

.testimonial-slider .owl-nav .owl-prev span,
.testimonial-slider .owl-nav .owl-next span {
    font-size: 35px;
}

.fw-semibold {
    font-weight: 600;
}

.testimonial-slider .owl-nav .owl-prev {
    left: -30px;
}

.testimonial-slider .owl-nav .owl-next {
    right: -30px;
}

.star-icon-flex svg {
    width: 18px;
    fill: #d48817;
}

.btn-type-review {
    border: 1px solid var(--accent-color);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #fff;
}

.star-icon-flex svg {
    width: 18px;
    fill: #d48817;
}

.main-heading-testi-card {
    font-size: 15px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 10px;
}

/* =====================Testimonial Styles End===================== */
/* =====================cta Styles Start===================== */
.card-cta {
    background-color: #000;
    color: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

/* =====================cta Styles End===================== */
/* =====================Footer Styles Start===================== */
.footer-section {
    background-color: #000;
    color: var(--white);
    padding: 60px 0 40px 0px;
}

.fixed-contact {
    position: fixed;
    bottom: 0px;
    right: 0px;
    width: 100%;
    z-index: 1000;
}

.contact-phone,
.contact-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    font-size: 16px;
    padding: 15px 0;
    gap: 8px;
    color: var(--white);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-phone {
    background-color: var(--primary-color);
}

.contact-whatsapp {
    background-color: #25D366;
}

.contact-phone:hover {
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
}

.contact-whatsapp:hover {
    background-color: #1DA851;
    color: var(--white);
    text-decoration: none;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: var(--white);
    text-decoration: none;
}

.footer-logo span {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    display: inline-block;
    margin-bottom: 15px;
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.social-icon-footer a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--text-color);
    margin-right: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.social-icon-footer a:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

.social-icon-footer a svg {
    width: 20px;
    fill: var(--text-color);
}

.social-icon-footer a:hover svg {
    fill: var(--white);
}

/* =====================Footer Styles End===================== */

/* Initial hidden state */
.fadein {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

/* When visible */
.fadein.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-banner {
    padding: 120px 0px;
    background-image: url(../img/hero-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 2;
}

.about-banner::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: -1;
    opacity: 0.4;
}

.heading-about-banner {
    font-size: 62px;
    color: #fff;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.2;
}

.max-width-desk {
    max-width: 70%;
}

.sub-heading {
    font-size: 18px;
    color: #fff;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500;
    margin-bottom: 10px;
}

.new-sub-heading {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    background: #4450fd26;
    color: #573826;
    margin-bottom: 10px;
    font-weight: 500;
}

.listing-item {
    list-style: none;
    margin-top: 20px;
}

.listing-item li {
    margin-bottom: 15px;
    position: relative;
}

.listing-item li::before {
    content: '';
    position: absolute;
    left: -35px;
    top: 2px;
    width: 20px;
    height: 20px;
    background-image: url(../img/check.png);
    background-position: center;
    background-size: cover;

}

.service-box {
    padding: 25px;
    border: 2px solid transparent;
    transition: .2s all;
    -webkit-box-shadow: 0px 5px 55px -3px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 5px 55px -3px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 5px 55px -3px rgba(0, 0, 0, 0.15);
}

.service-box .line {
    width: 30px;
    height: 2px;
    background-color: #3c4858;
    margin: auto;
    opacity: .6;
}

.svg-icon {
    width: 50px;
    margin-bottom: 20px;
    fill: #f8b0b1;
}

.service-box p {
    font-weight: 700;
    font-size: 20px;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 30px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0, 0, 0, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.clinic-services-hero {
    background-color: #fdf6f2;
    position: relative;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2;
    padding: 80px 0px;
}

.clinic-services-hero::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 7, 7, 0.462);
    z-index: -1;
}

.hero-title {
    font-size: 42px;
    font-weight: 600;
}

.service-nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.service-nav-link:hover {
    color: #c96b6b;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.clinic-service-detail h2 {
    font-weight: 600;
}

.service-points {
    list-style: none;
    padding: 0;
}

.service-points li {
    margin-bottom: 8px;
}

.service-meta span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-right: 15px;
    font-size: 14px;
}

.service-meta span svg {
    width: 16px;
    fill: #c96b6b;
}

.service-nav-link {
    display: inline-block;
    border-radius: 25px;
    border: 1px solid #f8b0b1;
    padding: 8px 20px;
    color: #fff;
    background-color: #f8b0b1;
}

.why-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.logo-badgep {
    position: absolute;
    left: 50%;
    top: 2px;
    margin-left: -65px;
    z-index: 9;
}

.br-50 {
    border-radius: 50%;
}

@media (max-width: 991px) {

    .testimonial-slider .owl-nav .owl-prev,
    .testimonial-slider .owl-nav .owl-next {
        position: relative;
        transform: none;
    }

    .logo-badgep {
        position: relative;
        left: auto;
        top: auto;
        margin-left: 0px;
        z-index: 9;
        width: 70px;
    }
}