* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', 'Segoe UI', sans-serif;
        }

        body {
            background: #f8fafc;
            color: #1e293b;
            overflow-x: hidden;
        }

        /* Header */
        .main-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 40px;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        .main-header.scrolled {
            padding: 15px 40px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }

        .main-logo {
            display: flex;
            align-items: center;
            font-size: 24px;
            font-weight: 700;
            background: linear-gradient(135deg, #FF6F00, #3DA3D4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .main-logo i {
            margin-right: 8px;
            font-size: 26px;
        }

        .header-btns {
            display: flex;
            gap: 12px;
        }

        .main-btn {
            padding: 10px 24px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .btn-login {
            background: transparent;
            color: #64748b;
            border-color: #cbd5e1;
        }

        .btn-login:hover {
            border-color: #3DA3D4;
            color: #3DA3D4;
        }

        .btn-start {
            background: linear-gradient(135deg, #FF6F00, #3DA3D4);
            color: white;
            box-shadow: 0 4px 12px rgba(255, 111, 0, 0.3);
        }

        .btn-start:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 111, 0, 0.4);
        }

        /* Hero Section */
        .hero-main {
            min-height: 100vh;
            padding: 120px 40px 60px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        /* Hero Text */
        .hero-text-content {
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 111, 0, 0.1);
            color: #FF6F00;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
            animation: badgePulse 2s infinite;
        }

        @keyframes badgePulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .hero-title {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #1e293b, #3DA3D4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            opacity: 0;
            animation: slideUp 0.8s ease forwards 0.3s;
        }

        .hero-subtitle {
            font-size: 18px;
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 32px;
            opacity: 0;
            animation: slideUp 0.8s ease forwards 0.5s;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            opacity: 0;
            animation: slideUp 0.8s ease forwards 0.7s;
        }

        .hero-btn {
            padding: 14px 32px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #FF6F00, #3DA3D4);
            color: white;
            box-shadow: 0 4px 15px rgba(255, 111, 0, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 111, 0, 0.4);
        }

        .btn-secondary {
            background: white;
            color: #475569;
            border: 2px solid #e2e8f0;
        }

        .btn-secondary:hover {
            border-color: #3DA3D4;
            color: #3DA3D4;
            transform: translateY(-2px);
        }

        /* Hero video */
                .macbook-video-section {
            position: relative;
            width: 650px;
            height: auto;
            perspective: 1000px;
        }

        .macbook-frame {
            position: relative;
            width: 100%;
            height: auto;
            /* background: linear-gradient(145deg, #1e293b, #0f172a); */
            border-radius: 18px;
            /* box-shadow: 
                0 25px 60px rgba(0, 0, 0, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.1); */
            overflow: hidden;
            transform: translateZ(20px);
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            animation: float 6s ease-in-out infinite;
        }

        .macbook-frame:hover {
            transform: translateZ(30px) rotateX(-5deg);
            box-shadow: 
                0 35px 80px rgba(0, 0, 0, 0.7),
                0 0 50px rgba(56, 189, 248, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .macbook-topbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 20px;
            background: linear-gradient(135deg, #FF6F00, #3DA3D4);
            height: 38px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            z-index: 10;
        }

        .macbook-topbar-left {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .macbook-topbar .dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

        .macbook-topbar .dot.red {
            background: linear-gradient(145deg, #ff5f56, #e0443e);
        }

        .macbook-topbar .dot.yellow {
            background: linear-gradient(145deg, #ffbd2e, #e6a723);
        }

        .macbook-topbar .dot.green {
            background: linear-gradient(145deg, #27c93f, #20a838);
        }

        .macbook-topbar .dot:hover {
            transform: scale(1.2);
        }

        .camera {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #1e293b;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
        }

        .macbook-screen {
            position: relative;
            width: 100%;
            height: auto;
            overflow: hidden;
            background: transparent;
        }

        .macbook-screen video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(1.05) contrast(1.1) saturate(1.1);
            transition: all 0.8s ease;
        }

        .macbook-frame:hover .macbook-screen video {
            filter: brightness(1.1) contrast(1.15) saturate(1.2);
        }

        .screen-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(56, 189, 248, 0.05) 0%, transparent 50%);
            pointer-events: none;
            mix-blend-mode: overlay;
        }

        .screen-glow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(56, 189, 248, 0.2) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.8s ease;
            pointer-events: none;
        }

        .macbook-frame:hover .screen-glow {
            opacity: 1;
        }

      
       

        /* Animations */
        @keyframes float {
            0%, 100% {
                transform: translateZ(20px) translateY(0) rotateY(0);
            }
            50% {
                transform: translateZ(20px) translateY(-15px) rotateY(3deg);
            }
        }

        @keyframes fadeIn {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .macbook-frame {
            animation: fadeIn 1.2s ease forwards;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .macbook-video-section {
                width: 95%;
                height: 300px;
            }
        }

        @media (max-width: 480px) {
            .macbook-video-section {
                height: 250px;
            }
            
            .keyboard {
                bottom: -50px;
                height: 30px;
            }
        }



/* video css */


/* Popup Overlay */
.video-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    z-index: 999;
    backdrop-filter: blur(5px);
    transition: opacity 0.5s ease;
}

/* Active State */
.video-popup-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Popup Container */
.video-popup {
    position: relative;
    background: linear-gradient(135deg, #FF6F00, #3DA3D4);
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(255,255,255,0.3);
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.4s ease;
}

.video-popup-overlay.active .video-popup {
    transform: scale(1);
    opacity: 1;
}

/* Video Element */
.video-popup video {
    width: 80vw;
    height: auto;
    max-width: 900px;
    border-radius: 10px;
    outline: none;
}
.main-logo img {
	max-width: 140px;
}
/* Close Button */
.close-popup {
	position: absolute;
	top: -12px;
	right: -12px;
	background: linear-gradient(135deg, #FF6F00, #3DA3D4);
	color: #fff;
	border: none;
	border-radius: 50%;
	font-size: 30px;
	width: 36px;
	height: 36px;
	cursor: pointer;
	transition: background 0.3s;
	display: flex;
	align-items: end;
	justify-content: center;
}

.close-popup:hover {
    background: linear-gradient(135deg, #FF6F00, #3DA3D4);
}




        /* Background Elements */
        .hero-bg-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            overflow: hidden;
        }

        .floating-circle {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, #FF6F00, #3DA3D4);
            opacity: 0.05;
            animation: circleFloat 8s ease-in-out infinite;
        }

        .circle-1 {
            width: 300px;
            height: 300px;
            top: 10%;
            left: 5%;
        }

        .circle-2 {
            width: 200px;
            height: 200px;
            bottom: 10%;
            right: 5%;
            animation-delay: 2s;
        }

        .circle-3 {
            width: 150px;
            height: 150px;
            top: 50%;
            right: 15%;
            animation-delay: 4s;
        }

        @keyframes circleFloat {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, 30px) scale(1.1); }
            66% { transform: translate(-20px, 20px) scale(0.9); }
        }

        /* Animations */
        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
        .macbook-video-section {
	width: 450px;
}}
        @media (max-width: 1024px) {
            .hero-wrapper {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 40px;
            }

            .hero-title {
                font-size: 40px;
            }

            .hero-actions {
                justify-content: center;
            }

            .device-showcase {
                height: 400px;
            }

            .laptop-container {
                width: 350px;
                right: 50%;
                transform: translateX(50%);
            }

            .mobile-container {
                width: 180px;
                left: 50%;
                transform: translateX(-50%);
            }
        }
        @media (max-width: 992px) {
        .macbook-video-section {
	width: 100%;
}
.hero-wrapper {
	display: flex;
	flex-direction: column-reverse;
}
.hero-text-content {
	margin-top: 40px;
}
}

        @media (max-width: 768px) {
            .mobile-container {
	        width: 90% !important;
	        left: 5%;
        }
            .laptop-container{
                display: none;
            }
            .main-header {
                padding: 15px 20px;
            }

            .main-header.scrolled {
                padding: 12px 20px;
            }

            .hero-main {
                padding: 100px 20px 40px;
            }

            .hero-title {
                font-size: 32px;
            }

            .hero-subtitle {
                font-size: 16px;
            }

            .hero-actions {
                flex-direction: column;
                align-items: center;
            }

            .hero-btn {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }

            .device-showcase {
                height: 350px;
            }

            .laptop-container {
                width: 300px;
            }

            .mobile-container {
                width: 160px;
            }
        }
        @media (max-width: 600px) {
.hero-text-content {
	margin-top: 0px;
}
}

        @media (max-width: 480px) {
            .main-logo {
                font-size: 20px;
            }

            .main-btn {
                padding: 8px 16px;
                font-size: 14px;
            }

            .hero-title {
                font-size: 30px;
            }

            .hero-badge {
                font-size: 12px;
            }

            .device-showcase {
                height: 300px;
            }

            .laptop-container {
                width: 260px;
            }

            .mobile-container {
                width: 140px;
            }

            .laptop-screen {
                height: 200px;
            }

            .mobile-screen {
                height: 280px;
            }
        }

        @media (max-width: 360px) {

            .laptop-container {
                width: 240px;
            }

            .mobile-container {
                width: 130px;
            }
        }


        /* section 2 css */
.bookly-flow-section {
        padding: 80px 40px;
        background-color: #F8F4F0; /* Light, warm beige/gray - distinct from pure white */
        position: relative;
        overflow: hidden;
        z-index: 1;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05); /* Subtle shadow at the top for distinction */
    }

    /* Top Curve Design Element (More pronounced wave) */
   .section-top-wave {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 60px;
	background-color: #eff1f3;
	z-index: 0;
	clip-path: polygon(0 0, 100% 0, 100% 80%, 75% 95%, 50% 85%, 25% 95%, 0 80%);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}
    
    /* Floating Animation Keyframes (Enhanced for more subtle depth) */
    @keyframes floating {
        0% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.4; }
        33% { transform: translate(30px, -20px) rotate(5deg) scale(1.05); opacity: 0.6; }
        66% { transform: translate(-20px, 25px) rotate(-4deg) scale(0.95); opacity: 0.5; }
        100% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.4; }
    }

    @keyframes pulse-soft {
        0% { box-shadow: 0 0 0 0px rgba(0, 191, 255, 0.1); }
        100% { box-shadow: 0 0 0 30px rgba(0, 191, 255, 0); } /* Larger, more diffused pulse */
    }

    .bookly-bg-animated-elements {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        opacity: 0.8; /* Increased overall opacity for elements */
        filter: saturate(1.3) contrast(1.1); /* More vibrant and contrasting */
    }

    .floating-element {
        position: absolute;
        width: 200px; /* Larger base size */
        height: 200px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255, 204, 0, 0.15) 0%, rgba(255, 204, 0, 0) 70%); /* Soft yellow/gold gradient */
        filter: blur(70px); /* More blur for an ethereal look */
        animation: floating 25s infinite alternate ease-in-out, pulse-soft 5s infinite; /* Longer, smoother animations */
    }

    .floating-element.el-1 {
        top: 10%;
        left: 10%;
        width: 280px;
        height: 280px;
        background: radial-gradient(circle, rgba(0, 191, 255, 0.18) 0%, rgba(0, 191, 255, 0) 70%); /* Cyan gradient */
        animation-delay: 0s;
        animation-duration: 27s; 
    }

    .floating-element.el-2 {
        top: 60%;
        right: 15%;
        width: 220px;
        height: 220px;
        background: radial-gradient(circle, rgba(255, 100, 0, 0.15) 0%, rgba(255, 100, 0, 0) 70%); /* Orange gradient */
        animation-delay: 8s;
        animation-duration: 22s;
    }

    .floating-element.el-3 {
        bottom: 15%;
        left: 30%;
        width: 250px;
        height: 250px;
        background: radial-gradient(circle, rgba(150, 50, 255, 0.15) 0%, rgba(150, 50, 255, 0) 70%); /* Soft purple gradient */
        animation-delay: 16s;
        animation-duration: 30s;
    }

    /* ---------------------------------- */

    .bookly-container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .bookly-header {
        text-align: center;
        margin-bottom: 120px;
        padding-top: 50px; /* Space after the wave */
    }

    .bookly-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(0, 191, 255, 0.1); /* Light cyan background */
        color: #00BFFF; /* Cyan blue accent */
        padding: 10px 20px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 25px;
        border: 1px solid rgba(0, 191, 255, 0.2);
    }

    .bookly-title {
    font-size: 45px;
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #1e293b, #3DA3D4); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none; /* Gradient par shadow accha nahi lagta */
    }

    .bookly-subtitle {
        font-size: 20px;
        color: #617282; /* Medium gray body text */
        max-width: 750px;
        margin: 0 auto;
        line-height: 1.6;
    }

    /* --- Vertical Timeline Structure --- */
    .step-timeline-vertical {
        position: relative;
        padding: 0 0;
    }

    /* Central Line */
    .step-line-container {
        position: absolute;
        top: 0;
        left: 50%;
        height: 100%;
        width: 4px;
        background-color: #E0E0E0; /* Light gray line */
        transform: translateX(-50%);
        z-index: 1;
    }

    /* Animated Progress Line */
    .step-progress-line {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 0%;
        background: linear-gradient(0deg, #FF8C00 0%, #00BFFF 100%); /* Orange to Cyan gradient */
        transition: height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    /* Steps Container */
    .bookly-steps-wrapper {
        display: flex;
        flex-direction: column;
        position: relative;
        z-index: 2;
    }

    /* Individual Step */
    .bookly-step {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 150px;
        position: relative;
    }

    .bookly-step:nth-child(even) {
        flex-direction: row-reverse;
    }

    /* Step Content (Left/Right Boxes) */
    .bookly-step-card {
        width: 42%;
        background: #FFFFFF; /* Pure white card background */
        border-radius: 20px;
        padding: 40px 30px;
        border: 1px solid #E0E0E0; /* Light gray border */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Soft shadow */
        position: relative;
        transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        opacity: 0;
        transform: translateX(-100px);
    }

    /* Hover Effect for a touch of interactivity */
    .bookly-step-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); /* More pronounced shadow on hover */
    }

    .bookly-step:nth-child(even) .bookly-step-card {
        transform: translateX(100px);
    }

    /* Animation when active */
    .bookly-step.active .bookly-step-card {
        opacity: 1;
        transform: translateX(0);
    }

    /* Connector Arrow from content box to center line */
    .bookly-step-card::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -20px;
        width: 0;
        height: 0;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 20px solid #FFFFFF; /* Arrow color to match card BG */
        transform: translateY(-50%);
        z-index: 5;
        filter: drop-shadow(-1px 0 0 rgba(0,0,0,0.05));
    }

    .bookly-step:nth-child(even) .bookly-step-card::after {
        left: -20px;
        right: auto;
        border-left: none;
        border-right: 20px solid #FFFFFF; /* Arrow color to match card BG */
        filter: drop-shadow(1px 0 0 rgba(0,0,0,0.05));
    }

    /* Center Circle and Icon */
    .step-icon-circle {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 140px;
        height: 140px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 3;
    }

    /* Pulse Animation */
    @keyframes pulse-ring {
        0% { box-shadow: 0 0 0 0px rgba(0, 191, 255, 0.3); }
        100% { box-shadow: 0 0 0 15px rgba(0, 191, 255, 0); }
    }

    .circle-bg {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: #E0E0E0; /* Light gray background */
        transition: all 0.4s ease;
    }

    .circle-progress {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: linear-gradient(0deg, #FF8C00 0%, #00BFFF 100%); /* Orange to Cyan gradient */
        clip-path: circle(50% at 50% 50%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .bookly-step.active .circle-progress {
        opacity: 1;
    }

    .circle-icon {
        width: 100px;
        height: 100px;
        background: #F8F4F0; /* Section background color */
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #617282; /* Medium gray text */
        font-size: 40px;
        position: relative;
        z-index: 3;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.4s ease;
    }

    .bookly-step.active .circle-icon {
        color: #00BFFF; /* Cyan accent color */
        transform: scale(1.1);
        box-shadow: 0 15px 40px rgba(0, 191, 255, 0.3);
        animation: pulse-ring 1.5s infinite;
    }

    /* Step Number Badge */
    .step-number-badge {
        position: absolute;
        bottom: 0px;
        right: 0px;
        width: 45px;
        height: 45px;
        background: #617282; /* Medium gray badge */
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFFFFF; /* White text on badge */
        font-weight: 700;
        font-size: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        z-index: 4;
        transition: all 0.4s ease;
        border: 3px solid #F8F4F0; /* Section background color border */
    }

    .bookly-step.active .step-number-badge {
        background: #FF8C00; /* Orange accent color */
        color: #FFFFFF;
        transform: scale(1.15);
        box-shadow: 0 5px 20px rgba(255, 140, 0, 0.5);
    }

    /* Step Content Text Styles */
    .step-title {
        font-size: 26px;
        font-weight: 800;
        margin-bottom: 15px;
        color: #2C3E50; /* Dark blue text */
    }

    .step-description {
        color: #617282; /* Medium gray body text */
        line-height: 1.6;
        font-size: 16px;
        margin-bottom: 20px;
    }

    .step-checklist {
        list-style: none;
        padding: 0;
        text-align: left;
        margin-top: 20px;
    }

    .step-checklist li {
        padding: 8px 0;
        color: #617282; /* Medium gray body text */
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 15px;
        transition: color 0.3s ease;
    }

    .bookly-step.active .step-checklist li {
        color: #2C3E50; /* Dark blue text when active */
    }

    .step-checklist li i {
        color: #00BFFF; /* Cyan accent color */
        font-size: 14px;
    }

    /* CTA Section styles */
    .bookly-cta-area {
        text-align: center;
        margin-top: 80px;
    }

    .bookly-cta-button {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: linear-gradient(45deg, #00BFFF 0%, #0093E9 100%); /* Cyan to Darker Blue Gradient */
        color: #FFFFFF;
        padding: 18px 40px;
        border-radius: 15px;
        font-weight: 700;
        text-decoration: none;
        font-size: 18px;
        box-shadow: 0 10px 30px rgba(0, 147, 233, 0.4);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        border: none;
    }

    .bookly-cta-button:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 15px 40px rgba(0, 147, 233, 0.6);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .bookly-header { margin-bottom: 80px; }
        .bookly-step { margin-bottom: 100px; }
        .step-line-container { left: 10%; }
        .step-icon-circle { left: 10%; transform: translateX(-50%); }
        .bookly-step-card,
        .bookly-step:nth-child(even) .bookly-step-card {
            width: 75%;
            margin-left: 20%;
            transform: translateX(0);
        }
        .bookly-step:nth-child(even) { flex-direction: row; }
        .bookly-step-card::after,
        .bookly-step:nth-child(even) .bookly-step-card::after {
            left: -20px; right: auto; border-left: none; border-right: 20px solid #FFFFFF; 
        }
    }

    @media (max-width: 768px) {
        .bookly-flow-section { padding: 80px 20px; padding-left: 0; }
        .bookly-title { font-size: 30px; }
        .circle-progress {width: 78%; height: 78%;}
        .circle-bg{background: transparent;}
        .bookly-subtitle { font-size: 17px; }
        .section-top-wave { height: 45px; clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%); } /* Adjusted wave for smaller screens */
        .step-icon-circle { width: 100px; height: 100px; left: 15%; }
        .circle-icon { width: 45px; height: 45px; font-size: 20px; }
        .step-number-badge { width: 35px; height: 35px; font-size: 16px; }
        .step-line-container { left: 15%; }
        .bookly-step-card,
        .bookly-step:nth-child(even) .bookly-step-card {
            width: 70%;
            margin-left: 30%;
            padding: 30px 25px;
        }
    }



    /* services sec */
    .ultimate-industries-section {
            padding: 80px 40px;
            background: linear-gradient(135deg, #000428 0%, #004e92 100%);
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .ultimate-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
            width: 100%;
        }

        /* Header with Advanced Animations */
        .ultimate-header {
            text-align: center;
            position: relative;
        }

        .ultimate-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, rgba(255, 111, 0, 0.3), rgba(61, 163, 212, 0.3));
            color: #FF6F00;
            padding: 16px 32px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 30px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
            animation: badgeFloat 4s ease-in-out infinite;
        }

        @keyframes badgeFloat {
            0%, 100% { 
                transform: translateY(0) scale(1);
                box-shadow: 0 10px 30px rgba(255, 111, 0, 0.3);
            }
            50% { 
                transform: translateY(-10px) scale(1.05);
                box-shadow: 0 20px 40px rgba(255, 111, 0, 0.5);
            }
        }

        .ultimate-title {
            font-size: 45px;
            font-weight: 900;
            margin-bottom: 30px;
            background: linear-gradient(135deg, #FF6F00, #3DA3D4, #8b5cf6, #00ff88);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 300% 300%;
            animation: gradientShift 8s ease infinite;
            text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            letter-spacing: -1px;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .ultimate-subtitle {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.8);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
            font-weight: 300;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        /* Advanced Grid Layout */
        .ultimate-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin: 80px 0 0;
            perspective: 1000px;
        }

        /* Ultra Modern Cards */
        .ultimate-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(25px);
            border-radius: 25px;
            padding: 50px 35px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.15);
            position: relative;
            overflow: hidden;
            transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
            opacity: 0;
            transform: translateY(100px) rotateX(45deg) scale(0.8);
            animation: cardEntrance 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        }

        .ultimate-card:nth-child(1) { animation-delay: 0.1s; }
        .ultimate-card:nth-child(2) { animation-delay: 0.2s; }
        .ultimate-card:nth-child(3) { animation-delay: 0.3s; }
        .ultimate-card:nth-child(4) { animation-delay: 0.4s; }
        .ultimate-card:nth-child(5) { animation-delay: 0.5s; }
        .ultimate-card:nth-child(6) { animation-delay: 0.6s; }
        .ultimate-card:nth-child(7) { animation-delay: 0.7s; }
        .ultimate-card:nth-child(8) { animation-delay: 0.8s; }

        @keyframes cardEntrance {
            to {
                opacity: 1;
                transform: translateY(0) rotateX(0) scale(1);
            }
        }

        .ultimate-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 1s;
        }

        .ultimate-card:hover::before {
            left: 100%;
        }

        .ultimate-card:hover {
            transform: translateY(-25px) rotateY(5deg) scale(1.08);
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 
                0 35px 70px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.1),
                0 0 50px rgba(255, 111, 0, 0.3);
        }

        /* Card Glow Effect */
        .card-glow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 25px;
            background: linear-gradient(45deg, #FF6F00, #3DA3D4, #8b5cf6);
            opacity: 0;
            z-index: -1;
            filter: blur(20px);
            transition: opacity 0.6s ease;
        }

        .ultimate-card:hover .card-glow {
            opacity: 0.3;
        }

        /* Advanced Icon System */
        .ultimate-icon-wrapper {
            width: 120px;
            height: 120px;
            margin: 0 auto 35px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .icon-rings {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 2px solid transparent;
            animation: ringsRotate 6s linear infinite;
        }

        .icon-rings:nth-child(1) {
            border-top-color: #FF6F00;
            animation-delay: 0s;
        }

        .icon-rings:nth-child(2) {
            border-right-color: #3DA3D4;
            animation-delay: -2s;
        }

        .icon-rings:nth-child(3) {
            border-bottom-color: #8b5cf6;
            animation-delay: -4s;
        }

        @keyframes ringsRotate {
            0% { transform: rotate(0deg) scale(1); }
            50% { transform: rotate(180deg) scale(1.1); }
            100% { transform: rotate(360deg) scale(1); }
        }

        .ultimate-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #FF6F00, #3DA3D4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 32px;
            position: relative;
            z-index: 2;
            box-shadow: 0 15px 35px rgba(255, 111, 0, 0.4);
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .ultimate-card:hover .ultimate-icon {
            transform: scale(1.3) rotate(15deg);
            box-shadow: 0 25px 50px rgba(255, 111, 0, 0.6);
            background: linear-gradient(135deg, #8b5cf6, #00ff88);
        }

        /* Card Content */
        .ultimate-card-title {
            font-size: 26px;
            font-weight: 800;
            margin-bottom: 20px;
            color: white;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            position: relative;
        }

        .ultimate-card-description {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            font-size: 16px;
            margin-bottom: 25px;
            font-weight: 300;
        }

        /* Advanced Stats */
        .ultimate-stats {
            display: flex;
            justify-content: space-around;
            margin-top: 30px;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
        }

        .ultimate-stat {
            text-align: center;
            position: relative;
        }

        .stat-number {
            font-size: 24px;
            font-weight: 900;
            color: #FF6F00;
            margin-bottom: 8px;
            text-shadow: 0 2px 10px rgba(255, 111, 0, 0.3);
            position: relative;
        }

        .stat-label {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Particle Background */
        .particle-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .particle {
            position: absolute;
            background: linear-gradient(45deg, #FF6F00, #3DA3D4, #8b5cf6);
            border-radius: 50%;
            animation: particleMove 20s linear infinite;
            filter: blur(1px);
        }

        .particle:nth-child(1) { width: 8px; height: 8px; top: 20%; left: 10%; animation-delay: 0s; }
        .particle:nth-child(2) { width: 12px; height: 12px; top: 60%; left: 80%; animation-delay: 2s; }
        .particle:nth-child(3) { width: 6px; height: 6px; top: 40%; left: 20%; animation-delay: 4s; }
        .particle:nth-child(4) { width: 10px; height: 10px; top: 80%; left: 40%; animation-delay: 6s; }
        .particle:nth-child(5) { width: 14px; height: 14px; top: 30%; left: 60%; animation-delay: 8s; }
        .particle:nth-child(6) { width: 7px; height: 7px; top: 70%; left: 30%; animation-delay: 10s; }

        @keyframes particleMove {
            0%, 100% { 
                transform: translate(0, 0) scale(1) rotate(0deg);
                opacity: 0.7;
            }
            25% { 
                transform: translate(100px, 50px) scale(1.2) rotate(90deg);
                opacity: 1;
            }
            50% { 
                transform: translate(50px, 100px) scale(0.8) rotate(180deg);
                opacity: 0.5;
            }
            75% { 
                transform: translate(-50px, 50px) scale(1.1) rotate(270deg);
                opacity: 0.8;
            }
        }

        /* Floating Elements */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 2;
        }

        .floater {
            position: absolute;
            background: linear-gradient(45deg, #FF6F00, #3DA3D4);
            border-radius: 10px;
            animation: floaterMove 15s ease-in-out infinite;
            opacity: 0.1;
        }

        .floater:nth-child(1) { width: 100px; height: 100px; top: 10%; left: 5%; animation-delay: 0s; }
        .floater:nth-child(2) { width: 150px; height: 150px; bottom: 10%; right: 5%; animation-delay: 3s; }
        .floater:nth-child(3) { width: 80px; height: 80px; top: 50%; left: 10%; animation-delay: 6s; }
        .floater:nth-child(4) { width: 120px; height: 120px; top: 20%; right: 15%; animation-delay: 9s; }

        @keyframes floaterMove {
            0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
            25% { transform: translate(50px, 30px) rotate(90deg) scale(1.1); }
            50% { transform: translate(20px, 80px) rotate(180deg) scale(0.9); }
            75% { transform: translate(-30px, 40px) rotate(270deg) scale(1.05); }
        }

        /* CTA Section */
        .ultimate-cta {
            text-align: center;
            margin-top: 100px;
            position: relative;
            z-index: 10;
        }

        .ultimate-cta-title {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 25px;
            color: white;
            text-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }

        .ultimate-cta-subtitle {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 50px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
            font-weight: 300;
        }

        .ultimate-button {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: linear-gradient(135deg, #FF6F00, #3DA3D4, #8b5cf6);
            color: white;
            padding: 22px 50px;
            border-radius: 15px;
            font-weight: 700;
            text-decoration: none;
            font-size: 18px;
            box-shadow: 0 15px 35px rgba(255, 111, 0, 0.4);
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            overflow: hidden;
            background-size: 200% 200%;
            animation: buttonGradient 4s ease infinite;
        }

        @keyframes buttonGradient {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .ultimate-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.8s;
        }

        .ultimate-button:hover::before {
            left: 100%;
        }

        .ultimate-button:hover {
            transform: translateY(-8px) scale(1.08);
            box-shadow: 
                0 25px 50px rgba(255, 111, 0, 0.6),
                0 0 30px rgba(61, 163, 212, 0.4);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .ultimate-grid {
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .ultimate-industries-section {
                padding: 60px 20px;
            }

            .ultimate-title {
                font-size: 30px;
            }

            .ultimate-subtitle {
                font-size: 16px;
            }
            .ultimate-grid {
	        margin: 40px 0 0;
        }    
            .ultimate-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .ultimate-card {
                padding: 40px 25px;
            }

            .ultimate-icon-wrapper {
                width: 100px;
                height: 100px;
            }

            .ultimate-icon {
                width: 70px;
                height: 70px;
                font-size: 28px;
            }

            .ultimate-card-title {
                font-size: 22px;
            }

            .ultimate-cta-title {
                font-size: 32px;
            }

            .ultimate-cta-subtitle {
                font-size: 18px;
            }

            .ultimate-button {
                padding: 18px 40px;
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .ultimate-title {
                font-size: 36px;
            }

            .ultimate-card {
                padding: 35px 20px;
            }

            .ultimate-icon-wrapper {
                width: 90px;
                height: 90px;
            }

            .ultimate-icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }

            .ultimate-card-title {
                font-size: 20px;
            }

            .ultimate-cta-title {
                font-size: 28px;
            }

            .ultimate-button {
                padding: 16px 35px;
            }
        }


    /* deshbord css */
     /* Advanced Dashboard Section */
        .bookly-dashboard-section {
            padding: 100px 20px;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            position: relative;
            overflow: hidden;
            min-height: 100vh;
        }

        .bookly-dashboard-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        /* Section Header */
        .bookly-dashboard-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
        }

        .bookly-dashboard-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, rgba(255, 111, 0, 0.15), rgba(61, 163, 212, 0.15));
            color: #FF6F00;
            padding: 16px 32px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 30px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 0, 0, 0.1);
            animation: booklyBadgeFloat 4s ease-in-out infinite;
        }

        @keyframes booklyBadgeFloat {
            0%, 100% { 
                transform: translateY(0) scale(1);
                box-shadow: 0 10px 30px rgba(255, 111, 0, 0.2);
            }
            50% { 
                transform: translateY(-10px) scale(1.05);
                box-shadow: 0 20px 40px rgba(255, 111, 0, 0.3);
            }
        }

        .bookly-dashboard-title {
            font-size: 48px;
            font-weight: 900;
            margin-bottom: 30px;
            background: linear-gradient(135deg, #FF6F00, #3DA3D4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 200% 200%;
            animation: booklyGradientShift 8s ease infinite;
            text-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        @keyframes booklyGradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .bookly-dashboard-subtitle {
            font-size: 16px;
            color: rgba(0, 0, 0, 0.7);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Interactive Dashboard */
        .bookly-dashboard-interactive {
            display: grid;
            grid-template-columns: 280px 1fr 320px;
            gap: 25px;
            margin: 60px 0;
            height: 550px;
            position: relative;
        }

        /* Sidebar */
        .bookly-dashboard-sidebar {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 25px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
            animation: booklySlideInLeft 0.8s ease-out;
        }

        .bookly-sidebar-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .bookly-business-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #FF6F00, #3DA3D4);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
        }

        .bookly-business-info h3 {
            color: #1e293b;
            font-size: 16px;
            margin-bottom: 5px;
        }

        .bookly-business-info p {
            color: rgba(0, 0, 0, 0.6);
            font-size: 12px;
        }

        .bookly-sidebar-nav {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .bookly-nav-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px;
            border-radius: 12px;
            color: rgba(0, 0, 0, 0.7);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .bookly-nav-item.active {
            background: rgba(255, 111, 0, 0.1);
            color: #FF6F00;
        }

        .bookly-nav-item:hover {
            background: rgba(0, 0, 0, 0.05);
            color: #1e293b;
        }

        .bookly-nav-badge {
            margin-left: auto;
            background: #FF6F00;
            color: white;
            padding: 4px 8px;
            border-radius: 20px;
            font-size: 10px;
            font-weight: 600;
        }

        /* Main Dashboard */
        .bookly-dashboard-main {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 25px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
            animation: booklySlideInUp 0.8s ease-out 0.2s both;
        }

        .bookly-dashboard-header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .bookly-dashboard-title-inner {
            color: #1e293b;
            font-size: 22px;
            font-weight: 700;
        }

        .bookly-dashboard-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }

        .bookly-stat-card {
            background: rgba(255, 255, 255, 1);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            border: 1px solid rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
            animation: booklyCardEntrance 0.6s ease-out;
        }

        .bookly-stat-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 1);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        }

        .bookly-stat-value {
            font-size: 24px;
            font-weight: 800;
            color: #FF6F00;
            margin-bottom: 5px;
        }

        .bookly-stat-label {
            font-size: 12px;
            color: rgba(0, 0, 0, 0.6);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .bookly-dashboard-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 25px;
            height: 350px;
        }

        .bookly-appointments-widget {
            background: rgba(255, 255, 255, 1);
            border-radius: 15px;
            padding: 20px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
        }

        .bookly-widget-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .bookly-widget-title {
            color: #1e293b;
            font-size: 16px;
            font-weight: 600;
        }

        .bookly-appointments-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .bookly-appointment-card {
            background: rgba(255, 255, 255, 1);
            border-radius: 12px;
            padding: 15px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
            animation: booklyCardEntrance 0.6s ease-out;
        }

        .bookly-appointment-card:hover {
            transform: translateX(5px);
            background: rgba(255, 255, 255, 1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .bookly-appointment-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .bookly-appointment-time {
            color: #1e293b;
            font-weight: 600;
            font-size: 14px;
        }

        .bookly-appointment-status {
            padding: 4px 8px;
            border-radius: 20px;
            font-size: 10px;
            font-weight: 600;
        }

        .bookly-status-confirmed {
            background: rgba(34, 197, 94, 0.15);
            color: #16a34a;
        }

        .bookly-status-pending {
            background: rgba(251, 191, 36, 0.15);
            color: #d97706;
        }

        .bookly-status-cancelled {
            background: rgba(239, 68, 68, 0.15);
            color: #dc2626;
        }

        .bookly-appointment-details {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .bookly-client-info h4 {
            color: #1e293b;
            font-size: 14px;
            margin-bottom: 5px;
        }

        .bookly-client-info p {
            color: rgba(0, 0, 0, 0.6);
            font-size: 12px;
        }

        .bookly-appointment-actions {
            display: flex;
            gap: 8px;
        }

        .bookly-action-btn {
            width: 30px;
            height: 30px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.05);
            color: rgba(0, 0, 0, 0.6);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .bookly-action-btn:hover {
            background: rgba(255, 111, 0, 0.1);
            color: #FF6F00;
        }

        .bookly-calendar-widget {
            background: rgba(255, 255, 255, 1);
            border-radius: 15px;
            padding: 20px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
        }

        .bookly-calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 6px;
            margin-top: 15px;
        }

        .bookly-calendar-day {
            text-align: center;
            padding: 8px;
            font-size: 12px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 1);
            color: rgba(0, 0, 0, 0.7);
            transition: all 0.3s ease;
            position: relative;
        }

        .bookly-calendar-day.active {
            background: #FF6F00;
            color: white;
        }

        .bookly-calendar-day.has-appointment::after {
            content: '';
            position: absolute;
            bottom: 3px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 4px;
            background: #3DA3D4;
            border-radius: 50%;
        }

        /* Notifications Panel */
        .bookly-notifications-panel {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 25px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
            animation: booklySlideInRight 0.8s ease-out 0.4s both;
        }

        .bookly-notifications-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
        }

        .bookly-notifications-title {
            color: #1e293b;
            font-size: 16px;
            font-weight: 600;
        }

        .bookly-notification-badge {
            background: #FF6F00;
            color: white;
            padding: 4px 8px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        .bookly-notifications-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
            max-height: 450px;
            overflow-y: auto;
        }

        .bookly-notification-item {
            background: rgba(255, 255, 255, 1);
            border-radius: 12px;
            padding: 15px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
            animation: booklyCardEntrance 0.6s ease-out;
        }

        .bookly-notification-item:hover {
            transform: translateX(-5px);
            background: rgba(255, 255, 255, 1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .bookly-notification-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
        }

        .bookly-notification-icon {
            width: 30px;
            height: 30px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }

        .bookly-icon-booking {
            background: rgba(34, 197, 94, 0.15);
            color: #16a34a;
        }

        .bookly-icon-cancellation {
            background: rgba(239, 68, 68, 0.15);
            color: #dc2626;
        }

        .bookly-icon-reminder {
            background: rgba(59, 130, 246, 0.15);
            color: #2563eb;
        }

        .bookly-icon-payment {
            background: rgba(168, 85, 247, 0.15);
            color: #7c3aed;
        }

        .bookly-notification-title {
            color: #1e293b;
            font-size: 14px;
            font-weight: 600;
        }

        .bookly-notification-time {
            color: rgba(0, 0, 0, 0.5);
            font-size: 11px;
            margin-left: auto;
        }

        .bookly-notification-message {
            color: rgba(0, 0, 0, 0.7);
            font-size: 12px;
            line-height: 1.4;
        }

        /* Features Showcase */
        .bookly-features-showcase {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin: 60px 0;
        }

        .bookly-feature-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 35px 25px;
            text-align: center;
            border: 1px solid rgba(0, 0, 0, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            animation: booklySlideInUp 0.8s ease-out 0.6s both;
        }

        .bookly-feature-card:hover {
            transform: translateY(-15px);
            background: rgba(255, 255, 255, 1);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
        }

        .bookly-feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #FF6F00, #3DA3D4);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            margin: 0 auto 25px;
            transition: all 0.4s ease;
        }

        .bookly-feature-card:hover .bookly-feature-icon {
            transform: scale(1.2) rotate(10deg);
        }

        .bookly-feature-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #1e293b;
        }

        .bookly-feature-description {
            color: rgba(0, 0, 0, 0.7);
            line-height: 1.6;
            font-size: 14px;
        }

        /* CTA Section */
        .bookly-advanced-cta {
            text-align: center;
            margin-top: 60px;
            animation: booklySlideInUp 0.8s ease-out 0.8s both;
        }

        .bookly-advanced-button {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: linear-gradient(135deg, #FF6F00, #3DA3D4);
            color: white;
            padding: 18px 40px;
            border-radius: 15px;
            font-weight: 700;
            text-decoration: none;
            font-size: 16px;
            box-shadow: 0 15px 35px rgba(255, 111, 0, 0.4);
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            overflow: hidden;
            background-size: 200% 200%;
            animation: booklyButtonGradient 4s ease infinite;
        }

        @keyframes booklyButtonGradient {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .bookly-advanced-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.8s;
        }

        .bookly-advanced-button:hover::before {
            left: 100%;
        }

        .bookly-advanced-button:hover {
            transform: translateY(-8px) scale(1.08);
            box-shadow: 0 25px 50px rgba(255, 111, 0, 0.6);
        }

        /* Background Elements */
        .bookly-advanced-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .bookly-floating-element {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, #FF6F00, #3DA3D4);
            opacity: 0.05;
            animation: booklyElementFloat 20s ease-in-out infinite;
        }

        .bookly-element-1 {
            width: 300px;
            height: 300px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .bookly-element-2 {
            width: 200px;
            height: 200px;
            bottom: 10%;
            right: 5%;
            animation-delay: 5s;
        }

        .bookly-element-3 {
            width: 150px;
            height: 150px;
            top: 50%;
            right: 15%;
            animation-delay: 10s;
        }

        @keyframes booklyElementFloat {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(40px, 40px) rotate(90deg); }
            50% { transform: translate(0, 80px) rotate(180deg); }
            75% { transform: translate(-40px, 40px) rotate(270deg); }
        }

        /* New Animations */
        @keyframes booklySlideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes booklySlideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes booklySlideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes booklyCardEntrance {
            from {
                opacity: 0;
                transform: translateY(20px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Pulse animation for interactive elements */
        @keyframes booklyPulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 111, 0, 0.4);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(255, 111, 0, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(255, 111, 0, 0);
            }
        }
        
        .bookly-nav-item.active, .bookly-calendar-day.active {
            animation: booklyPulse 2s infinite;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .bookly-dashboard-interactive {
                grid-template-columns: 1fr;
                height: auto;
                gap: 20px;
            }

            .bookly-features-showcase {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .bookly-dashboard-interactive {
	            margin: 40px 0;

            }
            .bookly-dashboard-section {
                padding: 80px 15px;
            }

            .bookly-dashboard-title {
                font-size: 36px;
            }

            .bookly-dashboard-subtitle {
                font-size: 16px;
            }

            .bookly-dashboard-stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .bookly-dashboard-content {
                grid-template-columns: 1fr;
                height: auto;
            }

            .bookly-features-showcase {
                grid-template-columns: 1fr;
            }

            .bookly-advanced-button {
                padding: 16px 35px;
                font-size: 15px;
            }
        }

        @media (max-width: 480px) {
            .bookly-dashboard-title {
                font-size: 30px;
            }

            .bookly-dashboard-stats {
                grid-template-columns: 1fr;
            }

            .bookly-feature-card {
                padding: 25px 20px;
            }

            .bookly-advanced-button {
                padding: 14px 30px;
            }
        }




        /* Customer Booking Section */
        .customer-bookly {
            padding: 80px 40px 60px;
            background: linear-gradient(135deg, #fef7ed 0%, #f0f9ff 100%);
            position: relative;
            overflow: hidden;
        }

        /* Top Wave Separator */
        .customer-bookly::before {
            content: '';
            position: absolute;
            top: -2px;
            left: 0;
            width: 100%;
            height: 80px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23ffffff'%3E%3C/path%3E%3C/svg%3E");
            background-size: cover;
            background-repeat: no-repeat;
            z-index: 1;
        }

        .customer-bookly-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .customer-bookly-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .customer-bookly-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, rgba(255, 111, 0, 0.15), rgba(61, 163, 212, 0.15));
            color: #FF6F00;
            padding: 10px 24px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 111, 0, 0.2);
            animation: customer-bookly-badgePulse 3s ease-in-out infinite;
        }

        @keyframes customer-bookly-badgePulse {
            0%, 100% { 
                box-shadow: 0 0 20px rgba(255, 111, 0, 0.1);
            }
            50% { 
                box-shadow: 0 0 30px rgba(255, 111, 0, 0.2);
            }
        }

        .customer-bookly-title {
            font-size: 40px;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #1a2a3a, #FF6F00, #3DA3D4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .customer-bookly-subtitle {
            font-size: 18px;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
               
        }

        /* Steps Grid */
        .customer-bookly-steps {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin: 40px 0;
            position: relative;
            gap: 80px; 
        }

        /* Connecting Lines */
        .customer-bookly-steps::before {
            content: '';
            position: absolute;
            top: 175px;
            left: 15%;
            right: 15%;
            height: 3px;
            background: linear-gradient(90deg, #FF6F00, #3DA3D4);
            z-index: 1;
            border-radius: 3px;
        }

        .customer-bookly-step {
            background: white;
            border-radius: 16px;
            padding: 35px 25px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(226, 232, 240, 0.8);
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            opacity: 0;
            transform: translateY(40px);
            width: 30%;
            z-index: 2;
            height: 370px !important;
            
        }

        .customer-bookly-step.animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        .customer-bookly-step::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
            transition: left 0.7s;
        }

        .customer-bookly-step:hover::before {
            left: 100%;
        }

        .customer-bookly-step:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            border-color: rgba(255, 111, 0, 0.3);
        }

        /* Step Icon */
        .customer-bookly-step-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .customer-bookly-icon-orb {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: linear-gradient(135deg, #FF6F00, #3DA3D4);
            opacity: 0.1;
            animation: customer-bookly-orbPulse 4s ease-in-out infinite;
        }

        @keyframes customer-bookly-orbPulse {
            0%, 100% { 
                transform: scale(1); 
                opacity: 0.1; 
            }
            50% { 
                transform: scale(1.1); 
                opacity: 0.2; 
            }
        }

        .customer-bookly-step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #FF6F00, #3DA3D4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: 700;
            position: relative;
            z-index: 2;
            box-shadow: 0 8px 20px rgba(255, 111, 0, 0.3);
            transition: all 0.3s ease;
        }

        .customer-bookly-step:hover .customer-bookly-step-number {
            transform: scale(1.15) rotate(15deg);
            box-shadow: 0 12px 30px rgba(255, 111, 0, 0.4);
        }

        /* Step Content */
        .customer-bookly-step-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #1a2a3a;
        }

        .customer-bookly-step-description {
            color: #64748b;
            line-height: 1.6;
            font-size: 15px;
            margin-bottom: 20px;
        }

        /* Email Notification */
        .customer-bookly-email-notice {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: rgba(61, 163, 212, 0.1);
            padding: 10px 15px;
            border-radius: 8px;
            color: #3DA3D4;
            font-size: 13px;
            font-weight: 600;
            border: 1px solid rgba(61, 163, 212, 0.2);
            margin-top: 15px;
        }

        /* Floating Elements */
        .customer-bookly-floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .customer-bookly-floating-shape {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, #FF6F00, #3DA3D4);
            opacity: 0.05;
            animation: customer-bookly-shapeFloat 20s linear infinite;
        }

        .customer-bookly-shape-1 {
            width: 200px;
            height: 200px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .customer-bookly-shape-2 {
            width: 150px;
            height: 150px;
            bottom: 10%;
            right: 5%;
            animation-delay: 5s;
        }

        .customer-bookly-shape-3 {
            width: 120px;
            height: 120px;
            top: 50%;
            right: 15%;
            animation-delay: 10s;
        }

        @keyframes customer-bookly-shapeFloat {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(20px, 20px) rotate(90deg); }
            50% { transform: translate(0, 40px) rotate(180deg); }
            75% { transform: translate(-20px, 20px) rotate(270deg); }
        }

        /* CTA Section */
        .customer-bookly-cta {
            text-align: center;
            margin-top: 60px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .customer-bookly-cta.animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        .customer-bookly-cta-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #1a2a3a;
        }

        .customer-bookly-cta-subtitle {
            font-size: 16px;
            color: #64748b;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .customer-bookly-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #FF6F00, #3DA3D4);
            color: white;
            padding: 16px 40px;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            font-size: 16px;
            box-shadow: 0 8px 25px rgba(255, 111, 0, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            border: none;
        }

        .customer-bookly-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.7s;
        }

        .customer-bookly-button:hover::before {
            left: 100%;
        }

        .customer-bookly-button:hover {
            transform: translateY(-4px) scale(1.03);
            box-shadow: 0 12px 35px rgba(255, 111, 0, 0.4);
        }

        /* Animation for steps */
        .customer-bookly-step:nth-child(1) { transition-delay: 0.1s; }
        .customer-bookly-step:nth-child(2) { transition-delay: 0.2s; }
        .customer-bookly-step:nth-child(3) { transition-delay: 0.3s; }

        /* Responsive Design */
        @media (max-width: 1120px) {
        .customer-bookly-step {
	    height: 420px !important;
}
        }
        @media (max-width: 992px) {
            .customer-bookly-step {
	    height: auto !important;
}
            .customer-bookly-steps {
                flex-direction: column;
                align-items: center;
                gap: 30px;
            }
            
            .customer-bookly-step {
                width: 80%;
            }
            
            .customer-bookly-steps::before {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .customer-bookly {
                padding: 60px 20px 40px;
            }

            .customer-bookly-header {
                margin-bottom: 40px;
            }

            .customer-bookly-title {
                font-size: 32px;
            }

            .customer-bookly-subtitle {
                font-size: 16px;
            }

            .customer-bookly-step {
                padding: 30px 20px;
                width: 90%;
            }

            .customer-bookly-step-icon {
                width: 70px;
                height: 70px;
                margin-bottom: 20px;
            }

            .customer-bookly-step-number {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }

            .customer-bookly-step-title {
                font-size: 18px;
            }

            .customer-bookly-step-description {
                font-size: 14px;
            }

            .customer-bookly-cta-title {
                font-size: 24px;
            }

            .customer-bookly-cta-subtitle {
                font-size: 15px;
            }
        }

        @media (max-width: 480px) {
            .customer-bookly-title {
                font-size: 28px;
            }

            .customer-bookly-step {
                padding: 25px 15px;
                width: 95%;
            }

            .customer-bookly-step-icon {
                width: 60px;
                height: 60px;
            }

            .customer-bookly-step-number {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }

            .customer-bookly-step-title {
                font-size: 17px;
            }

            .customer-bookly-step-description {
                font-size: 13px;
            }

            .customer-bookly-button {
                padding: 14px 30px;
                font-size: 15px;
            }
        }



    /* pricing table */
            .pricing-bookly {
            padding: 100px 40px;
            background: linear-gradient(135deg, #cce3f0 0%, #f5dfc2 50%, #cce3f0 100%);
            position: relative;
            overflow: hidden;
        }

        /* Animated Background Elements */
        .pricing-bookly-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }

        .pricing-bookly-bg-element {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, #FF6F00, #3DA3D4);
            opacity: 0.1;
            animation: float 20s infinite ease-in-out;
        }

        .pricing-bookly-bg-element-1 {
            width: 300px;
            height: 300px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .pricing-bookly-bg-element-2 {
            width: 200px;
            height: 200px;
            bottom: 15%;
            right: 10%;
            animation-delay: 5s;
        }

        .pricing-bookly-bg-element-3 {
            width: 150px;
            height: 150px;
            top: 60%;
            left: 10%;
            animation-delay: 10s;
        }

        .pricing-bookly-bg-element-4 {
            width: 100px;
            height: 100px;
            top: 20%;
            right: 15%;
            animation-delay: 15s;
        }



        /* Floating Particles */
        .pricing-bookly-particle {
            position: absolute;
            width: 8px;
            height: 8px;
            background: #FF6F00;
            border-radius: 50%;
            animation: particle-float 15s infinite linear;
            opacity: 0.3;
        }

        @keyframes particle-float {
            0% {
                transform: translateY(0) translateX(0);
                opacity: 0.3;
            }
            25% {
                transform: translateY(-40px) translateX(20px);
                opacity: 0.6;
            }
            50% {
                transform: translateY(0) translateX(40px);
                opacity: 0.3;
            }
            75% {
                transform: translateY(40px) translateX(20px);
                opacity: 0.6;
            }
            100% {
                transform: translateY(0) translateX(0);
                opacity: 0.3;
            }
        }

        .pricing-bookly-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* Header */
        .pricing-bookly-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
        }

        .pricing-bookly-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, rgba(255, 111, 0, 0.15), rgba(61, 163, 212, 0.15));
            color: #FF6F00;
            padding: 12px 28px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 25px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 111, 0, 0.2);
            animation: badge-pulse 3s ease-in-out infinite;
            position: relative;
            overflow: hidden;
        }

        @keyframes badge-pulse {
            0%, 100% { 
                box-shadow: 0 0 20px rgba(255, 111, 0, 0.1);
            }
            50% { 
                box-shadow: 0 0 30px rgba(255, 111, 0, 0.3);
            }
        }

        .pricing-bookly-title {
            font-size: 52px;
            font-weight: 800;
            margin-bottom: 25px;
            background: linear-gradient(135deg, #1a2a3a, #FF6F00, #3DA3D4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
        }

        .pricing-bookly-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #FF6F00, #3DA3D4);
            border-radius: 2px;
            animation: title-line 3s ease-in-out infinite;
        }

        @keyframes title-line {
            0%, 100% {
                width: 100px;
            }
            50% {
                width: 150px;
            }
        }

        .pricing-bookly-subtitle {
            font-size: 20px;
            color: #64748b;
            max-width: 600px;
            margin: 30px auto 0;
            line-height: 1.6;
        }

        /* Pricing Cards */
        .pricing-bookly-cards {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 60px 0;
            position: relative;
        }

        .pricing-bookly-card {
            background: white;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid #f1f5f9;
            position: relative;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            width: 100%;
            max-width: 350px;
            opacity: 0;
            transform: translateY(50px);
            z-index: 2;
        }

        .pricing-bookly-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #FF6F00, #3DA3D4);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .pricing-bookly-card:hover::before {
            transform: scaleX(1);
        }

        .pricing-bookly-card.animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        .pricing-bookly-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        /* Popular Badge */
        .pricing-bookly-popular {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #FF6F00, #3DA3D4);
            color: white;
            padding: 10px 30px;
            border-radius: 25px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 5px 15px rgba(255, 111, 0, 0.4);
            z-index: 3;
            animation: popular-pulse 2s ease-in-out infinite;
        }

        @keyframes popular-pulse {
            0%, 100% {
                box-shadow: 0 5px 15px rgba(255, 111, 0, 0.4);
            }
            50% {
                box-shadow: 0 5px 20px rgba(255, 111, 0, 0.6);
            }
        }

        /* Plan Header */
        .pricing-bookly-plan-name {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #1a2a3a;
        }

        .pricing-bookly-plan-desc {
            color: #64748b;
            font-size: 15px;
            margin-bottom: 30px;
            line-height: 1.5;
        }

        /* Price */
        .pricing-bookly-price {
            margin-bottom: 30px;
            position: relative;
            padding: 20px 0;
            border-radius: 15px;
            background: linear-gradient(135deg, rgba(255, 111, 0, 0.05), rgba(61, 163, 212, 0.05));
        }

        .pricing-bookly-price-amount {
            font-size: 48px;
            font-weight: 800;
            color: #1a2a3a;
            line-height: 1;
            margin-bottom: 5px;
            position: relative;
        }

        .pricing-bookly-price-amount::before {
            content: '$';
            font-size: 24px;
            position: relative;
            top: -15px;
            margin-right: 2px;
        }

        .pricing-bookly-price-period {
            color: #64748b;
            font-size: 14px;
        }

        .pricing-bookly-price-save {
            position: absolute;
            top: 10px;
            right: 20px;
            background: #FF6F00;
            color: white;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 700;
            animation: save-bounce 2s ease-in-out infinite;
        }

        @keyframes save-bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-5px);
            }
        }

        /* Features */
        .pricing-bookly-features {
            margin: 30px 0;
            text-align: left;
        }

        .pricing-bookly-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
            color: #1a2a3a;
            font-size: 15px;
            transition: all 0.3s ease;
            padding: 8px 0;
            border-bottom: 1px dashed #f1f5f9;
        }

        .pricing-bookly-feature:last-child {
            border-bottom: none;
        }

        .pricing-bookly-feature i {
            color: #FF6F00;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .pricing-bookly-feature:hover {
            transform: translateX(5px);
        }

        .pricing-bookly-feature:hover i {
            color: #3DA3D4;
            transform: scale(1.2);
        }

        .pricing-bookly-feature.disabled {
            color: #64748b;
        }

        .pricing-bookly-feature.disabled i {
            color: #64748b;
        }

        /* CTA Button */
        .pricing-bookly-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            background: linear-gradient(135deg, #FF6F00, #3DA3D4);
            color: white;
            padding: 16px 30px;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            font-size: 16px;
            box-shadow: 0 8px 25px rgba(255, 111, 0, 0.3);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            border: none;
            margin-top: 20px;
        }

        .pricing-bookly-button::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: left 0.7s;
        }

        .pricing-bookly-button:hover::before {
            left: 100%;
        }

        .pricing-bookly-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(255, 111, 0, 0.4);
        }

        .pricing-bookly-card:nth-child(2) .pricing-bookly-button {
            background: linear-gradient(135deg, #FF6F00, #3DA3D4);
            box-shadow: 0 8px 25px rgba(255, 111, 0, 0.4);
        }

        .pricing-bookly-card:nth-child(1) .pricing-bookly-button,
        .pricing-bookly-card:nth-child(3) .pricing-bookly-button {
            background: white;
            color: #1a2a3a;
            border: 2px solid #f1f5f9;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .pricing-bookly-card:nth-child(1) .pricing-bookly-button:hover,
        .pricing-bookly-card:nth-child(3) .pricing-bookly-button:hover {
            background: linear-gradient(135deg, #FF6F00, #3DA3D4);
            color: white;
            border-color: transparent;
            box-shadow: 0 12px 30px rgba(255, 111, 0, 0.3);
        }

        /* CTA Section */
        .pricing-bookly-cta {
            text-align: center;
            margin-top: 80px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
            background: white;
            padding: 50px 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }

        .pricing-bookly-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #FF6F00, #3DA3D4);
        }

        .pricing-bookly-cta.animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        .pricing-bookly-cta-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #1a2a3a;
        }

        .pricing-bookly-cta-subtitle {
            font-size: 18px;
            color: #64748b;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .pricing-bookly-cta-button {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: linear-gradient(135deg, #FF6F00, #3DA3D4);
            color: white;
            padding: 18px 45px;
            border-radius: 15px;
            font-weight: 600;
            text-decoration: none;
            font-size: 18px;
            box-shadow: 0 10px 30px rgba(255, 111, 0, 0.3);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            border: none;
        }

        .pricing-bookly-cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.7s;
        }

        .pricing-bookly-cta-button:hover::before {
            left: 100%;
        }

        .pricing-bookly-cta-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(255, 111, 0, 0.4);
        }

        /* Animation for cards */
        .pricing-bookly-card:nth-child(1) { transition-delay: 0.1s; }
        .pricing-bookly-card:nth-child(2) { transition-delay: 0.2s; }
        .pricing-bookly-card:nth-child(3) { transition-delay: 0.3s; }

        /* Responsive Design */
        @media (max-width: 992px) {
            .pricing-bookly-cards {
                flex-direction: column;
                align-items: center;
                gap: 40px;
            }
            
            .pricing-bookly-card {
                max-width: 400px;
            }
        }

        @media (max-width: 768px) {
            .pricing-bookly {
                padding: 80px 20px;
            }

            .pricing-bookly-header {
                margin-bottom: 60px;
            }

            .pricing-bookly-title {
                font-size: 42px;
            }

            .pricing-bookly-subtitle {
                font-size: 18px;
            }

            .pricing-bookly-card {
                padding: 35px 25px;
            }

            .pricing-bookly-price-amount {
                font-size: 42px;
            }

            .pricing-bookly-cta-title {
                font-size: 28px;
            }

            .pricing-bookly-cta-subtitle {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .pricing-bookly-title {
                font-size: 36px;
            }

            .pricing-bookly-card {
                padding: 30px 20px;
            }

            .pricing-bookly-price-amount {
                font-size: 38px;
            }

            .pricing-bookly-cta-button {
                padding: 16px 35px;
                font-size: 16px;
            }
        }