    /* General Body Styles */
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            /* Removed overflow: hidden; from body to allow scrolling for content below */
        }

        .nav-first {
            background-color: #f6f6f6;
        }

        .nav-second {
            background-color: #F7A2D1;
        }

        /* .cal_icon_header {
        max-height: 22px;
        margin-top: 1px;
        margin-left: 10px;
        margin-right: 10px;
        } */

        .cal_icon_header {
    width: 27px;
    height: 27px;
}

.cart-count-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background-color: #dc3545; /* Red badge */
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 50%;
    line-height: 1;
}

        .mobile_header, .global_header {
            max-height: 16px; /* Adjust size of these icons if needed */
            vertical-align: middle;
            margin-right: 5px;
        }

        /* Header Top Bar */
        .header-top-info {
            background-color: #f6f6f6; /* Light gray background */
            padding: 8px 0;
            font-size: 0.9rem;
            color: #ED118B; /* Pink color for text */
        }

        .header-top-info p {
            font-weight: 500;
            margin-bottom: 0; /* Ensure no extra margin for paragraphs in the top bar */
        }

        /* Navbar */
        .navbar {
            border-bottom: 1px solid #d9d9d9;
            padding-top: 0.2rem;
            padding-bottom: 0.2rem;
        }

        .logo {
            max-height: 55px; 
            transform: scale(1.1); 
        }

        .navbar-nav .nav-link {
            color: #555;
            font-weight: 500;
            margin: 0 15px;
            font-size: 0.9rem;
            text-transform: uppercase;
        }

        .navbar-nav .nav-link.active,
        .navbar-nav .nav-link:hover {
            color: #DE5D83; /* Pink color for active/hover link */
        }

        .nav-icons .nav-link {
            font-size: 1.6rem;
            color: #555;
        }

        .nav-icons img:not(:last-child) {
        margin-right: 10px;
         }

        /* Hero Banner Container */
        .hero-banner-container-wrapper {
            padding-top: 20px; /* Space between navbar and banner */
            padding-bottom: 20px;
        }
        
        .hero-banner-container {
            position: relative;
            width: 100%; /* Take full width of its parent Bootstrap container */
            border-radius: 25px; 
            overflow: hidden; /* Ensures image and content stay within border-radius */
            /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);  */
            margin: 0 auto; /* Center the banner if its parent is smaller than 100% width */
        }

        .background-image {
            width: 100%;
            height: auto;
            display: block;
        }

        .overlay-content {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 60%; /* Adjust width of the overlay text block */
            height: 100%;
            display: flex;
            justify-content: flex-end; /* Pushes content to the right */
            align-items: flex-end; /* Pushes content to the bottom */
            padding: 20px; /* Padding inside the overlay */
            box-sizing: border-box; /* Include padding in the width/height */
            /* background: linear-gradient(to left, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 50%);  */
        }

        .text-block {
           text-align: left;
            color: white;
            padding: 35px; /* Padding around the text and button */
            /* background-color: rgba(0, 0, 0, 0.4); 
             */
             background-color: #FFFFFF33;
            border-radius: 10px; /* Slightly rounded corners for the text block */
            margin-right: -9px; /* Adjust to move it more to the left from the right edge */
            margin-bottom: -19px;
            max-width: 430px; 
        }

        .main-text {
    margin-bottom: 10px;
    line-height: 1.2;
    font-family: "Aleo";
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    vertical-align: middle;
        }

        .sub-text {
            color: #FFFFFF;
            font-family: "Aleo";
            font-weight: 400;
            font-style: Bold;
            font-size: 32px;
            line-height: 100%;
            letter-spacing: 0%;
        }

        .book-appointment-button {
            background-color: #3170DA; 
            color: #FFFFFF;
            padding: 12px 25px;
            border: none;
            border-radius: 12px;
            font-size: 1em;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .book-appointment-button:hover {
            background-color: #0056b3; 
        }

        /* By Specialization Section */
        .specialization-section {
            padding: 40px 0;
            /* text-align: center; */
        }

        .specialization-section h2 {
            font-family: 'Aleo', serif;
            font-weight: 700;
            color: #333;
            margin-bottom: 40px;
        }

        .specialization-card {
            text-align: center;
            margin-bottom: 30px;
        }

        .specialization-card .icon-wrapper {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            border: 2px solid #ccc;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto 15px;
            transition: all 0.3s ease;
        }
        
        .specialization-card .icon-wrapper:hover {
            border-color: #DE5D83;
            background-color: #F7A2D1;
        }

        .specialization-card .icon {
            width: 50px; /* Adjust icon size */
            height: 50px; /* Adjust icon size */
            filter: invert(30%) sepia(85%) saturate(1900%) hue-rotate(300deg) brightness(80%) contrast(100%); /* Example filter for pinkish icon */
        }

        .specialization-card .icon-wrapper:hover .icon {
            filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%); /* White icon on hover */
        }

        .specialization-card p {
            font-size: 0.95em;
            font-weight: 500;
            color: #555;
        }

        /* Basic responsiveness for banner */
        @media (max-width: 992px) {
            .hero-banner-container {
                border-radius: 10px;
            }
            .main-text {
                font-size: 1.6em;
            }
            .sub-text {
                font-size: 1.1em;
            }

              .hero-carousel-container {
                border-radius: 10px;
            }
            .carousel-item img {
                height: 350px;
            }
            .carousel-caption h5 {
                font-size: 1.5em;
            }
            .carousel-caption p.sub-title {
                font-size: 1.0em;
            }
          
          
            .book-appointment-button {
                padding: 10px 20px;
            }
            .text-block {
                margin-right: 15px;
                margin-bottom: 15px;
            }
            .image-gallery-item img {
                height: 200px; 
            }
        }

        @media (max-width: 768px) {
            .hero-banner-container {
                border-radius: 0; /* Remove border-radius on smaller screens for full width */
            }

            .overlay-content {
                width: 100%;
                justify-content: center;
                align-items: center;
                text-align: center;
                background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
            }

            .text-block {
                margin: 0;
                max-width: 80%;
                text-align: center;
                background-color: rgba(0, 0, 0, 0.6); /* Slightly darker background on small screens */
            }

            .main-text {
                font-size: 1.5em;
            }

            .sub-text {
                font-size: 1em;
            }

            .hero-carousel-container {
                border-radius: 0;
            }
            .carousel-item img {
                height: 300px;
            }
            .carousel-caption {
                top: 10px;
                left: 10px;
                padding: 10px;
            }
            .carousel-caption h5 {
                font-size: 1.3em;
            }
            .carousel-caption p.sub-title {
                font-size: 0.9em;
            }
            .overlay-content-bottom-right {
                width: 100%;
                justify-content: center;
                align-items: center;
                text-align: center;
                /* background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%); */
            }
            .text-block-bottom-right {
                margin: 0;
                max-width: 80%;
                text-align: center;
                background-color: rgba(0, 0, 0, 0.6);
            }
        
            .services-section .row {
                    justify-content: center;
                }
                .service-card img {
                    height: 150px;
                }
                .service-card .card-body h5 {
                    font-size: 0.95em;
                }
                .service-card {
                    max-width: 350px;
                }

             .specialization-section .row, 
            .image-gallery-section .row {
                justify-content: center; 
            }
            .specialization-card, 
            .image-gallery-item {
                max-width: 350px; 
            }
            .image-gallery-item img {
                height: 180px; 
            }
      
            /* Navbar adjustments */
            .navbar-nav .nav-link {
                margin: 0 10px;
            }
            .navbar-nav {
                text-align: center;
            }
            .nav-icons {
                justify-content: center;
                margin-top: 10px;
            }

                .specialization-section .row, 
            .image-gallery-section .row,
            .blogs-section .row,
            .best-practice-section .row {
                justify-content: center;
            }
            .specialization-card, 
            .image-gallery-item,
            .blog-card,
            .feature-card {
                max-width: 350px;
            }
            .image-gallery-item img {
                height: 150px;
            }
            .best-practice-section .col-md-6.d-flex {
                flex-direction: column;
            }
            .best-practice-section .doctor-image-block {
                order: -1; /* Move doctor image above cards on small screens */
                margin-bottom: 30px;
            }
        }

        @media (max-width: 576px) {
            .header-top-info .container {
                flex-direction: column;
                align-items: flex-start !important;
            }
            .header-top-info p {
                margin-bottom: 5px !important;
            }
            .services-section {
              padding: 30px 0;
            }
            .service-card img {
                height: 120px;
            }
            .service-card .card-body h5 {
                font-size: 0.9em;
                min-height: unset;
            }
            .service-card {
                margin-bottom: 20px;
            }
            .image-gallery-item img {
                height: 150px; 
            }

            .carousel-item img {
                height: 250px;
            }
            .blog-card img {
                height: 120px;
            }
            .footer .col-md-3 {
                margin-bottom: 30px; /* Space between columns in footer */
            }
            .footer .subscribe-form .input-group {
                flex-direction: column;
            }
            .footer .subscribe-form .form-control {
                margin-bottom: 10px;
                width: 100% !important;
            }
            .footer .subscribe-form .btn {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .main-text {
                font-size: 1.2em;
            }

            .sub-text {
                font-size: 0.9em;
            }

            .book-appointment-button {
                padding: 10px 20px;
                font-size: 0.9em;
            }
              .carousel-caption h5 {
                font-size: 1.1em;
            }
            .carousel-caption p.sub-title {
                font-size: 0.8em;
            }
        }



        /* Hero Banner/Carousel Section */
        .hero-carousel-wrapper {
            padding-top: 20px;
            padding-bottom: 20px;
            /* background-color: #f0f2f5;  */
        }

        .hero-carousel-container {
            width: 100%;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
            margin: 0 auto;
        }

        .carousel-item img {
            width: 100%;
            height: 705px; /* Adjust height as needed for your images */
            object-fit: cover;
            display: block;
        }

        .carousel-caption {
            position: absolute;
            top: 0; /* Align to top for "Milestones Children Care" */
            left: 0; /* Align to left for "Milestones Children Care" */
            right: auto;
            bottom: auto;
            text-align: left;
            padding: 20px;
            color: white;
            z-index: 10;
        }

        .carousel-caption h5 {
            font-family: 'Aleo', serif;
            font-weight: 700;
            font-size: 1.8em;
            margin-bottom: 5px;
            background-color: rgba(0, 0, 0, 0.3); /* Semi-transparent background for readability */
            display: inline-block; /* Only background for the text content */
            padding: 5px 10px;
            border-radius: 5px;
            color: #ffffff;
        }

        .carousel-caption p.sub-title {
            font-size: 1.2em;
            /* background-color: rgba(0, 0, 0, 0.3); */
            /* display: inline-block; */
            padding: 5px 10px;
            border-radius: 5px;
        }

        .overlay-content-bottom-right {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 60%; /* Adjust width of the overlay text block */
            height: 100%;
            display: flex;
            justify-content: flex-end; /* Pushes content to the right */
            align-items: flex-end; /* Pushes content to the bottom */
            padding: 20px;
            box-sizing: border-box;
            background: linear-gradient(to left, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 50%);
        }

        .text-block-bottom-right {
            text-align: right;
            color: white;
            padding: 20px;
            /* background-color: rgba(0, 0, 0, 0.4); */
            border-radius: 10px;
            margin-right: 20px;
            margin-bottom: 20px;
            max-width: 400px;
        }

           .carousel-control-prev, 
        .carousel-control-next {
            width: 40px; /* Width of the circular button */
            height: 40px; /* Height of the circular button */
            background-color: rgba(255, 255, 255, 0.8); /* White background with some transparency */
            border-radius: 50%; /* Make it circular */
            opacity: 1; /* Ensure it's always visible, or adjust as needed */
            transition: background-color 0.3s ease;
            top: 50%; /* Center vertically */
            transform: translateY(-50%); /* Adjust for perfect vertical centering */
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            background-color: rgba(255, 255, 255, 1); /* Fully opaque white on hover */
        }

        .carousel-control-prev {
            left: 20px; /* Distance from the left edge */
        }

        .carousel-control-next {
            right: 20px; /* Distance from the right edge */
        }

        .carousel-control-prev-icon, 
        .carousel-control-next-icon {
            background-image: none; /* Remove Bootstrap's default background icon */
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%; /* Take full width of parent button */
            height: 100%; /* Take full height of parent button */
        }

        .carousel-control-prev-icon::after {
            content: '\2039'; /* Unicode for single left-pointing angle quotation mark */
            font-size: 2rem; /* Size of the arrow */
            color: #000000; /* Dark color for the arrow */
            font-weight: 100;
        }

        .carousel-control-next-icon::after {
            content: '\203A'; /* Unicode for single right-pointing angle quotation mark */
            font-size: 2rem; /* Size of the arrow */
            color: #000000; /* Dark color for the arrow */
            font-weight: 100;
        }



        /* ... (previous CSS code) ... */

        /* Image Gallery (New Section) */
        .image-gallery-section {
            background-color: #f0f2f5; /* Light background to match the top part */
            padding-top: 40px;
            padding-bottom: 40px;
        }

        .image-gallery-item {
            text-align: center;
            border-radius: 10px; /* Rounded corners for the images */
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for each image */
            height: 100%;
        }

        .image-gallery-item img {
            width: 100%;
            height: 250px; /* Fixed height for consistency */
            object-fit: cover; /* Ensure images fill the space */
            display: block;
        }

        /* Services Section */
            .services-section {
            padding: 60px 0;
            background-color: #FFFFFF;
        }

        .services-section h2 {
            font-family: 'Aleo', serif;
            font-weight: 700;
            color: #333;
            margin-bottom: 5px;
            text-align: center;
            font-size: 2.2em;
        }

        .services-section p.sub-heading {
            font-size: 1.2em;
            color: #666;
            margin-bottom: 40px;
            text-align: center;
        }

        .services-section .row {
            display: flex;
            flex-wrap: wrap;
        }

        .service-card {
            border: 1px solid #eee;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            background-color: #fff;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.12);
        }

        .service-card img {
            width: 100%;
            height: 359px;
            object-fit: cover;
            display: block;
        }

        .service-card .card-body {
            padding: 5px 15px;
            text-align: center;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .service-card .card-body h5 {
            /* font-size: 30px;
            font-family: 'Aleo', serif;
            font-weight: 500;
            color: #000000;
            margin-bottom: 0;
            line-height: 1;
            min-height: 2.8em;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis; */
            font-family: 'Aleo', serif;
            font-weight: 500;
            font-size: 21px;
            line-height: 1;
            letter-spacing: 0;
            text-align: center;
        }


            
              /* Blogs Section */
        .blogs-section {
            padding: 60px 0;
            background-color: #f0f2f5;
        }

        .blogs-section h2 {
            font-family: 'Aleo', serif;
            font-weight: 700;
            color: #333;
            margin-bottom: 40px;
            text-align: center;
        }

        .blog-card {
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%; /* Ensure cards are same height */
            display: flex;
            flex-direction: column;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .blog-card img {
            width: 100%;
            height: 180px; /* Fixed height for blog images */
            object-fit: cover;
            display: block;
        }

        .blog-card .card-body {
            padding: 20px;
            flex-grow: 1;
        }

        .blog-card .card-body h5 {
            font-size: 1.1em;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
            height: 3em; /* Limit title to 2 lines */
            overflow: hidden;
        }

        .blog-card .card-body p {
           font-family: "Poppins";
            font-weight: 300;
            font-style: Light;
            font-size: 16px;
            leading-trim: NONE;
            line-height: 28px;
            letter-spacing: 0%;
            color: #000000;
        }
        .solartext{
            font-family: "Poppins";
            font-weight: 300;
            font-style: Light;
            font-size: 16px;
            leading-trim: NONE;
            line-height: 28px;
            letter-spacing: 0%;
            text-decoration: underline;
            text-decoration-style: solid;
            text-decoration-offset: 0%;
            text-decoration-thickness: 0%;
            text-decoration-skip-ink: auto;
            color: #000000;

        }
        
        /* Best Practice We Offer Section */
        .best-practice-section {
            padding: 60px 0;
            background-color: #fff;
        }

        .best-practice-section h2 {
            font-family: 'Aleo', serif;
            font-weight: 700;
            color: #333;
            margin-bottom: 40px;
            text-align: center;
        }

        .feature-card {
            background-color: #f8f8f8;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            text-align: center;
            height: 100%; /* Ensure consistent card height */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .feature-card img.icon {
            width: 50px;
            height: 50px;
            margin-bottom: 15px;
            filter: brightness(0) saturate(100%) invert(30%) sepia(90%) saturate(2000%) hue-rotate(300deg) brightness(90%) contrast(100%); /* Pink icon */
        }

        .feature-card h5 {
            font-size: 1.05em;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
        }

        .feature-card p {
            font-size: 0.85em;
            color: #666;
            margin-bottom: 0;
        }

        .doctor-image-block {
            position: relative;
            height: 100%;
            min-height: 400px; /* Adjust as needed */
            display: flex;
            align-items: flex-end; /* Align image to bottom */
            justify-content: center;
        }
        .doctor-image-block img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Footer */
        .footer {
            background-color: #F7A2D1; /* Dark background */
            color: #f8f9fa; /* Light text */
            padding: 60px 0 0px;
            font-size: 0.9em;
        }

        .footer h5 {
            color: #FFFFFF; /* Pinkish heading color */
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer ul {
            list-style: none;
            padding: 0;
        }

        .footer ul li {
            margin-bottom: 10px;
        }

        .footer ul li a {
            color: #f8f9fa;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer ul li a:hover {
            color: #DE5D83;
        }

        .footer p {
            margin-bottom: 10px;
        }

        .footer-social-icons a {
            color: #f8f9fa;
            font-size: 1.2em;
            margin-right: 15px;
            transition: color 0.3s ease;
        }

        .footer-social-icons a:hover {
            color: #DE5D83;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 10px;
            padding-bottom: 10px;
            margin-top: 30px;
            color: #000000;
            background-color: #FFFFFF;
        }

        .footer-contact-info img {
            max-height: 18px;
            vertical-align: middle;
            margin-right: 8px;
        }

        .footer .subscribe-form .form-control {
            border-radius: 5px;
            border: none;
            padding: 10px 15px;
            background-color: #FFFFFF;
        }
        .footer .subscribe-form .form-control::placeholder {
            color:#d9d9d9;
        }

        .footer .subscribe-form .btn {
            background-color: #E559A7;
            color: white;
            border: none;
            border-radius: 5px;
            padding: 10px 20px;
            transition: background-color 0.3s ease;
        }
        .footer .subscribe-form .btn:hover {
            background-color: #DE5D83;
        }


        /* contact page */
.contact-inner {
   background-color: #f7f7f7;
   padding-top: 150px;
   padding-bottom: 60px;
   position: relative;
   z-index: 99;
}

.contact-inner h1 {
   font-size: 40px;
   font-weight: 700;
   margin-bottom: 0;
   text-align: center;
   color: rgb(51, 51, 51);
}


.contact-left-side h4 {
   font-size: 35px;
   margin-bottom: 50px;
   line-height: 50px;
   font-weight: 600;
   color: #fff;
}

.contact-left-side li {
   display: flex;
   align-items: center;
   margin-bottom: 50px;
}


.contact-left-side li span {
   display: inline-block;
   height: 50px;
   width: 50px;
   line-height: 50px;
   text-align: center;
   background-color: #F7A2D1;
   font-size: 22px;
   border-radius: 5px;
   margin-right: 10px;
   color: #fff;
}

.contact-left-side li h6 {
   font-size: 16px;
   font-weight: 500;
   color: #F7A2D1;
   text-transform: uppercase;
   letter-spacing: 1px;
}

.contact-left-side li a {
   display: inline-block;
   font-size: 16px;
   font-weight: 500;
   color: #fff;
}

.contact-left-side li a:hover {
   color: #F7A2D1;
   text-decoration: underline !important;
}

.contact-frm-list {
   padding: 35px;
   background-color: #212020;
}

.contact-frm-list h4 {
   font-size: 30px;
   font-weight: 700;
   margin-bottom: 40px;
   color: #fff;
}

.contact-frm-list .custom-frm-bx label {
   color: #fff;
   font-size: 16px;
   font-weight: 400;
}



.contact-thm-btn {
   display: inline-block;
   padding: 12px 35px;
   background-color: #F7A2D1;
   border-radius: 6px;
   color: #fff;
   font-size: 15px;
   font-weight: 600;
   border: 1px solid #F7A2D1;
}

.contact-thm-btn:hover {
   opacity: 0.8;
   color: #fff;
}

.contact-thm-btn.outline {
   background-color: transparent;
   color: #F7A2D1;
}

.contact-thm-btn.outline:hover {
   background-color: #F7A2D1;
   color: #fff;
   opacity: 1;
}

.tp-space {
   padding-top: 70px;
   padding-bottom: 70px
}


.media-slider-innr {
   width: 100%;
   overflow: hidden;
   cursor: pointer;
}

.media-slider-innr img {
   width: 100%;
   transition: 1s;
}

.media-slider-innr:hover img {
   transform: rotate(15deg) scale(1.5);
}

.contact-sec::after {
   position: absolute;
   content: '';
   left: 0;
   top: 0;
   height: 100%;
   width: 100%;
   background-color: #21202091;
   z-index: -9;
}

.custom-frm-bx {
   margin-bottom: 20px;
}

.custom-frm-bx .form-control, .custom-frm-bx .form-select {
   color: #000;
   height: 48px;
   border-radius: 0;
}

.custom-frm-bx textarea.form-control {
   height: 100px;
}
.contact-sec {
   background-image: url(../images/contact-bg.jpg);
   background-repeat: no-repeat;
   background-size: cover;
   background-attachment: fixed;
   position: relative;
   z-index: 999;
}

/* appoinment-service-detail */
.step-track li.deliver span {
   background-color: #F7A2D1;
   color: #fff;
}

.step-track {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 35px;
}

.step-track li {
   width: 33%;
   text-align: center;
   position: relative;
   z-index: 99;
}

.step-track li span {
   display: inline-block;
   height: 40px;
   width: 40px;
   background-color: #ccc;
   border-radius: 25px;
   color: #000;
   line-height: 40px;
   font-size: 16px;
   text-align: center;
   margin-bottom: 15px;
   position: relative;
   top: 0px;
}

.step-track li::after {
   position: absolute;
   content: '';
   left: 50%;
   top: 17px;
   height: 6px;
   width: 100%;
   background-color: #ccc;
   z-index: -9;
}

.step-track li:nth-last-child(1)::after {
   display: none;
}

.step-track li.deliver::after {
   background-color: #F7A2D1;
   color: #fff;
}



.new-services-lft .fc-toolbar {
   margin: 0;
   padding: 10px 10px;
   position: relative;
   background: #F7A2D1;
   display: flex;
   justify-content: space-between;
   align-items: center;
   border-radius: 8px 8px 0 0;
}

.new-services-lft .fc .fc-toolbar > * >:first-child {
   color: #fff;
   font-size: 18px;
   font-weight: 500;
}

.new-services-lft .fc-today-button {
   background-color: #fff;
   color: #000;
   display: none;
}

.new-services-lft .fc-center, .fc-clear {
   display: none !important;
}

.new-services-lft .fc-row.fc-widget-header .fc-day-header {
   padding-top: 0px;
   padding-bottom: 0px;
   background-color: rgb(50 29 227 / 10%);
   font-weight: 600;
   line-height: 36px;
}

.new-services-lft .fc-basic-view .fc-body .fc-row {
   min-height: auto;
}

.new-services-lft .fc table td, .new-services-lft .fc table th {
   padding: 0;
   cursor: pointer;
   line-height: 44px;
   text-align: center;
   font-weight: 400;
   border-color: #eee;
   vertical-align: middle;
   background-color: #fff;
}

.new-services-lft .fc-today .fc table {
   margin: 0;
   font-size: 14px;
   font-weight: 400;
}

.new-services-lft .fc-today.fc-state-highlight {
   background: #F7A2D1 !important;
   border-color: #F7A2D1 !important;
   border-radius: 5px !important;
   color: #fff;
   border: none;
   opacity: 1 !important;
}

.time-slots {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
}

.time-slots li {
   flex: 0 0 auto;
   width: 32%;
}

.time-slots-item input[type="radio"] {
   display: none;
}

.time-slots-item .time-slots-link {
   padding: 20px 16px;
   background-color: #fff;
   border-radius: 8px;
   box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
   cursor: pointer;
   font-size: 16px;
   color: #000;
   width: 100%;
   text-align: center;
}

.time-slots-item .time-slots-link.lable-active {
   background-color: #F7A2D1;
   color: #fff;
}
.new-appoinment-form{
        padding: 15px;
    background-color: #fff;
    box-shadow: 0px 0px 12px 0px #0000000D;
    border-radius: 10px;
}
.booking-lft h6{
   font-size: 20px;
   font-weight: 500;
   color: #333;
   margin-bottom: 10px;
}
.booking-lft .booking-lft-list li{
   margin-bottom: 8px;
   font-size: 15px;
   font-weight: 500;
   color: #848c92;
}
.booking-lft .booking-lft-list li span{
   color: #000;
}
.booking-rgt{
   padding: 15px;
   border: 1px solid #ccc;
}
.booking-rgt .custom-frm-bx{
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 15px;
}
.booking-rgt .custom-frm-bx button{
   padding: 12px 15px;
   background-color: #F7A2D1;
   color: #fff;
   font-size: 15px;
   font-weight: 500;
}
.booking-rgt .custom-frm-bx .form-control{
   border-right: 0;
}
.payment-list li{
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 10px 0;
   font-size: 15px;
   font-weight: 500;
   border-top: 1px solid #ccc;
}


/* login */
.login-btn {
    display: inline-block;
    padding: 12px 35px;
    background-color: #F7A2D1;
    border-radius: 6px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid #F7A2D1;
}

.createaccount{
    font-weight: 600 !important;
    color: #F7A2D1;
}

/* appointment-nav-btn */
.nav-appointment {
    margin-right: 20px;
}

@media (max-width: 768px) {
    .nav-appointment {
        margin-right: 10px;
    }
}

@media (max-width: 480px) {
    .nav-appointment {
        margin-right: 5px;
    }
}


/* confirm your booking */
.confirm_book {
    font-size: 16px;
    font-weight: 500;
    color: #F7A2D1;
    text-transform: uppercase;
}



.book-now {
   display: inline-block;
   padding: 12px 35px;
   background-color: #F7A2D1;
   border-radius: 6px;
   color: #fff;
   font-size: 15px;
   font-weight: 600;
   border: 1px solid #F7A2D1;
}

