
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Poppins", "Arial", sans-serif;
        }

        /* Color Variables */
        :root {
            --primary-color: #4caf50;
            --primary-light: #8bc34a;
            --primary-dark: #2e7d32;
            --secondary-color: #388e3c;
            --dark-color: #212121;
            --light-color: #f4f4f4;
            --accent-color: #ffc107;
            --accent-light: #ffe082;
            --text-light: #757575;
            --white: #ffffff;
        }

        @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

        body {
            line-height: 1.6;
            color: var(--dark-color);
            overflow-x: hidden;
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes slideInLeft {
            from {
                transform: translateX(-100px);
                opacity: 0;
            }

            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes slideInRight {
            from {
                transform: translateX(100px);
                opacity: 0;
            }

            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }

            100% {
                transform: scale(1);
            }
        }

        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateY(0);
            }

            40% {
                transform: translateY(-20px);
            }

            60% {
                transform: translateY(-10px);
            }
        }

        .animate-fadeIn {
            animation: fadeIn 1s ease forwards;
        }

        .animate-slideUp {
            animation: slideUp 0.8s ease forwards;
            opacity: 0;
        }

        .animate-slideInLeft {
            animation: slideInLeft 0.8s ease forwards;
            opacity: 0;
        }

        .animate-slideInRight {
            animation: slideInRight 0.8s ease forwards;
            opacity: 0;
        }

        .animate-pulse {
            animation: pulse 2s infinite;
        }

        .animate-bounce {
            animation: bounce 2s infinite;
        }

        /* Header Styles */
        .top-bar {
            background-color: var(--primary-dark);
            color: white;
            padding: 10px 5%;
            display: flex;
            justify-content: space-between;
            animation: fadeIn 0.8s ease;
        }

        .top-bar-right {
            display: flex;
            align-items: center;
        }

        .top-bar-right span {
            transition: all 0.3s ease;
        }

        .top-bar-right span:hover {
            color: var(--accent-light);
            transform: translateY(-2px);
        }

        .divider {
            margin: 0 15px;
            height: 15px;
            width: 1px;
            background-color: rgba(255, 255, 255, 0.5);
        }

        .navbar {
            background-color: var(--white);
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
            animation: slideInRight 0.8s ease;
            transition: padding 0.3s ease;
        }

        .navbar.scrolled {
            padding: 10px 5%;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-img {
            height: 50px;
            margin-right: 10px;
            transition: transform 0.3s ease;
        }

        .logo:hover .logo-img {
            transform: rotate(5deg);
        }

        .logo-text {
            font-weight: 600;
            font-size: 20px;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }

        .logo:hover .logo-text {
            color: var(--primary-dark);
            letter-spacing: 0.5px;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin: 0 15px;
            position: relative;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark-color);
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 8px 0;
            position: relative;
        }

        .nav-links a:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }

        .nav-links a:hover:after,
        .nav-links a.active:after {
            width: 100%;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary-color);
        }

        .appointment-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .appointment-btn:before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg,
                    transparent,
                    rgba(255, 255, 255, 0.2),
                    transparent);
            transition: all 0.5s ease;
            z-index: -1;
        }

        .appointment-btn:hover:before {
            left: 100%;
        }

        .appointment-btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
        }

        .hamburger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .hamburger:hover {
            transform: scale(1.1);
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px 0;
            background-color: var(--dark-color);
            transition: all 0.3s ease;
        }

        .hamburger:hover span {
            background-color: var(--primary-color);
        }

        /* Hero Section */
        .banner-slider {
            position: relative;
            overflow: hidden;
            width: 100%;
            height: 100vh;
        }

        .slides {
            display: flex;
            transition: transform 0.6s ease-in-out;
            height: 100%;
        }

        .slide {
            min-width: 100%;
            height: 100%;
            position: relative;
            display: none;
        }

        .slide.active {
            display: block;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .caption {
            position: absolute;
            bottom: 20%;
            left: 10%;
            color: #fff;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
            max-width: 600px;
        }

        .caption .subtitle {
            background: black;
            padding: 5px 15px;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .caption h1 {
            font-size: 2.5rem;
            font-weight: bold;
            margin: 1rem 0;
            line-height: 1.2;
        }

        .caption .btn {
            display: inline-block;
            padding: 10px 25px;
            background: #f57c00;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: background 0.3s;
        }

        .caption .btn:hover {
            background: #e56700;
        }

        /* Navigation buttons */
        .prev,
        .next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.7);
            border: none;
            padding: 10px;
            cursor: pointer;
            font-size: 2rem;
            z-index: 1000;
            border-radius: 50%;
        }

        .prev {
            left: 15px;
        }

        .next {
            right: 15px;
        }

        @media (max-width: 768px) {
            .caption h1 {
                font-size: 1.5rem;
            }

            .caption {
                bottom: 25%;
                left: 30%;
            }
        }

        /* Base */
        .jbh-contact-section {
            padding: 50px 20px;
            text-align: center;
            background: #fff;
        }

        .jbh-contact-title {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 30px;
            animation: fadeInDown 1s ease;
        }

        /* Container */
        .jbh-contact-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Contact Info */
        .jbh-contact-info {
            flex: 1;
            min-width: 280px;
            max-width: 400px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            animation: slideInLeft 1s ease;
        }

        .jbh-info-box {
            display: flex;
            background: #fff;
            padding: 20px;
            border: 1px solid #eee;
            align-items: center;
            border-radius: 8px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
        }

        .jbh-icon {
            background: #e76f00;
            color: white;
            font-size: 1.5rem;
            padding: 15px;
            border-radius: 50%;
            margin-right: 15px;
        }

        /* Form */
        .jbh-contact-form {
            flex: 1;
            min-width: 280px;
            max-width: 600px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            animation: slideInRight 1s ease;
        }

        .jbh-contact-form input,
        .jbh-contact-form textarea {
            padding: 15px;
            border: 1px solid #ddd;
            background: #f4f4f4;
            border-radius: 5px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s ease;
        }

        .jbh-contact-form input:focus,
        .jbh-contact-form textarea:focus {
            border-color: #e76f00;
        }

        /* Button */
        .jbh-contact-form button {
            background: #e76f00;
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s ease;
            align-self: flex-start;
        }

        .jbh-contact-form button:hover {
            background: #d55e00;
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .jbh-contact-container {
                flex-direction: column;
                align-items: center;
            }

            .jbh-contact-form {
                width: 100%;
            }

            .jbh-contact-info {
                width: 100%;
            }
        }

        .jbh-help-section {
            background-color: #4caf50;
            color: #fff;
            padding: 60px 20px;
            text-align: left;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .jbh-help-content {
            max-width: 900px;
        }

        .jbh-help-content h2 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .jbh-help-desc {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .jbh-help-call {
            font-size: 1.5rem;
            font-weight: 500;
        }

        .jbh-help-call span {
            font-weight: bold;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .jbh-help-content h2 {
                font-size: 2rem;
            }

            .jbh-help-call {
                font-size: 1.2rem;
            }
        }

        /* Footer */
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 50px 5% 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-section h3 {
            margin-bottom: 20px;
            color: var(--accent-color);
        }

        .footer-section p {
            margin-bottom: 10px;
        }

        .footer-section i {
            margin-right: 10px;
            color: var(--accent-color);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        @media (max-width: 768px) {
            footer {
                padding: 40px 20px 15px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .footer-section h3 {
                font-size: 1.1rem;
            }

            .footer-section p {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .footer-section h3 {
                font-size: 1rem;
            }

            .footer-section p {
                font-size: 0.85rem;
            }

            .footer-bottom {
                font-size: 0.8rem;
            }
        }
    