/* body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: var(--bg-light);
} */

.topbar {
    background-color: var(--bg-light);
    border-bottom: 1px solid #ddd;
    padding: 8px 0;
    font-size: 14px;
    color: #555;
}

.topbar i {
    color: var(--primary);
    margin-right: 6px;
}

.navbar {
    background: linear-gradient(90deg, #6ab2ae, #ffffff, #d7b993);
    box-shadow: none;
    transition: all 0.3s ease;
    z-index: 1050;
    padding-bottom: 0px;
    padding-top: 0px;
}

.navbar.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.nav-item {
    font-size: 14px;
    font-weight: 500;

}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary);
}

.navbar-brand i {
    color: var(--accent);
    margin-right: 6px;
}

.nav-link {
    color: #000 !important;
    margin: 0 6px;
    position: relative;
    transition: color 0.3s;
}

/* .nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: 0.4s ease;
}

.nav-link:hover::after {
    width: 100%;
} */

.nav-link {
    color: #000 !important;
    margin: 0 6px;
    position: relative;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-link::before {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.4s ease;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link.dropdown-toggle::after {
    margin-left: 4px;
    vertical-align: middle;
}


.nav-link:hover {
    color: var(--primary) !important;
}



.btn-consult,
.btn-quick {
    border-radius: 0;
    padding: 8px 18px;
    font-weight: 500;
}

.btn-quick {
    background-color: #f8f5f0;
    color: #333;
    border: none;
}

.btn-consult {
    background: var(--accent);
    color: rgb(0, 0, 0);
    border: none;
}

.btn-consult:hover {
    color: rgb(0 0 0);
    background: #f8f5f0;
}

.btn-quick:hover {
    color: #000000;
    background: #ffffe5;
}

.btn-quick:hover,
.btn-consult:hover {
    opacity: 0.9;
}



:root {
    --primary: linear-gradient(90deg, #6ab2ae, #ffffff, #d7b993);
    --accent: linear-gradient(90deg, #6ab2ae, #ffffff, #d7b993);
    --bg-light: #ffebd2;
    --text-dark: #333;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #fffcf7;
    overflow-x: hidden;
}


/* Hero Section */

.hero-section {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #6ab2ae, #ffffff, #d7b993);
}

.hero-content {
    flex: 1 1 50%;
    padding: 60px 40px;
    animation: fadeInLeft 1.2s ease forwards;
}

.hero-content h5 {
    font-size: 1rem;
    letter-spacing: 2px;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content .highlight {
    background: var(--accent);
    color: #333;
    padding: 2px 6px;
}

.hero-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.hero-btn {
    background-color: var(--accent);
    color: #000;
    padding: 12px 24px;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.hero-btn a {
    text-decoration: none;
    color: #000;
}

.hero-btn:hover {
    background-color: #d3cc00;
}

.hero-image {
    flex: 1 1 50%;
    position: relative;
    overflow: hidden;
    animation: fadeInRight 1.2s ease forwards;
}

.hero-image img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
    filter: brightness(0.95);
}


/* Animations */

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
    }

    .hero-image img {
        clip-path: none;
        height: auto;
    }

    .hero-content {
        text-align: center;
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }
}

.about-section {
    background-color: #fff9f7;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
}

.container-about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    position: relative;
    min-width: 280px;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    display: block;
}

.badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary);
    color: #000000;
    padding: 15px 20px;
    font-weight: bold;
    font-size: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    line-height: 1.4;
}

.about-content {
    flex: 1;
    min-width: 280px;
}

.about-content h5 {
    color: #010101;
    font-size: 18px;
    margin-bottom: 10px;
}

.about-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-content .highlight {
    color: #010101;
}

.about-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: justify;
}

.about-points {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.about-points li {
    font-size: 15px;
    color: #444;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.about-points i {
    color: var(--accent);
    margin-right: 10px;
    font-size: 18px;
}

.learn-more-btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--primary);
    color: #000000;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.learn-more-btn:hover {
    background-color: var(--accent);
}


/* Responsive styles */

@media (max-width: 992px) {
    .container-about {
        flex-direction: column;
        gap: 40px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-content p,
    .about-points li {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .about-content h2 {
        font-size: 24px;
    }

    .badge {
        font-size: 14px;
        padding: 10px 15px;
    }

    .learn-more-btn {
        width: 100%;
        text-align: center;
    }
}

.why-choose-section {
    background: linear-gradient(to bottom, #fdfaf6, #f0ece4);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.container-choose {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.choose-header h5 {
    color: #2a2904;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.choose-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.choose-header .highlight {
    color: var(--accent);
}

.choose-header p {
    color: #555;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.choose-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.choose-card {
    background-color: white;
    border-radius: 20px;
    padding: 40px 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: rgb(107 179 175);
    color: white;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.choose-card h4 {
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 1.2rem;
}

.choose-card p {
    color: #666;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .choose-header h2 {
        font-size: 2rem;
    }
}

.services-section {
    background-color: #fdfaf6;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
}

.container-services {
    max-width: 1200px;
    margin: auto;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h5 {
    color: var(--accent);
    font-size: 18px;
}

.services-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 10px 0;
    color: var(--text-dark);
}

.services-header .highlight {
    color: var(--primary);
}

.services-header p {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-8px);
}

.image-container {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .image-container img {
    transform: scale(1.05);
}

.service-card:hover .image-overlay {
    opacity: 1;
}

.service-content {
    padding: 20px 20px;
}

.service-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-content h4 i {
    color: var(--accent);
    margin-right: 8px;
}

.service-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    text-align: justify;
}


/* Responsive Styles */

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-header h2 {
        font-size: 26px;
    }

    .service-content h4 {
        font-size: 18px;
    }

    .service-content p {
        font-size: 14px;
    }
}

.banner-section {
    position: relative;
    width: 100%;
    /* margin: 60px 0; */
    overflow: hidden;
}

.banner-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background-color: rgb(111 181 177 / 78%);
    /* green tint overlay */
    width: 100%;
    height: 100%;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    text-align: center;
    color: white;
    max-width: 800px;
    z-index: 3;
}

.banner-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.banner-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.banner-btn {
    background-color: var(--accent);
    color: rgb(0, 0, 0);
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.banner-btn:hover {
    background-color: #b18564;
}

@media (max-width: 768px) {
    .banner-content h2 {
        font-size: 1.8rem;
    }

    .banner-content p {
        font-size: 1rem;
    }
}

.doctors-section {
    padding: 100px 20px;
    background-color: #fdfaf6;
    text-align: center;
}

.container-doctors {
    max-width: 1200px;
    margin: auto;
}

.section-header h5 {
    color: var(--primary);
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-header .highlight {
    color: var(--accent);
}

.section-header p {
    max-width: 600px;
    margin: auto;
    color: #555;
    margin-bottom: 60px;
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding-left: 150px;
    padding-right: 150px;
}

.doctor-card {
    background-color: rgb(238 247 246);
    border-radius: 20px;
    padding: 80px 20px 30px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.doctor-card:hover {
    transform: translateY(-10px);
}

.doctor-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid #fff;
}

.doctor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-card h4 {
    margin-top: 20px;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--text-dark);
}

.doctor-card h6 {
    color: #000;
    font-weight: 500;
    margin: 10px 0;
}

.doctor-card p {
    font-size: 0.95rem;
    color: #555;
    padding: 0 10px;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons i {
    font-size: 1.2rem;
    color: var(--accent);
    transition: color 0.3s ease;
    cursor: pointer;
}

.social-icons i:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
}

.testimonial-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    overflow: hidden;
}

.testimonial-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -3;
}

.testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* dark overlay */
    z-index: -2;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    color: #fff;
    text-align: center;
    width: 100%;
}

.section-title h5 {
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--accent, #c8a97e);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 16px;
    color: #ddd;
    max-width: 600px;
    margin: auto;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #fff;
    color: #333;
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-card .stars {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 10px;
}

.testimonial-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.testimonial-card p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
}

.patient-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.patient-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.patient-info h6 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.patient-info span {
    font-size: 13px;
    color: #777;
}

.appointment-section {
    padding: 80px 20px;
    background-color: #fdfaf6;
    font-family: 'Poppins', sans-serif;
}

.appointment-content {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.appointment-image {
    position: relative;
    flex: 1;
    min-width: 300px;
    border-radius: 20px;
    overflow: hidden;
}

.appointment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.overlay-text {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom right, rgba(13, 26, 38, 0.5), rgba(13, 26, 38, 0.7));
    color: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.overlay-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.overlay-text h3 i {
    margin-right: 10px;
    color: var(--accent);
}

.overlay-text p {
    font-size: 16px;
    color: #eee;
    margin-bottom: 20px;
}

.paw-prints {
    display: flex;
    gap: 10px;
}

.paw-prints img {
    width: 40px;
    height: 40px;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.paw-prints img:hover {
    transform: scale(1.1) rotate(10deg);
}

.appointment-form-box {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.appointment-form-box h2 {
    font-size: 26px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.appointment-form .form-row {
    margin-bottom: 20px;
}

.appointment-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    color: #555;
}

.appointment-form input,
.appointment-form textarea,
.appointment-form select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    resize: none;
    font-family: 'Poppins', sans-serif;
}

.appointment-form textarea {
    height: 100px;
}

.btn-appointment {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary);
    color: #000000;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-appointment:hover {
    background-color: var(--accent);
}


/* Responsive Styles */

@media (max-width: 992px) {
    .appointment-content {
        flex-direction: column;
    }

    .appointment-image,
    .appointment-form-box {
        width: 100%;
    }

    .overlay-text {
        padding: 30px;
        text-align: center;
        align-items: center;
    }

    .overlay-text h3 {
        font-size: 24px;
    }

    .overlay-text p {
        font-size: 15px;
    }

    .paw-prints {
        justify-content: center;
    }

    .appointment-form-box {
        padding: 30px;
    }

    .appointment-form-box h2 {
        font-size: 24px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .overlay-text h3 {
        font-size: 20px;
        margin-top: 20px;
    }

    .overlay-text p {
        font-size: 13.5px;
    }

    .paw-prints img {
        width: 32px;
        height: 32px;
    }

    .btn-appointment {
        width: 100%;
        text-align: center;
    }
}

.blog-section {
    background-color: #fdfaf6;
    padding: 100px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    color: var(--primary, #c5be06);
    margin-bottom: 10px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent, #c8a97e);
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 16px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.blog-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.blog-entry {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.blog-entry:hover {
    transform: translateY(-5px);
}

.blog-entry.reverse {
    flex-direction: row-reverse;
}

.blog-img {
    flex: 1 1 45%;
    overflow: hidden;
    border-radius: 15px;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-entry:hover .blog-img img {
    transform: scale(1.05);
}

.blog-content {
    flex: 1 1 50%;
}

.blog-content h3 {
    font-size: 24px;
    color: var(--text-dark, #333);
    margin-bottom: 12px;
}

.blog-date {
    font-size: 14px;
    color: var(--accent, #c8a97e);
    display: inline-block;
    margin-bottom: 10px;
}

.blog-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary, #c5be06);
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.read-more:hover {
    color: var(--accent, #c8a97e);
}

.vet-footer {
    background-color: linear-gradient(90deg, #6ab2ae, #ffffff, #d7b993);
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 20px;
    background: linear-gradient(90deg, #6ab2ae, #ffffff, #d7b993);
    border-radius: 20px;
    margin-top: -50px;
    margin-bottom: 60px;
    gap: 30px;
    flex-wrap: wrap;
    color: #fff;
}

.footer-cta h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

.footer-cta p {
    font-size: 16px;
    margin: 0;
    color: #000;
}

.cta-button .cta-btn {
    padding: 12px 30px;
    background-color: #000000;
    color: var(--primary);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-button .cta-btn:hover {
    background-color: var(--text-dark);
    color: #fff;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact {
    flex: 1 1 300px;
}

.footer-contact .logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-contact p {
    margin: 5px 0;
    font-size: 15px;
    color: #000;
    text-align: justify;
}

.footer-contact i {
    margin-right: 8px;
    color: var(--accent);
}

.footer-social {
    margin-top: 15px;
}

.footer-social a {
    font-size: 18px;
    color: #fff;
    margin-right: 12px;
    background: #ffe2be;
    padding: 10px;
    border-radius: 8px;
    display: inline-block;
    transition: 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent);
    color: #0f172a;
}

.footer-links {
    display: flex;
    flex: 2 1 600px;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-links h5 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #000;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #000;
}

.footer-links li a {
    color: #000;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #aaa;
    background: #0c1221;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}


/*  new */
.breadcrumb {
    position: absolute;
    top: 25px;
    left: 30px;
    font-size: 1rem;
    color: #fff;
    z-index: 10;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.hero-text {
    margin-top: 60px;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: bold;
    line-height: 1.2;
    color: #fff;
}

.hero-text h1 span {
    color: #f6efe6;
}

.hero-text p {
    margin-top: 15px;
    font-size: 1.1rem;
    color: #e6e6e6;
    line-height: 1.6;
}

.services-hero {
    background: url('../images/service_banner.jpg') no-repeat center/cover;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
}

.services-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.2));
    z-index: 1;
    display: flex;
    align-items: center;
    height: 500px;
}

.services-hero .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .services-hero {
        height: 70vh;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .breadcrumb {
        font-size: 0.9rem;
        top: 20px;
        left: 20px;
    }
}


.tabs-section {
    background: #fff;
    margin-bottom: 80px;
}

.tabs-header {
    text-align: center;
    margin-bottom: 40px;
}

.tabs-header h2 {
    color: var(--primary);
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.tab-btn {
    padding: 10px 20px;
    border: none;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: var(--accent);
    color: #000000;
}

.tab-content {
    display: none;
    margin-top: 40px;
    font-size: 18px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.tab-content.active {
    display: block;
}

.tab-content-inner {
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
    align-items: flex-start;
    text-align: left;
}

.tab-content-inner p {
    flex: 1;
}

.tab-content-inner img {
    flex: 1;
    max-width: 450px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.steps-section {
    background: #fffaf5;
    margin-bottom: 80px;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.step-box {
    flex: 1;
    min-width: 230px;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.step-box h3 {
    background: var(--accent);
    color: #000;
    display: inline-block;
    padding: 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    font-size: 20px;
}

.step-box h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

@media (max-width: 768px) {

    .about-overview,
    .tab-content-inner,
    .steps-container {
        flex-direction: column;
        text-align: center;
    }
}

/* faq */
.faq-section {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 1rem;
    gap: 40px;
}

.faq-left {
    flex: 1 1 55%;
}

.faq-right {
    flex: 1 1 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-right img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
}

.faq-right img:hover {
    transform: scale(1.04) rotate(-1deg);
}

.faq-title {
    text-align: left;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-item:hover {
    box-shadow: 0 12px 40px rgba(109, 151, 115, 0.2);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
    font-size: 1.05rem;
    cursor: pointer;
    color: #d9bd98;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    padding-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 12px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

@media (max-width: 992px) {
    .faq-section {
        flex-direction: column;
        gap: 20px;
    }

    .faq-right {
        justify-content: flex-start;
    }

    .faq-title {
        text-align: center;
    }
}

@media (max-width: 768px) {
    header .content h1 {
        font-size: 2rem;
    }

    .faq-right img {
        max-width: 100%;
    }
}



/* contact  */
.contact-wrapper {
    max-width: 1300px;
    margin: 60px auto;
    padding: 0 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-box {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.contact-box h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 15px;
}

.info-item div {
    font-size: 15px;
}

iframe.map {
    width: 100%;
    height: 230px;
    border: 0;
    border-radius: 12px;
    margin-top: 20px;
}

.form-wrapper {
    background: linear-gradient(135deg, #eef4ee, #fdfaf6);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(109, 151, 115, 0.15);
}

.form-wrapper h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #444;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 1rem;
    background-color: white;
    transition: 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 6px var(--accent);
}

.submit-btn {
    background-color: var(--primary);
    color: rgb(0, 0, 0);
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s ease;
}

.submit-btn:hover {
    background-color: #5b7f60;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-contact h1 {
        font-size: 2.2rem;
    }
}


/* Services Tabs */


.services-tabs {
    text-align: center;
    margin-bottom: 30px;
}

.tab-btn {
    border: none;
    padding: 12px 20px;
    margin: 5px 5px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    background: rgb(219 192 157)sss;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: flex;
}


.ser-btn {
    padding: 7px 22px;
    border-radius: 30px;
    font-size: 14px;
    text-align: center;


}

.ser-btn .btn {
    margin-top: 0px;
    background: #deeeed;
}

.service-info h4 {
    color: #916c39;
    margin-bottom: 30px;
}

.service-info p {
    text-align: justify;
}



.services {
    align-items: center;
    text-align: center;
    margin-bottom: 12px;
    box-sizing: border-box;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.dropdown-item {
    text-align: left;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);

}

.dropdown-item.active {
    background-color: #6eb4b0;
    color: #fff;
    padding: 8px 10px;
}


/* Breadcrumb Wrapper */
.page-breadcrumb {
    height: 100px;
    /* background: url("../img/breadcrumb.jpg") center / cover no-repeat; */
    background: linear-gradient(90deg, #6cb3af, #fdfcfa, #d7ba95);
    position: relative;
    display: flex;
    align-items: center;
}

/* Dark overlay */
.page-breadcrumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 0%);
}

/* Inner content */
.page-breadcrumb-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Title */
.page-breadcrumb-title {
    color: #000;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}

/* Breadcrumb list */
.page-breadcrumb-list {
    list-style: none;
    display: flex;
    gap: 8px;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

/* Separator */
.page-breadcrumb-list li:not(:last-child)::after {
    content: "/";
    margin-left: 8px;
    color: #000;
}

/* Links */
.page-breadcrumb-list a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.page-breadcrumb-list a:hover {
    text-decoration: underline;
}

/* Active page */
.page-breadcrumb-list .active {
    color: #000;
    font-weight: 600;
}


.service-vid {
    border-radius: 12px;
    border: 2px solid rgb(109 180 176);
    padding: 3px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    height: auto;
}


/* Breadcrumb */
.page-breadcrumb {
    height: 220px;
    /* background: url("../images/breadcrumb.jpg") center/cover no-repeat; */
    background: linear-gradient(90deg, #6cb3af, #fdfcfa, #d7ba95);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-breadcrumb-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 6px;
}

.page-breadcrumb-list {
    list-style: none;
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 0;
    font-size: 16px;
}

.page-breadcrumb-list a {
    color: #000;
    text-decoration: none;
}

.page-breadcrumb-list .active {
    color: #000;
    font-weight: 600;
}

@media (max-width: 768px) {

    .page-breadcrumb-title {
        font-size: 24px;
    }

    .page-breadcrumb-list {
        font-size: 14px;
    }

    .services-hero-overlay {
        height: 416px;
    }

    .contact-box {
        padding: 0px;
    }


    .form-wrapper {
        padding: 0px;
    }


    .tab-content-inner p,
    .tab-content-inner li {
        text-align: left !important;
    }

    .doctors-grid {
        padding-left: 0px;
        padding-right: 0px;
        gap: 80px;
    }


}



.faq-item {
    transition: transform .2s ease, box-shadow .2s ease;
}

.faq-item.active {
    border-left: 5px solid #c5be06;
}


.faq-answer {
    display: none;
    opacity: 0;
    transform: translateY(-6px);
}

.faq-item.active .faq-answer {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeSlide .25s ease;
}


.gallery_wrapper img {
    border-radius: .9375rem;
}

.gallery_wrapper {
    padding: 50px 20px;
}

.tab-content-inner p,
ol {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: justify;
}

.more-btn {
    background-color: #c8a97e;
    padding: 7px 22px;
    border-radius: 30px;
    text-align: center;
    font-size: 14px;
    margin-left: 500px;
    margin-right: 500px;
}


@media (min-width: 1200px) {
    .navbar-new {
        padding: 4px 32px;
    }
}



/*  call buttons   */
/* Floating Buttons Wrapper */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Common Button Style */
.float-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 12px;
    border-radius: 50px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/* Icons */
.float-btn i {
    font-size: 18px;
}

/* Call Button */
.call-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

/* WhatsApp Button */
.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

/* Hover Effects */
.float-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.logo {
    width: 402px;
    height: auto;
}


@media (max-width: 576px) {
    .float-btn span {
        display: none;
    }

    .float-btn {
        padding: 14px;
        border-radius: 50%;
    }

    .float-btn {
        padding: 11px 11px;
        border-radius: 50px;
        color: #fff;
        font-size: 12px;
        font-weight: 400;
    }
        .logo {
    width: 278px;
    height: auto;
}


}


.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}