:root {
    --primary-color: #e9b06b;
    --secondary-color: #99542d;
    --acent-color: #c53528;
    --black: #000;
    --white: #fff;
    --light-gray: #eaeaea;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --theme-background: #fff0eb;
    --gray-background: #F8F9FA;
    --border-color: #E0E0E0;
}




/* top nav */


.top-header {
    background-color: var(--secondary-color);
    padding: 7px 0;
}

@media (max-width: 991px) {
    .top-header {
        display: none;
    }
}

.top-text {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

.top-contact {
    align-items: center;
    display: flex;
    gap: 15px;
    align-items: center;
}

.top-text li,
.top-list li {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--white);

}

.top-text li i {
    color: var(--white);
    font-size: 16px;
}

.top-text li a {
    margin-right: 8px;
    font-weight: 400;
    font-size: 15px;
    color: var(--white);
}

.top-social {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-bottom: 0;
}

.top-social li a {
    transition: color 0.3s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    color: var(--white);
    border: 2px solid var(--white);

}

.top-social li a.fb {
    background: #3b5998;
}

.top-social li a.insta {
    background: #e4405f;
}

.top-social li a.twitter {
    background: #1da1f2;
}

.top-social li a.linkedin {
    background: #0066c8;
}

.top-social li a.youtube {
    background: #ff0000;
}


/* about */

.about-inner-img {
    position: relative;
}

.about-box {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.about-counter {
    margin: 0 !important;
    padding: 12px 20px !important;
    border-radius: 20px !important;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.25) !important;
    border: 3px solid var(--white) !important;

    h4 {
        display: flex;
        text-align: start;
        min-width: 200px;
        justify-content: center;

    }
}

.counter {
    font-size: 32px;
    min-width: 70px;
    display: flex;
    align-items: center;
    gap: 7px;

    i {
        font-size: 22px;
    }
}

/* service  */

.service-single-post {
    background: #f6f6f6;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .service-single-post {
        padding: 0;
        box-shadow: none;
        background: transparent;
    }
}

.service-image img {
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2) !important;
    border: 4px solid #fff;
    margin-bottom: 20px;
}

.service-content h2,
.service-content h3,
.service-content h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--secondary-color);
}

.service-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #333;
}

.service-content ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 10px;
}

.service-content ol {
    list-style-type: decimal;
    padding-left: 20px;
    margin-bottom: 15px;
}

.service-content ul li {
    margin-bottom: 10px;
    font-size: 16px;
    list-style-type: disc !important;
    line-height: 1.6;
    color: #333;
}

.service-content ol li {
    margin-bottom: 10px;
    font-size: 16px;
    list-style-type: decimal;
    line-height: 1.6;
    color: #333;
}

.service-content ol li::marker {
    color: var(--secondary-color);
    font-weight: 600;
}

.service-content strong {
    font-weight: 600;
    color: var(--secondary-color);
}


.sidebar {
    background: #ffffff;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.15);
}

/* Doctor Profile Section */
.sidebar-doctor-profile {
    padding: 30px 12px 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.sidebar-doctor-profile::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 70%);
    transform: rotate(45deg);
}

.sidebar-doctor-profile::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(135deg,
            transparent 0%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 100%);
    clip-path: polygon(0 100%, 100% 100%, 85% 0, 15% 0);
}

.sidebar-profile-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.sidebar-doctor-img-container {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.sidebar-doctor-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border: 5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 2;
}

.sidebar-doctor-img:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.sidebar-img-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 270px;
    height: 270px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 2px solid var(--white);
    border-right: 2px solid transparent;
}

.sidebar-doctor-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.sidebar-doctor-education {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}



/* Contact Form */
.sidebar-contact-form {
    background: linear-gradient(135deg, var(--white) 0%, #f8faff 100%);
    padding: 20px 12px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(30, 46, 131, 0.1);
    border: 2px solid rgba(30, 46, 131, 0.1);
    position: relative;
    overflow: hidden;
}

.sidebar-contact-form::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
    transform: rotate(45deg);
}

.sidebar-form-group {
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.sidebar-form-input {
    width: 100%;
    padding: 8px 10px !important;
    height: auto !important;
    border: 2px solid #e8f2ff;
    border-radius: 12px !important;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    font-weight: 500;
    display: block;
    color: #2c3e50;
}

.sidebar-form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(30, 46, 131, 0.1);
    transform: translateY(-2px);
}

.sidebar-form-input:hover {
    border-color: var(--secondary-color);
    transform: translateY(-1px);
}

.sidebar-form-input::placeholder {
    line-height: 20px;

}

.sidebar-form-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.sidebar-form-button {
    padding: 7px 15px;
    /* background: linear-gradient(135deg, #1e2e83 0%, #006c62 100%); */
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(30, 46, 131, 0.3);
}

.sidebar-form-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    transition: left 0.5s ease;
}

.sidebar-form-button:hover::before {
    left: 0;
}

.sidebar-form-button:hover {
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 15px 40px rgba(30, 46, 131, 0.4);
}

.sidebar-form-button span {
    position: relative;
    z-index: 2;
}
