        :root {
            --primary-blue: #0DDAFF;
            --primary-orange: #FCC88E;
            --primary-black: #2c3e50;
            --white: #ffffff;
        }
        
        /* Hero Section Styles */
        .hero-section {
            position: relative;
            height: fit-content;
            margin-top: calc(-1 * var(--total-header-height));
            overflow: hidden;
        }

        .carousel-item {
            height: 100vh;
            position: relative;
            padding-top: 70px ;
        }

        .carousel-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: 1;
        }

        .carousel-background::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(13, 218, 255, 0.1) 0%, rgba(252, 200, 142, 0.1) 100%);
            z-index: 2;
        }

        .carousel-content {
            position: relative;
            z-index: 3;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            color: var(--primary-black);
            padding: 0 3rem;
        }

        .doctor-name {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--primary-black);
            text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
        }

        .doctor-specialization {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--primary-blue);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .doctor-expertise {
            font-size: 1.8rem;
            font-weight: 500;
            margin-bottom: 1rem;
            color: var(--primary-black);
            line-height: 1.4;
        }

        .doctor-description {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1rem;
            color: var(--primary-black);
            max-width: 600px;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .btn-read-more {
            background: transparent;
            color: var(--primary-black);
            border: 2px solid var(--primary-blue);
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-read-more:hover {
            background: var(--primary-blue);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(13, 218, 255, 0.3);
        }

        .btn-appointment {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
            color: var(--white);
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(13, 218, 255, 0.3);
        }

        .btn-appointment:hover {
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-blue));
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(13, 218, 255, 0.4);
        }

        /* Doctor Image Styles */
        .doctor-image-container {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .doctor-image {
            max-height: 70vh;
            max-width: 100%;
            object-fit: contain;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            position: relative;
            z-index: 2;
        }

        .image-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80%;
            height: 80%;
            border-radius: 15px;
            opacity: 0.1;
            z-index: 1;
        }

        /* Plus Sign Styles */
        .plus-sign {
            position: absolute;
            width: 100px;
            height: 100px;
            z-index: 10;
            filter: drop-shadow(rgba(0, 0, 0, 0.10) 0px 23px 6px);
            animation: floatUpDown 3s ease-in-out infinite;
        }

        .side-icons {
            position: absolute;
            width: 40px;
            height: 40px;
            z-index: 10;
            filter: drop-shadow(rgba(0, 0, 0, 0.10) 0px 23px 6px);
            animation: floatUpDown 3s ease-in-out infinite;
        }

        .side-icons.right-side {
            right: 10%;
            bottom: 20%;
            transform: translateY(-50%);
            animation-delay: 0s;
        }
         .side-icons.left-side {
            left: 14%;
            top: 45%;
            transform: translateY(-50%);
            animation-delay: 0s;
        }
         .side-icons.left-top-side {
            left: -10%;
            top: 16%;
            transform: translateY(-50%);
            animation-delay: 0s;
        }

        .plus-sign.top-right {
            top: 15%;
            right: 15%;
            animation-delay: 0.5s;
        }

        .plus-sign.bottom-left {
            bottom: 12%;
            left: 15%;
            animation-delay: 1s;
        }

        @keyframes floatUpDown {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-15px);
            }
        }

        /* Center Navigation Lines - Simple Horizontal Row */
        .center-navigation {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 100;
            background: rgba(255, 255, 255, 0.8);
            padding: 10px 20px;
            border-radius: 25px;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .nav-line {
            display: flex;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 5px;
        }

        .nav-line .line {
            width: 30px;
            height: 3px;
            background: var(--primary-black);
            opacity: 0.5;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .nav-line.active .line {
            width: 40px;
            background: var(--primary-blue);
            opacity: 1;
            box-shadow: 0 0 10px rgba(13, 218, 255, 0.5);
        }

        .nav-line:hover .line {
            width: 40px;
            opacity: 1;
            background: var(--primary-orange);
        }

        /* Remove text titles */
        .slide-title {
            display: none;
        }

        .nav-line:hover .slide-title,
        .nav-line.active .slide-title {
            opacity: 1;
            transform: translateX(0);
        }

        /* Animation Classes */
        .animate-fade-in {
            animation: fadeIn 1s ease-out;
        }

        .animate-slide-up {
            animation: slideUp 1s ease-out;
        }

        .animate-zoom-in {
            animation: zoomIn 1s ease-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Carousel Controls */
        .carousel-control-prev,
        .carousel-control-next {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            margin: 0 2rem;
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            background: var(--primary-blue);
            opacity: 1;
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            background-size: 30px 30px;
            filter: invert(0.5);
        }

        .carousel-control-prev:hover .carousel-control-prev-icon,
        .carousel-control-next:hover .carousel-control-next-icon {
            filter: invert(1);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .doctor-name {
                font-size: 2rem;
            }
            
            .center-navigation {
                right: 20px;
            }
            .carousel-content {
                padding: 2rem 1.5rem;
                text-align: center;
                align-items: center;
            }
        }

        @media (max-width: 992px) {
            .hero-section{
                margin-top: 0;
            }
            .doctor-image-container {
                height: 55vh;
                padding-top: 4rem;
                margin-bottom: 20px;
            }
            .doctor-image{
                height: 100%;
            }
            .carousel-content {
                height: auto;
                /* padding-bottom: 3rem; */
            }
            
             .center-navigation {
                position: fixed;
                bottom: 20px;
                top: auto;
                left: 50%;
                transform: translateX(50%);
                flex-direction: row;
                gap: 15px;
            }
            
            .plus-sign {
                width: 50px;
                height: 50px;
            }
        }

        @media (max-width: 768px) {
            .doctor-name {
                font-size: 2.2rem;
            }
            
            .doctor-specialization {
                font-size: 1.1rem;
            }
            
            .doctor-expertise {
                font-size: 1.3rem;
            }
            
            .doctor-description {
                font-size: 1rem;
            }
            .hero-section{
                margin-top: 0;
            }
            .doctor-image-container{
                padding-top: 2rem;
            }
            .doctor-image{
                height: 55vh;
            } 
            .carousel-content {
                padding: 0rem 1.5rem;
                text-align: center;
                padding-bottom: 20px;
                align-items: center;
                height: 100%;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
           .center-navigation {
                bottom: 20px;
                padding: 8px 15px;
                gap: 12px;
            }
            
            .nav-line .line {
                width: 25px;
            }
            
            .nav-line.active .line,
            .nav-line:hover .line {
                width: 35px;
            }
            
            .plus-sign {
                width: 35px;
                height: 35px;
            }
        }

        @media (max-width: 576px) {
            .doctor-name {
                font-size: 1.8rem;
            }
            .hero-section{
                margin-top: 0;
            }   
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-read-more,
            .btn-appointment {
                width: 100%;
                max-width: 250px;
            }
            .center-navigation {
                bottom: 15px;
                padding: 2px 39px;
                gap: 10px;
            }
            
            .nav-line .line {
                width: 20px;
                height: 2px;
            }
            
            .nav-line.active .line,
            .nav-line:hover .line {
                width: 30px;
            }
            
            .plus-sign {
                width: 30px;
                height: 30px;
            }
             .carousel-content {
                padding: 2rem 1.5rem;
                text-align: center;
                align-items: center;
            }
            .doctor-image-container{
                display: none;
            }
        }
 