* {
    margin: 0;
    padding: 0
}

.fade-in {
    opacity: 0;
    animation: .5s forwards fadeIn
}

@keyframes fadeIn {
    to {
        opacity: 1
    }
}

@keyframes float-image {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }

    to {
        transform: translateY(0)
    }
}

.animate-float {
    animation: 4s ease-in-out infinite float-image
}

:root {
    --primary-color: #2a7a82;
    --primary-dark: #1e5a60;
    --secondary-color: #102a43;
    --text-main: #333;
    --text-light: #666;
    --text-white: #fff;
    --bg-white: #fff;
    --bg-light: #f1f5f9;
    --border-color: #e2e8f0;
    --font-main: "Inter", system-ui, -apple-system, sans-serif;
    --container-width: 1200px;
    --section-padding: 5rem 1rem
}

* { 
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    
    background-position: top;
    background-size: 40px 40px;
    line-height: 1.6
}

.btn {
    cursor: pointer;
    border: 2px solid #0000;
    border-radius: 6px;
    justify-content: center;
    align-items: center;
    padding: .6rem 1.5rem;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s;
    display: inline-flex
}

.btn-primary {
    background-color: #3B604C;
    color: var(--text-white);
    white-space: nowrap;
}



.btn-secondary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: #0000
}

.btn-secondary:hover {
    background-color: #2a7a820d;
    transform: translateY(-2px)
}

.hero-content .btn {
    min-width: 250px;
    padding: 1.5rem 2rem;
    font-size: 1.1rem
}

.card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all .3s;
    position: relative;
    overflow: hidden
}

.card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px #0000001a, 0 10px 10px -5px #0000000a
}

.navbar {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    background-color: #fffffff2;
    padding: 1rem 0;
    position: sticky;
    top: 0
}

.mobile-toggle {
    display: none
}

.nav-container {
    justify-content: space-between;
    align-items: center;
    display: flex
}

.nav-menu {
    flex-grow: 1;
    align-items: center;
    gap: 3rem;
    margin-left: 3rem;
    display: flex
}

.logo-wrapper {
    flex-direction: column;
    justify-content: center;
    display: flex
}

.logo {
    color: var(--secondary-color);
    margin-bottom: 2px;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.1;
    text-decoration: none
}

.logo-subtitle {
    color: var(--text-light);
    letter-spacing: .5px;
    font-size: .75rem;
    font-weight: 500
}

.nav-links {
    gap: 2rem;
    margin: 0 auto;
    list-style: none;
    display: flex
}

.nav-link {
    color: var(--text-main);
    font-size: .875rem;
    font-weight: 500;
    text-decoration: none;
    transition: color .2s
}

.nav-link:hover {
    color: var(--primary-color)
}

.nav-actions {
    align-items: center;
    gap: 1.5rem;
    display: flex
}

.nav-phone {
    color: var(--text-main);
    white-space: nowrap;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    display: flex
}

.nav-phone:hover {
    color: var(--primary-color)
}

.phone-icon {
    border: 1px solid var(--border-color);
    width: 28px;
    height: 28px;
    color: var(--primary-color);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    transition: all .3s;
    display: flex
}

.nav-phone:hover .phone-icon {
    border-color: var(--primary-color);
    background-color: var(--bg-light)
}

.phone-icon svg {
    width: 14px;
    height: 14px
}

.expertise-card-container {
    perspective: 1000px;
    cursor: pointer;
    background-color: #0000;
    height: 340px
}

.expertise-card-inner {
    text-align: left;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    border-radius: 12px;
    transition: transform .6s cubic-bezier(.4, .2, .2, 1);
    position: relative;
    box-shadow: 0 10px 15px -3px #0000001a
}

.expertise-card-container:hover .expertise-card-inner {
    transform: rotateY(180deg)
}

.expertise-card-front,
.expertise-card-back {
    backface-visibility: hidden;
    background-color: #fff;
    border: 1px solid #00000014;
    border-radius: 12px;
    flex-direction: column;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    overflow: hidden
}

.card-front-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform .5s
}

.expertise-card-container:hover .card-front-img {
    transform: scale(1.05)
}

.card-front-content {
    color: #fff;
    background: linear-gradient(#0000 0%, #00000080 40%, #000000d9 100%);
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    padding: 2rem 1.5rem;
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0
}

.front-icon-box {
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    color: #fff;
    background: #ffffff26;
    border: 1px solid #ffffff1a;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    margin-bottom: .75rem;
    display: flex
}

.card-front-content h3 {
    color: #fff;
    text-shadow: 0 2px 4px #0000004d;
    text-align: left;
    width: 100%;
    margin: 0 0 .5rem;
    font-size: 1.25rem;
    font-weight: 600
}

.hover-learn-more {
    opacity: .9;
    color: #ffffffe6;
    font-size: .8rem;
    font-weight: 400
}

.expertise-card-back {
    text-align: left;
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 2.5rem 2rem;
    display: flex;
    transform: rotateY(180deg)
}

.expertise-card-back .icon-box {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
    background: #2a7a8214;
    border-radius: 12px;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    display: flex
}

.expertise-card-back h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700
}

.expertise-card-back p {
    color: var(--text-light);
    flex-grow: 0;
    margin-bottom: 0;
    font-size: .9rem;
    line-height: 1.6
}

.timeline {
    border-left: 2px solid #0000001a;
    max-width: 800px;
    margin: 3rem auto 0;
    padding-left: 3rem;
    position: relative
}

.timeline-item {
    margin-bottom: 2rem;
    position: relative
}

.timeline-item:last-child {
    margin-bottom: 0
}

.timeline-dot {
    background-color: var(--primary-color);
    width: 14px;
    height: 14px;
    box-shadow: 0 0 0 1px var(--primary-color);
    z-index: 2;
    border: 3px solid #fff;
    border-radius: 50%;
    position: absolute;
    top: 2rem;
    left: calc(-3rem - 7px)
}

.timeline-content {
    background: #fbfbfb;
    border: 1px solid #0000000d;
    border-radius: 12px;
    padding: 2rem;
    transition: all .3s
}

.timeline-content:hover {
    background: #fff;
    border-color: #2a7a8233;
    transform: translate(5px);
    box-shadow: 0 10px 20px -5px #0000000d
}

.timeline-header {
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1rem;
    display: flex
}

.timeline-icon-box {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
    background: #2a7a821a;
    border-radius: 12px;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    display: flex
}

.timeline-info {
    flex-grow: 1
}

.timeline-info h3 {
    color: var(--secondary-color);
    margin: 0 0 .35rem;
    font-size: 1.15rem;
    font-weight: 700
}

.institution {
    color: var(--primary-color);
    font-size: .9rem;
    font-weight: 500;
    display: block
}

.timeline-year {
    color: var(--text-light);
    white-space: nowrap;
    padding-top: .25rem;
    font-size: .85rem;
    font-weight: 600
}

.timeline-content p {
    color: var(--text-light);
    margin-bottom: 0;
    margin-left: calc(48px + 1.5rem);
    font-size: .95rem;
    line-height: 1.6
}

@media (width<=768px) {
    .timeline {
        padding-left: 2rem
    }

    .timeline-dot {
        left: calc(-2rem - 7px)
    }

    .timeline-header {
        flex-direction: column;
        gap: .5rem
    }

    .timeline-year {
        margin-left: calc(48px + 1.5rem);
        font-size: .8rem;
        position: static
    }

    .timeline-content {
        padding: 1.5rem
    }
}

.certifications-card {
    background: #eef7f8;
    border-radius: 12px;
    max-width: 650px;
    margin: 0 auto;
    padding: 2rem
}

.cert-title {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600
}

.cert-grid {
    align-items: flex-start;
    gap: 1.25rem 2rem
}

.cert-item {
    align-items: flex-start;
    gap: .6rem;
    margin-bottom: 1rem;
    display: flex
}

.cert-item:last-child {
    margin-bottom: 0
}

.cert-dot {
    background-color: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    margin-top: .5rem
}

.cert-content h4 {
    color: var(--secondary-color);
    margin: 0 0 .1rem;
    font-size: .9rem;
    font-weight: 500
}

.cert-content span {
    color: var(--text-light);
    font-size: .8rem;
    font-weight: 400;
    display: block
}

.cert-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 2rem auto 0;
    display: grid
}

.cert-gallery-card {
    border: 1px solid var(--border-color);
    cursor: pointer;
    background: #fff;
    border-radius: 12px;
    transition: transform .25s, box-shadow .25s;
    overflow: hidden
}

.cert-gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px #00000014
}

.cert-gallery-image-wrapper {
    background: #f8f9fa;
    width: 100%;
    padding-top: 70%;
    position: relative
}

.cert-gallery-image {
    object-fit: contain;
    width: 100%;
    height: 100%;
    padding: 1rem;
    position: absolute;
    inset: 0
}

.cert-gallery-caption {
    text-align: center;
    padding: 1rem
}

.cert-gallery-caption h3 {
    color: var(--secondary-color);
    margin: 0 0 .25rem;
    font-size: 1rem;
    font-weight: 600
}

.cert-gallery-caption p {
    color: var(--text-light);
    margin: 0;
    font-size: .9rem
}

.cert-lightbox {
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    background: #000000e6;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    transition: opacity .25s, visibility .25s;
    display: flex;
    position: fixed;
    top: 0;
    left: 0
}

.cert-lightbox.active {
    opacity: 1;
    visibility: visible
}

.cert-lightbox-content {
    max-width: 92%;
    max-height: 92vh;
    position: relative
}

.cert-lightbox-image {
    border-radius: 8px;
    max-width: 100%;
    max-height: 92vh;
    display: block
}

.cert-lightbox-close {
    color: #fff;
    cursor: pointer;
    background: 0 0;
    border: none;
    padding: 0;
    font-size: 34px;
    line-height: 1;
    position: absolute;
    top: -44px;
    right: 0
}

@media (width<=1024px) {
    .cert-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media (width<=768px) {
    .certifications-card {
        padding: 2rem
    }

    .cert-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    .cert-gallery-grid {
        grid-template-columns: 1fr
    }
}

.patient-care-grid {
    margin-bottom: 4rem
}

.care-card {
    border: 1px solid var(--border-color);
    background: #fff;
    border-radius: 12px;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    transition: all .3s;
    display: flex
}

.care-card:hover {
    border-color: #2a7a824d;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px #0000000d
}

.care-icon-box {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
    background: #eef7f8;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    display: flex
}

.care-card h3 {
    color: var(--secondary-color);
    margin-bottom: .75rem;
    font-size: 1.15rem;
    font-weight: 600
}

.care-card p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: .95rem;
    line-height: 1.6
}

.commitment-box {
    text-align: center;
    background: #eef7f8;
    border: 1px solid #2a7a821a;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 4rem
}

.commitment-box h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700
}

.commitment-box p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.7
}

@media (width<=768px) {
    .patient-care-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    .commitment-box {
        padding: 2rem
    }
}

.slider-container {
    border-radius: 16px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px #00000026
}

.slider-track {
    transition: transform .5s ease-in-out;
    display: flex
}

.slide {
    min-width: 100%;
    position: relative
}

.slide img {
    object-fit: cover;
    width: 100%;
    height: 500px;
    display: block
}

.slide-overlay {
    color: #fff;
    background: linear-gradient(90deg, #000c, #0000);
    width: 60%;
    padding: 3rem;
    position: absolute;
    bottom: 0;
    left: 0
}

.slide-overlay h3 {
    text-shadow: 0 2px 4px #00000080;
    margin-bottom: .5rem;
    font-size: 1.5rem;
    font-weight: 600
}

.slide-overlay p {
    opacity: .9;
    text-shadow: 0 1px 2px #00000080;
    margin-bottom: 0;
    font-size: 1rem
}

.slider-nav {
    cursor: pointer;
    z-index: 10;
    width: 44px;
    height: 44px;
    color: var(--secondary-color);
    background: #fff;
    border: none;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    transition: all .2s;
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 4px 10px #0000001a
}

.slider-nav:hover {
    background: var(--primary-color);
    color: #fff
}

.prev-btn {
    left: 20px
}

.next-btn {
    right: 20px
}

.slider-dots {
    z-index: 10;
    gap: 8px;
    display: flex;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%)
}

.dot {
    cursor: pointer;
    background: #ffffff80;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    transition: all .3s
}

.dot.active {
    background: #fff;
    transform: scale(1.2)
}

@media (width<=768px) {
    .slide img {
        height: 350px
    }

    .slide-overlay {
        background: linear-gradient(#0000, #000c);
        width: 100%;
        padding: 1.5rem
    }
}

.about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 4rem;
    display: grid
}

.about-text {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.8
}

.highlight-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    display: grid
}

.highlight-item {
    align-items: flex-start;
    gap: 1rem;
    display: flex
}

.highlight-icon {
    width: 48px;
    height: 48px;
    color: var(--secondary-color);
    background-color: #45b7d026;
    border-radius: 50%;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    display: flex
}

.highlight-title {
    color: var(--text-light);
    margin: 0;
    font-size: .9rem;
    font-weight: 500
}

.highlight-desc {
    color: var(--secondary-color);
    margin: .25rem 0 0;
    font-size: 1rem;
    font-weight: 600
}

.about-image-wrapper {
    background-color: #e6f6f8;
    border-radius: 20px;
    justify-content: center;
    align-items: flex-end;
    height: 80%;
    min-height: 250px;
    display: flex;
    position: relative;
    overflow: hidden
}

.about-image {
    object-fit: cover;
    object-position: center;
    mix-blend-mode: multiply;
    width: 100%;
    height: 100%;
    margin-top: 40px;
    display: block
}

.testimonial-card {
    background: #fff;
    border: 1px solid #0000000d;
    border-radius: 12px;
    flex-direction: column;
    height: 100%;
    padding: 2.5rem;
    transition: transform .3s;
    display: flex;
    box-shadow: 0 4px 20px #0000000d
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px #00000014
}

.quote-icon {
    margin-bottom: 1.5rem
}

.stars {
    color: #45b7d0;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-size: 1.2rem
}

.testimonial-text {
    color: var(--text-main);
    flex-grow: 1;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.7
}

.client-info h4 {
    color: var(--secondary-color);
    margin-bottom: .25rem;
    font-size: 1.1rem;
    font-weight: 600
}

.client-info p {
    color: var(--text-light);
    margin: 0;
    font-size: .9rem
}

.clinic-info-grid {
    align-items: stretch
}

.clinic-details {
    flex-direction: column;
    gap: 1.5rem;
    display: flex
}

.clinic-card {
    background: #fff;
    border: 1px solid #0000000d;
    border-radius: 12px;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    display: flex
}

.clinic-icon {
    width: 40px;
    height: 40px;
    color: var(--secondary-color);
    background-color: #45b7d01a;
    border-radius: 8px;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    display: flex
}

.clinic-text h3 {
    color: var(--secondary-color);
    margin-bottom: .5rem;
    font-size: .95rem;
    font-weight: 600
}

.clinic-text p {
    color: var(--text-light);
    margin: 0;
    font-size: .95rem;
    line-height: 1.6
}

.w-100 {
    width: 100%
}

.hours-row {
    color: var(--text-light);
    justify-content: space-between;
    margin-bottom: .5rem;
    font-size: .9rem;
    display: flex
}

.hours-row:last-child {
    margin-bottom: 0
}

.map-container {
    border-radius: 20px;
    height: 100%;
    min-height: 500px;
    overflow: hidden
}

.map-placeholder {
    text-align: center;
    background-color: #e6f6f8;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex
}

.map-content {
    color: var(--secondary-color)
}

.map-icon {
    justify-content: center;
    margin-bottom: 1rem;
    display: flex
}

.map-content h3 {
    margin-bottom: .5rem;
    font-size: 1.2rem
}

.map-content p {
    opacity: .8;
    font-size: .9rem
}

@media (width<=768px) {
    .map-container {
        order: -1;
        min-height: 300px
    }
}

.doctor-quote-container {
    text-align: center;
    border-left: 4px solid #3B604C;
    border-right: 4px solid #3B604C;
    background: linear-gradient(135deg, #2a7a8214 0%, #fff0 100%);
    border-radius: 12px;
    max-width: 900px;
    margin-bottom: 4rem;
    margin-left: auto;
    margin-right: auto;
    padding: 4rem 2rem;
    position: relative
}

.doctor-quote-text {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-family: Playfair Display, serif;
    font-size: 2.2rem;
    font-style: italic;
    line-height: 1.5;
    position: relative
}

.doctor-quote-text:before {
    content: "";
    color: #2a7a821a;
    z-index: 0;
    font-size: 6rem;
    position: absolute;
    top: -3rem;
    left: 50%;
    transform: translate(-50%)
}

.doctor-quote-divider {
    background-color: var(--accent-color);
    border-radius: 2px;
    width: 80px;
    height: 3px;
    margin: 0 auto 1.5rem
}

.doctor-quote-author {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: Inter, sans-serif;
    font-size: 1.1rem;
    font-weight: 700
}

.floating-call-btn {
    background-color: var(--primary-color);
    color: #fff;
    z-index: 9999;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    text-decoration: none;
    transition: all .3s;
    animation: 2s infinite pulse-border;
    display: flex;
    position: fixed;
    bottom: 25px;
    right: 25px;
    box-shadow: 0 4px 12px #2a7a8266
}

.floating-call-btn:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1)
}

.floating-call-btn svg {
    stroke: #fff;
    fill: none;
    width: 28px;
    height: 28px
}

@keyframes pulse-border {
    0% {
        box-shadow: 0 0 #2a7a82b3
    }

    70% {
        box-shadow: 0 0 0 15px #2a7a8200
    }

    to {
        box-shadow: 0 0 #2a7a8200
    }
}

.floating-whatsapp-btn {
    color: #fff;
    z-index: 9999;
    background-color: #25d366;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    text-decoration: none;
    transition: all .3s;
    display: flex;
    position: fixed;
    bottom: 100px;
    right: 25px;
    box-shadow: 0 4px 12px #25d36666
}

.floating-whatsapp-btn:hover {
    background-color: #128c7e;
    transform: scale(1.1)
}

.floating-whatsapp-btn svg {
    stroke: #fff;
    fill: #fff;
    width: 30px;
    height: 30px
}

.form-success-toast {
    color: #fff;
    z-index: 3000;
    opacity: 0;
    background-color: #48bb78;
    border-radius: 8px;
    align-items: center;
    gap: 12px;
    padding: 1rem 2rem;
    transition: all .4s cubic-bezier(.175, .885, .32, 1.275);
    display: flex;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transform: translateY(100px);
    box-shadow: 0 4px 12px #00000026
}

.form-success-toast.active {
    opacity: 1;
    transform: translateY(0)
}

.form-success-toast svg {
    width: 24px;
    height: 24px
}

#certifications {
    background-color: var(--bg-light);
    padding: 5rem 0
}

.cert-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    display: grid
}

.cert-card {
    background: #fff;
    border: 1px solid #0000000d;
    border-radius: 12px;
    transition: transform .3s, box-shadow .3s;
    overflow: hidden;
    box-shadow: 0 4px 20px #0000000d
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px #0000001a
}

.cert-image-wrapper {
    background: #f8f9fa;
    border-bottom: 1px solid #0000000d;
    padding-top: 75%;
    position: relative
}

.cert-image {
    object-fit: contain;
    width: 100%;
    height: 100%;
    padding: 1rem;
    position: absolute;
    top: 0;
    left: 0
}

.cert-caption {
    text-align: center;
    padding: 1.5rem
}

.cert-caption h3 {
    color: var(--secondary-color);
    margin-bottom: .5rem;
    font-size: 1.1rem;
    font-weight: 600
}

.cert-caption p {
    color: var(--text-light);
    margin: 0;
    font-size: .9rem
}

#about {
    padding-bottom: .1rem
}

#expertise {
    padding-top: .1rem
}

.lightbox-modal {
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    background-color: #000000e6;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    transition: all .3s;
    display: flex;
    position: fixed;
    top: 0;
    left: 0
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    animation: .3s zoomIn;
    position: relative
}

.lightbox-image {
    border-radius: 4px;
    max-width: 100%;
    max-height: 90vh;
    display: block;
    box-shadow: 0 5px 25px #00000080
}

.lightbox-close {
    color: #fff;
    cursor: pointer;
    background: 0 0;
    border: none;
    padding: 0;
    font-size: 30px;
    line-height: 1;
    transition: transform .2s;
    position: absolute;
    top: -40px;
    right: 0
}

.lightbox-close:hover {
    color: var(--primary-color);
    transform: scale(1.2)
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(.9)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.cert-card {
    cursor: pointer
}

.cert-image-wrapper:after {
    content: "";
    opacity: 0;
    background: #0000001a;
    width: 100%;
    height: 100%;
    transition: opacity .3s;
    position: absolute;
    top: 0;
    left: 0
}

.cert-card:hover .cert-image-wrapper:after {
    opacity: 1
}

.cert-card:hover .cert-image {
    transition: transform .5s;
    transform: scale(1.05)
}

.contact-grid {
    align-items: flex-start
}

.contact-cards {
    flex-direction: column;
    gap: 1.5rem;
    display: flex
}

.contact-card {
    background: #fff;
    border: 1px solid #0000000d;
    border-radius: 12px;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    transition: transform .2s, box-shadow .2s;
    display: flex
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px #0000000d
}

.highlight-card {
    background-color: #f8fdfe;
    border-color: #45b7d033
}

.contact-icon {
    width: 48px;
    height: 48px;
    color: var(--secondary-color);
    background-color: #45b7d01a;
    border-radius: 8px;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    display: flex
}

.contact-info h3 {
    color: var(--secondary-color);
    margin-bottom: .25rem;
    font-size: 1rem;
    font-weight: 600
}

.contact-info p {
    color: var(--text-main);
    margin: 0;
    font-size: 1.05rem;
    font-weight: 500
}

.contact-subtext {
    color: var(--text-light);
    margin-top: .25rem;
    font-size: .85rem;
    display: block
}

.small-text {
    line-height: 1.5;
    color: var(--text-light) !important;
    font-size: .95rem !important;
    font-weight: 400 !important
}

.contact-form-container {
    background: #fff;
    border: 1px solid #0000000d;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px #00000005
}

.form-group {
    margin-bottom: 1.5rem
}

.form-group label {
    color: var(--text-main);
    margin-bottom: .5rem;
    font-size: .95rem;
    font-weight: 500;
    display: block
}

.form-group input,
.form-group textarea {
    border: 1px solid var(--border-color);
    width: 100%;
    color: var(--text-main);
    background-color: #fcfcfc;
    border-radius: 8px;
    padding: .8rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    transition: all .2s
}

.form-group textarea {
    resize: vertical;
    min-height: 150px
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 0 4px #45b7d01a
}

.form-disclaimer {
    text-align: center;
    color: var(--text-light);
    opacity: .8;
    margin-top: 1.5rem;
    font-size: .85rem
}

.contact-form .error {
    border-color: #ef4444 !important
}

.error-message {
    color: #ef4444;
    margin-top: .25rem;
    font-size: .875rem;
    display: block
}

.btn.loading {
    opacity: .7;
    cursor: not-allowed
}

.spinner {
    border: 2px solid #ffffff40;
    border-top-color: #fff;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    animation: 1s linear infinite spin;
    display: inline-block
}

@keyframes spin {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

@media (width<=768px) {
    .contact-form-container {
        padding: 1.5rem
    }
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem
}

section {
    padding: var(--section-padding)
}

.expertise-section {
    background-color: var(--bg-light);
    z-index: 1;
    position: relative
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 4rem;
    display: grid
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    display: grid
}

.section-title {
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem
}

.section-subtitle {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: .75rem;
    font-size: .875rem;
    font-weight: 600;
    display: block
}

.section-description {
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.7
}

.hero {
    padding: 3rem 0 5rem;
    overflow: hidden;
    background-color: #E0F0E6;
}

.hero-subtitle {
    color: #3B604C;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: .5rem;
    font-size: 1.5rem;
    font-weight: 600;
    display: block
}

.hero-title {
    color: var(--secondary-color);
    margin: 1rem 0;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2
}

.hero-description {
    color: var(--text-light);
    max-width: 600px;
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 1.6
}

.hero-actions {
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    display: flex
}

.stats {
    border-top: 1px solid var(--border-color);
    margin-top: 2rem;
    padding-top: 2rem
}

.stat-number {
    color: var(--primary-color);
    margin-bottom: .25rem;
    font-size: 2rem;
    font-weight: 700
}

.stat-label {
    color: var(--text-light);
    font-size: .875rem
}

.hero-image-wrapper {
    background: radial-gradient(circle, #2a7a821a 0%, #0000 70%);
    border-radius: 20px;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    height: 500px;
    display: flex;
    position: relative;
    overflow: hidden
}

.hero-image-wrapper img {
    object-fit: contain;
    filter: drop-shadow(0 10px 20px #0000001a);
    z-index: 1;
    border-radius: 5%;
    max-width: 120%;
    height: auto;
    max-height: 100%
}

.about-text {
    text-align: justify;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8
}

.site-footer {
    color: #cbd5e0;
    background-color: #1a202c;
    padding: 5rem 0 2rem;
    font-size: .95rem
}

.footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    display: grid
}

.footer-col-info {
    max-width: 480px
}

.footer-brand {
    color: #fff;
    margin-bottom: .25rem;
    font-size: 1.5rem;
    font-weight: 700
}

.footer-designation {
    color: #a0aec0;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    display: block
}

.footer-bio {
    margin-bottom: 2rem;
    line-height: 1.6
}

.footer-contact-list {
    flex-direction: column;
    gap: .8rem;
    display: flex
}

.contact-li {
    align-items: flex-start;
    gap: 10px;
    display: flex
}

.contact-li svg {
    color: #4fd1c5;
    flex-shrink: 0;
    margin-top: 3px
}

.footer-heading {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600
}

.footer-links-list {
    flex-direction: column;
    gap: .8rem;
    list-style: none;
    display: flex
}

.footer-links-list a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color .2s
}

.footer-links-list a:hover {
    color: #fff
}

.footer-hours-list {
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    display: flex
}

.footer-hours-list li {
    flex-direction: column;
    gap: .25rem;
    display: flex
}

.day-label {
    color: #fff;
    font-size: .9rem;
    font-weight: 500;
    display: block
}

.hours-value {
    color: #a0aec0;
    font-size: .85rem
}

.footer-divider {
    border-top: 1px solid #ffffff1a;
    margin-bottom: 2rem
}

.footer-bottom {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    display: flex
}

.footer-legal {
    gap: 2rem;
    display: flex
}

.footer-legal a {
    color: #a0aec0;
    font-size: .85rem;
    text-decoration: none;
    transition: color .2s
}

.footer-legal a:hover {
    color: #fff
}

.footer-copyright {
    color: #718096;
    font-size: .85rem
}

.footer-scroll-top {
    color: #fff;
    cursor: pointer;
    background: #ffffff1a;
    border: none;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    transition: all .2s;
    display: flex
}

.footer-scroll-top:hover {
    background: #fff3;
    transform: translateY(-2px)
}

.footer-disclaimer {
    text-align: center;
    color: #718096;
    max-width: 900px;
    margin: 0 auto;
    font-size: .75rem;
    line-height: 1.5
}

@media (width<=992px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 3rem
    }
}

@media (width<=768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem
    }

    .footer-bottom {
        text-align: center;
        flex-direction: column;
        gap: 1.5rem
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem
    }
}

@media (width<=1024px) {
    .container {
        max-width: 90%
    }

    .grid-2,
    .grid-3 {
        gap: 3rem
    }
}

@media (width<=768px) {
    .section-title {
        font-size: 2rem
    }

    .mobile-toggle {
        cursor: pointer;
        background: 0 0;
        border: none;
        padding: .5rem;
        display: block
    }

    .mobile-toggle .bar {
        background-color: var(--secondary-color);
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all .3s;
        display: block
    }

    .nav-menu {
        background-color: var(--bg-white);
        border-top: 1px solid var(--border-color);
        z-index: 999;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        height: calc(100vh - 75px);
        margin-left: 0;
        padding-top: 3rem;
        transition: all .3s cubic-bezier(.4, 0, .2, 1);
        position: fixed;
        top: 75px;
        left: -100%;
        box-shadow: 0 10px 15px -3px #0000001a
    }

    .nav-menu.active {
        left: 0
    }

    .nav-links {
        text-align: center;
        flex-direction: column;
        gap: 2rem;
        width: 100%;
        margin: 0 0 3rem
    }

    .nav-actions {
        flex-direction: column;
        justify-content: center;
        gap: 1rem;
        width: 100%
    }

    .nav-actions .btn {
        width: 80%;
        max-width: 300px
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .hero .grid-2 {
        flex-direction: column-reverse;
        display: flex
    }

    .hero-content h1 {
        font-size: 2.5rem !important;
        line-height: 1.2 !important
    }

    .hero-content p {
        font-size: 1rem !important
    }

    .hero-description {
        text-align: justify
    }

    .hero-content .stats {
        padding-top: 1.5rem
    }

    .hero-content .stats.grid-3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem
    }

    .hero-content .stats h3 {
        font-size: 1.5rem !important
    }

    .hero-image div {
        height: 350px !important
    }

    .about-grid {
        grid-template-columns: 1fr
    }

    .btn {
        padding: .75rem 1.25rem;
        font-size: .875rem
    }

    .btn-wide {
        min-width: 160px
    }

    section {
        padding: 3rem 1rem
    }

    .footer-grid {
        text-align: center;
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .card {
        padding: 1.5rem
    }

    form input,
    form textarea,
    form select {
        font-size: 16px !important
    }

    .about-text {
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: left !important
    }

    .about-content {
        padding: 0 .5rem
    }
}

@media (width<=480px) {
    .container {
        padding: 0 1rem
    }

    .section-title {
        font-size: 1.75rem
    }

    .hero-content h1 {
        font-size: 2rem !important
    }

    .hero-content span {
        font-size: .75rem !important
    }

    .hero-image div {
        height: 300px !important
    }

    .btn {
        padding: .65rem 1rem;
        font-size: .8rem
    }

    .btn-wide {
        min-width: 140px
    }

    .hero-content .stats {
        gap: 1rem
    }

    .hero-content .stats h3 {
        font-size: 1.25rem !important
    }

    .hero-content .stats p {
        font-size: .75rem !important
    }

    .card {
        padding: 1.25rem
    }

    section {
        padding: 2.5rem 1rem
    }
}

.leaf-container {
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex
}

.leaf-card {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 35rem 30rem;
    justify-content: center;
    align-items: center;
    width: 490px;
    height: 314px;
    display: flex;
    background-size: 100% 100%;
}

.leaf-content {
    text-align: center;
    color: #1b3d2f;
    width: 65%;
    margin-left: 2.8rem;
    padding: 10px
}

.leaf-content h4 {
    margin-bottom: 8px;
    font-family: Noto Sans Devanagari, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2
}

.leaf-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4
}

.card-container {
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    display: grid
}

@media (width>=1024px) {
    .card-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px
    }
}

@media (width>=768px) and (width<=1023px) {
    .card-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px
    }
}

@media (width<=767px) {
    .card-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px
    }

    .leaf-content {
        width: 60%;
        margin-left: 1rem
    }

    .leaf-card {
        background-size: 26rem 26rem;
        width: 490px;
        height: 280px
    }

    .leaf-content h4 {
        margin-top: 10px;
        font-size: 15px
    }

    .leaf-content p {
        font-size: 12px
    }
}

.login-container {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
    display: flex
}

.login-card {
    text-align: center;
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 420px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px #0000001a
}

.form-options {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    display: flex
}

.checkbox-container {
    cursor: pointer;
    color: #666;
    -webkit-user-select: none;
    user-select: none;
    align-items: center;
    font-size: .9rem;
    display: flex
}

.checkbox {
    display: none
}

.checkmark {
    border: 2px solid #e1e5e9;
    border-radius: 4px;
    width: 18px;
    height: 18px;
    margin-right: 8px;
    transition: all .3s;
    position: relative
}

.checkbox:checked+.checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color)
}

.checkbox:checked+.checkmark:after {
    content: "✓";
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    position: absolute;
    top: -2px;
    left: 2px
}

.forgot-password {
    color: var(--primary-color);
    font-size: .9rem;
    font-weight: 500;
    text-decoration: none
}

.forgot-password:hover {
    text-decoration: underline
}

.register-link {
    color: #666;
    margin-top: 1.5rem;
    font-size: .9rem
}

.register-btn {
    color: var(--primary-color);
    margin-left: .25rem;
    font-weight: 600;
    text-decoration: none
}

.register-btn:hover {
    text-decoration: underline
}

.divider {
    color: #999;
    margin: 2rem 0;
    font-size: .9rem;
    position: relative
}

.divider:before {
    content: "";
    z-index: 1;
    background: #e1e5e9;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0
}

.divider span {
    z-index: 2;
    background: #fff;
    padding: 0 1rem;
    position: relative
}

.social-buttons {
    gap: 1rem;
    display: flex
}

.social-btn {
    cursor: pointer;
    background: #fff;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    flex: 1;
    padding: 12px;
    font-size: .95rem;
    font-weight: 600;
    transition: all .3s
}

.social-btn:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px #0000001a
}

.social-btn.google {
    color: #db4437
}

.social-btn.github {
    color: #333
}

@media (width<=480px) {
    .login-card {
        margin: 1rem;
        padding: 2rem 1.5rem
    }

    .title {
        font-size: 1.75rem
    }

    .social-buttons {
        flex-direction: column
    }
}

.registration-container {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
    display: flex
}

.registration-card {
    text-align: center;
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 400px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px #0000001a
}

.title {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: .5rem;
    font-size: 2rem;
    font-weight: 700
}

.subtitle {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1rem
}

.form {
    flex-direction: column;
    gap: 1.5rem;
    display: flex
}

.form-group {
    text-align: left
}

.label {
    color: var(--primary-color);
    margin-bottom: .5rem;
    font-size: .9rem;
    font-weight: 600;
    display: block
}

.input {
    background: #f8f9fa;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all .3s
}

.input:focus {
    border-color: var(--primary-color);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px #3b82f61a
}

.input.error {
    border-color: #ef4444
}

.error {
    color: #ef4444;
    margin-top: .5rem;
    font-size: .875rem;
    font-weight: 500
}

.submit-btn {
    background: var(--primary-color);
    color: #fff;
    cursor: pointer;
    border: none;
    border-radius: 12px;
    margin-top: .5rem;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    transition: all .3s
}

.submit-btn:hover:not(:disabled) {
    background: color-mix(in srgb, var(--primary-color) 90%, black);
    transform: translateY(-1px);
    box-shadow: 0 10px 20px #3b82f64d
}

.submit-btn:disabled {
    opacity: .7;
    cursor: not-allowed;
    transform: none
}

.login-link {
    color: #666;
    margin-top: 1.5rem;
    font-size: .9rem
}

.login-link a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none
}

.login-link a:hover {
    text-decoration: underline
}

@media (width<=480px) {
    .registration-card {
        margin: 1rem;
        padding: 2rem 1.5rem
    }

    .title {
        font-size: 1.75rem
    }
}

.dashboard {
    background: #f8fafc;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
    display: flex
}

.sidebar {
    z-index: 100;
    background: #fff;
    flex-direction: column;
    width: 280px;
    height: 100vh;
    padding: 2rem 0;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 2px 0 10px #0000001a
}

.sidebar-header {
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
    padding: 0 2rem 2rem
}

.sidebar-header h2 {
    color: var(--primary-color);
    margin: 0 0 .5rem;
    font-size: 1.25rem
}

.role {
    color: #64748b;
    font-size: .875rem
}

.sidebar-nav {
    flex: 1;
    padding: 1rem 0
}

.nav-link {
    color: #475569;
    align-items: center;
    padding: 1rem 2rem;
    font-weight: 500;
    text-decoration: none;
    transition: all .3s;
    display: flex
}

.nav-link:hover {
    color: var(--primary-color);
    background: #f1f5f9
}

.nav-link.active {
    background: var(--primary-color);
    color: #fff
}

.icon {
    margin-right: 1rem;
    font-size: 1.2rem
}

.logout-btn {
    color: #dc2626;
    cursor: pointer;
    background: #fee2e2;
    border: none;
    border-radius: 12px;
    margin: 2rem;
    padding: 1rem;
    font-weight: 600;
    transition: all .3s
}

.logout-btn:hover {
    background: #fecaca
}

.main-content {
    flex: 1;
    margin-left: 280px;
    padding: 2rem
}

.dashboard-wrapper {
    min-height: 100vh
}

.tab-content {
    padding: 2rem 0
}

.action-btn.secondary {
    color: #475569;
    background: #f1f5f9;
    border: 2px solid #e2e8f0
}

.action-btn.secondary:hover {
    background: #e2e8f0
}

.dashboard-header {
    border-bottom: 1px solid #e2e8f0;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    display: flex
}

.dashboard-header h1 {
    color: var(--primary-color);
    margin: 0;
    font-size: 2rem
}

.header-actions {
    align-items: center;
    gap: 1rem;
    display: flex
}

.notification-btn {
    cursor: pointer;
    background: 0 0;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    display: flex;
    position: relative
}

.badge {
    color: #fff;
    background: #ef4444;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    font-size: .75rem;
    display: flex;
    position: absolute;
    top: 0;
    right: 0
}

.user-profile {
    cursor: pointer;
    background: #f8fafc;
    border-radius: 12px;
    align-items: center;
    gap: .75rem;
    padding: .75rem;
    display: flex
}

.profile-img {
    object-fit: cover;
    border-radius: 50%;
    width: 40px;
    height: 40px
}

.stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    display: grid
}

.stat-card {
    background: #fff;
    border-radius: 16px;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    transition: transform .3s;
    display: flex;
    box-shadow: 0 2px 10px #0000000d
}

.stat-card:hover {
    transform: translateY(-2px)
}

.stat-card.primary {
    border-left: 4px solid var(--primary-color)
}

.stat-card.success {
    border-left: 4px solid #10b981
}

.stat-card.warning {
    border-left: 4px solid #f59e0b
}

.stat-card.danger {
    border-left: 4px solid #ef4444
}

.stat-icon {
    font-size: 2.5rem
}

.stat-info h3 {
    margin: 0 0 .25rem;
    font-size: 2rem;
    font-weight: 700
}

.stat-info p {
    color: #64748b;
    margin: 0;
    font-size: .875rem
}

.content-area {
    background: #fff;
    border-radius: 20px;
    min-height: 400px;
    padding: 2rem;
    box-shadow: 0 10px 30px #0000001a
}

.cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    display: grid
}

.card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem
}

.card h3 {
    color: var(--primary-color);
    margin: 0 0 1.5rem
}

.appointment-list {
    flex-direction: column;
    gap: 1rem;
    display: flex
}

.appointment-item {
    border-left: 4px solid var(--primary-color);
    background: #fff;
    border-radius: 12px;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    display: flex
}

.status {
    border-radius: 20px;
    padding: .25rem .75rem;
    font-size: .75rem;
    font-weight: 600
}

.status.pending {
    color: #d97706;
    background: #fef3c7
}

.status.confirmed {
    color: #059669;
    background: #d1fae5
}

.quick-actions {
    flex-direction: column;
    gap: 1rem;
    display: flex
}

.action-btn {
    cursor: pointer;
    border: none;
    border-radius: 12px;
    padding: 1rem;
    font-weight: 600;
    transition: all .3s
}

.action-btn.primary {
    background: var(--primary-color);
    color: #fff
}

.action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px #0003
}

@media (width<=768px) {
    .sidebar {
        transform: translate(-100%)
    }

    .main-content {
        margin-left: 0
    }
}