        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            /*text-transform: capitalize;*/
        }

        :root {
            --primary-orange: #FF5F15;
            --secondary-orange: #FFA802;
            --gradient-primary: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%);
            --bg-dark: #0d163e;
            --text-light: #ffffff;
            --shadow-primary: 0 20px 40px rgba(255, 95, 21, 0.2);
            --shadow-hover: 0 25px 50px rgba(255, 95, 21, 0.3);
            --border-orange: rgba(255, 95, 21, 0.3);
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }


        .highligh-text {
            font-size: clamp(2rem, 6vw, 3rem);
            line-height: 1.1;
            font-weight: 600;
            color: var(--primary-orange);
            /* text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7); */
        }

        body {
            font-family: 'DM Sans', sans-serif;
            line-height: 1.6;
            background: var(--bg-dark) !important;
            color: var(--text-light);
            scroll-behavior: smooth;
            overflow-x: hidden;
        }


        .container-fluid {
            max-width: 1850px;
        }

        h2 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            line-height: 1.2;
            font-weight: 700;
            color: white;
        }

        h3 {
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            line-height: 1.3;
            font-weight: 700;
            color: white;
        }

        h4 {
            font-size: clamp(1.2rem, 3vw, 2rem);
            line-height: 1.3;
            font-weight: 700;
            color: white;
        }

        h5 {
            font-size: clamp(1rem, 2.5vw, 1.5rem);
            line-height: 1.4;
            font-weight: 600;
            color: white;
        }

        p {
            font-size: clamp(0.9rem, 2vw, 1.1rem);
            line-height: 1.6;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Gradient Text */
        .gradient-text {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }

        /* Hero Section */
        .hero-services-section {
            position: relative;
            min-height: 75vh;
            display: flex;
            padding: clamp(80px, 15vw, 100px) 0 clamp(60px, 12vw, 70px);
            align-items: center;
            overflow: hidden;
            margin-top: 5rem;
            border-bottom: 4px solid var(--primary-orange);
            border-radius: 0px 0px 30px 30px;
            background: var(--bg-dark);
        }

        /* Animated Background */
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0a0f2c 0%, #1a1f3a 50%, #0a0f2c 100%);
        }

        /* Geometric Shapes */
        .hero-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            background: var(--gradient-primary);
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            top: 10%;
            right: -5%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 200px;
            height: 200px;
            bottom: 20%;
            left: -3%;
            animation-delay: 2s;
        }

        .shape-3 {
            width: 150px;
            height: 150px;
            top: 50%;
            right: 20%;
            animation-delay: 4s;
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            border-radius: 0;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-30px) rotate(180deg);
            }
        }

        .hero-content-wrapper {
            position: relative;
            z-index: 5;
            width: 100%;
            max-width: 1850px;
            margin: 0 auto;
            padding: 0 max(40px, 3vw);
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            width: 100%;
        }

        .hero-text {
            position: relative;
            z-index: 3;
            margin-top: 0;
            max-width: 700px;
            width: 100%;
        }


        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 95, 21, 0.1);
            border: 2px solid rgba(255, 95, 21, 0.3);
            color: var(--secondary-orange);
            padding: 12px 24px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 30px;
            backdrop-filter: blur(10px);
            animation: slideInLeft 1s ease-out;
        }

        .hero-badge i {
            font-size: 16px;
            animation: pulse 2s infinite;
        }

        .hero-title {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 25px;
            animation: slideInLeft 1.2s ease-out 0.3s both;
        }

        .hero-title .highlight {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            display: inline-block;
        }

        .hero-title .highlight::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 2px;
            animation: expandLine 1.5s ease-out 1.5s both;
        }

        @keyframes expandLine {
            0% {
                width: 0;
            }

            100% {
                width: 100%;
            }
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            color: white;
            line-height: 1.6;
            margin-bottom: 35px;
            animation: slideInLeft 1.2s ease-out 0.6s both;
            
        }

        /* Hero Actions */
        .hero-actions {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            animation: slideInLeft 1.2s ease-out 0.9s both;
        }

        .hero-btn-primary {
            background: var(--gradient-primary);
            color: white;
            border: none;
            padding: 18px 35px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: var(--shadow-primary);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .hero-btn-primary::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.5s;
        }

        .hero-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
            color: white;
            text-decoration: none;
        }

        .hero-btn-primary:hover::before {
            left: 100%;
        }

        .hero-btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            padding: 16px 35px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            transition: var(--transition);
            backdrop-filter: blur(10px);
            cursor: pointer;
        }

        .hero-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--primary-orange);
            color: var(--primary-orange);
            transform: translateY(-3px);
            text-decoration: none;
        }

        /* Right Visual */
        .hero-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            animation: slideInRight 1.2s ease-out 0.6s both;
            height: 100%;
            max-height: calc(100vh - 200px);
            width: 100%;
            max-width: 700px;
            justify-self: end;
        }

        .services-showcase {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            max-width: 550px;
            width: 100%;
            position: relative;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 95, 21, 0.2);
            border-radius: 20px;
            padding: 30px 20px;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 95, 21, 0.1), transparent);
            transition: left 0.5s;
        }

        .service-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: var(--primary-orange);
            box-shadow: 0 20px 40px rgba(255, 95, 21, 0.3);
            background: rgba(255, 255, 255, 0.08);
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 28px;
            color: white;
            transition: var(--transition);
        }

        .service-card:hover .service-card-icon {
            transform: rotateY(360deg) scale(1.1);
        }

        .service-card-title {
            font-size: 16px;
            font-weight: 700;
            color: white;
            margin-bottom: 10px;
        }

        .service-card-desc {
            font-size: 19px;
            color: orange;
            line-height: 1.5;
        }

        .central-logo {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 140px;
            height: 140px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            box-shadow: 0 25px 50px rgba(255, 95, 21, 0.5);
            animation: logoFloat 3s ease-in-out infinite;
            border: 4px solid rgba(255, 255, 255, 0.1);
        }




        .central-logo img {
            width: 90px;
            height: auto;
            filter: brightness(0) invert(1);
        }

        @keyframes logoFloat {

            0%,
            100% {
                transform: translate(-50%, -50%) scale(1);
                box-shadow: 0 25px 50px rgba(255, 95, 21, 0.5);
            }

            50% {
                transform: translate(-50%, -50%) scale(1.15);
                box-shadow: 0 30px 60px rgba(255, 95, 21, 0.7);
            }
        }

        /* Animations */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-text {
                text-align: center;
                order: 2;
                max-width: 100%;
                justify-self: center;
            }

            .hero-visual {
                order: 1;
                max-height: none;
                justify-self: center;
            }

            .services-showcase {
                max-width: 450px;
                margin: 0 auto;
            }

            .hero-actions {
                justify-content: center;
            }



            .central-logo {
                width: 120px;
                height: 120px;
            }

            .central-logo img {
                width: 70px;
            }
        }

        @media (max-width: 768px) {
            .hero-services-section {
                padding: 60px 0;
                min-height: 60vh;
            }

            .hero-content-wrapper {
                padding: 0 20px;
            }

            .hero-grid {
                gap: 20px;
            }

            .hero-badge {
                padding: 10px 20px;
                font-size: 12px;
            }

            .hero-subtitle {
                margin-bottom: 30px;
            }

            .hero-btn-primary,
            .hero-btn-secondary {
                padding: 15px 28px;
                font-size: 15px;
            }

            .services-showcase {
                gap: 15px;
                max-width: 380px;
            }

            .service-card {
                padding: 25px 15px;
            }

            .service-card-icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }

            .service-card-title {
                font-size: 15px;
            }

            .service-card-desc {
                font-size: 12px;
            }

            .central-logo {
                width: 100px;
                height: 100px;
            }

            .central-logo img {
                width: 60px;
            }
        }

        @media (max-width: 576px) {
            .hero-services-section {
                padding: 50px 0;
            }

            .hero-actions {
                flex-direction: column;
                width: 100%;
            }

            .hero-btn-primary,
            .hero-btn-secondary {
                width: 100%;
                justify-content: center;
                padding: 14px 25px;
                font-size: 14px;
            }

            .services-showcase {
                max-width: 320px;
                gap: 12px;
            }

            .service-card {
                padding: 20px 12px;
            }

            .service-card-icon {
                width: 50px;
                height: 50px;
                font-size: 20px;
                margin-bottom: 15px;
            }

            .service-card-title {
                font-size: 14px;
                margin-bottom: 8px;
            }

            .service-card-desc {
                font-size: 11px;
            }

            .central-logo {
                width: 85px;
                height: 85px;
            }

            .central-logo img {
                width: 50px;
            }
        }

        @media (max-width: 480px) {

            .shape-1,
            .shape-2,
            .shape-3 {
                display: none;
            }

            .services-showcase {
                max-width: 280px;
            }
        }

        /* hero section end  */

        /* Services Section Enhanced Zigzag Layout */
        .services-zigzag {
            display: flex;
            flex-direction: column;
            gap: 80px;
            margin-top: 60px;
        }

        .service-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            padding: 40px;
            background: rgba(255, 255, 255, 0.02);
            border: 2px solid rgba(255, 95, 21, 0.15);
            border-radius: 30px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .service-row::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 95, 21, 0.05), transparent);
            transition: left 0.6s ease;
        }

        .service-row:hover {
            border-color: rgba(255, 95, 21, 0.4);
            background: rgba(255, 255, 255, 0.04);
            box-shadow: 0 20px 60px rgba(255, 95, 21, 0.2);
            transform: translateY(-5px);
        }

        .service-row:hover::before {
            left: 100%;
        }

        /* Reverse layout for alternating rows */
        .service-row.reverse {
            direction: rtl;
        }

        .service-row.reverse>* {
            direction: ltr;
        }

        /* Image Wrapper */
        .service-image-wrapper {
            position: relative;
        }

        .service-image-box {
            position: relative;
            width: 102%;
            height: auto;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            transition: all 0.4s ease;
        }

        .service-row:hover .service-image-box {
            transform: scale(1.03);
            box-shadow: 0 20px 50px rgba(255, 95, 21, 0.3);
        }

        .service-image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 95, 21, 0.1), rgba(255, 168, 2, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .service-row:hover .image-overlay {
            opacity: 1;
        }

        /* Content Wrapper */
        .service-content-wrapper {
            padding: 20px;
        }

        .service-badge {
            display: inline-block;
            background: var(--gradient-primary);
            color: white;
            padding: 8px 20px;
            border-radius: 9px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
        }

        .service-heading {
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.3;
            color: white;
        }

        .service-heading .highlight {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .service-text {
            font-size: clamp(0.95rem, 2vw, 1.1rem);
            color: white;
            line-height: 1.7;
            margin-bottom: 25px;
            /*text-transform: capitalize;*/
            text-align: justify;
        }

        .service-list {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
            text-transform: capitalize;
        }

        .service-list li {
            padding: 10px 0;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .service-list i {
            color: var(--secondary-orange);
            font-size: 16px;
            margin-top: 3px;
            flex-shrink: 0;
        }

        .service-action-btn {
            background: var(--gradient-primary);
            color: white;
            border: none;
            padding: 15px 35px;
            border-radius: 15px;
            font-weight: 600;
            font-size: 19px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(255, 95, 21, 0.3);
            text-decoration: none;
        }

        .service-action-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 95, 21, 0.5);
        }

        .service-action-btn i {
            transition: transform 0.3s ease;
        }

        .service-action-btn:hover i {
            transform: translateX(5px);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .service-row {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 30px;
            }

            .service-row.reverse {
                direction: ltr;
            }

            .service-image-box {
                height: 350px;
            }
        }

        @media (max-width: 768px) {
            .services-zigzag {
                gap: 50px;
            }

            .service-row {
                padding: 25px 20px;
            }

            .service-image-box {
                height: 300px;
            }

            .service-image-box img {
                object-fit: contain;
            }

            .service-content-wrapper {
                padding: 10px;
            }
        }

        @media (max-width: 480px) {
            .service-row {
                padding: 20px 15px;
            }

            .service-image-box {
                height: 250px;
                border-radius: 20px;
            }

            .service-badge {
                font-size: 0.75rem;
                padding: 6px 15px;
            }

            .service-action-btn {
                width: 100%;
                justify-content: center;
            }
        }

        /* Stats Section */
        .stats-section {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 30px;
            margin: 60px 0;
            padding: 60px 0;
            backdrop-filter: blur(10px);
            border: 2px solid var(--border-orange);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .stat-item {
            padding: 20px;
        }

        .stat-number {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
            display: block;
        }

        .stat-label {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
        }



        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulseOverlay {

            0%,
            100% {
                opacity: 0.8;
                transform: scale(1);
            }

            50% {
                opacity: 1;
                transform: scale(1.02);
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }

        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in-up.show {
            opacity: 1;
            transform: translateY(0);
            margin-top: 5rem;
        }

        @media (max-width: 768px) {
            .fade-in-up.show {
                margin-top: 7.7rem;
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .service-item {
                grid-template-columns: 1fr;
                gap: 30px;
                /* text-align: center; */
            }

            .service-item:nth-child(even) {
                direction: ltr;
            }

            .service-image {
                height: 300px;
            }
        }

        @media (max-width: 768px) {

            .section {
                /* padding: 50px 0; */
            }

            .service-content {
                padding: 20px;
            }

            .stats-section,
            .cta-section {
                margin: 40px 0;
                padding: 40px 20px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
        }

        @media (max-width: 480px) {


            .section {
                /* padding: 40px 0; */
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .service-image {
                height: 250px;
            }
        }










        /* bharat connect visual start  */
        /* Bharat Connect Visual Styles */
        /* Bharat Connect Visual - NEW DESIGN */
        .bharat-connect-visual-new {
            position: relative;
            width: 100%;
            /* height: 550px; */
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: visible;
        }

        .bc-main-container {
            position: relative;
            width: 100%;
            max-width: 600px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Central Payment Dashboard */
        .payment-dashboard-card {
            position: relative;
            width: 400px;
            background: linear-gradient(145deg, rgba(26, 31, 58, 0.98), rgba(13, 22, 62, 0.98));
            backdrop-filter: blur(25px);
            border: 2px solid rgba(255, 95, 21, 0.4);
            border-radius: 30px;
            padding: 15px 30px;
            box-shadow:
                0 50px 100px rgba(0, 0, 0, 0.6),
                inset 0 1px 2px rgba(255, 255, 255, 0.1);
            z-index: 10;
            /* animation: dashboardPulse 4s ease-in-out infinite; */
        }

        @keyframes dashboardPulse {

            0%,
            100% {
                transform: translateY(0px) scale(1);
                box-shadow: 0 50px 100px rgba(0, 0, 0, 0.6);
            }

            50% {
                transform: translateY(-12px) scale(1.02);
                box-shadow: 0 60px 120px rgba(255, 95, 21, 0.3);
            }
        }

        .payment-dashboard-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: var(--gradient-primary);
            border-radius: 30px;
            z-index: -1;
            opacity: 0;
            /* animation: borderGlow 3s ease-in-out infinite; */
        }

        @keyframes borderGlow {

            0%,
            100% {
                opacity: 0;
            }

            50% {
                opacity: 0.6;
            }
        }

        /* Dashboard Header */
        .bc-dashboard-header {
            text-align: center;
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255, 95, 21, 0.2);
        }

        .bc-logo-wrapper {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            position: relative;
            animation: logoSpin 8s linear infinite;
        }

        @keyframes logoSpin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .bc-logo-wrapper::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border: 3px solid var(--primary-orange);
            border-radius: 22px;
            animation: logoPulseRing 2s ease-in-out infinite;
        }

        @keyframes logoPulseRing {

            0%,
            100% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.2);
                opacity: 0;
            }
        }

        .bc-logo-wrapper i {
            font-size: 38px;
            color: white;
            animation: logoSpinReverse 8s linear infinite;
        }

        @keyframes logoSpinReverse {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(-360deg);
            }
        }

        .bc-title {
            font-size: 24px;
            font-weight: 800;
            color: white;
            margin: 0 0 8px 0;
        }

        .bc-subtitle {
            font-size: 20px;
            color: orange;
            font-weight: 500;
        }

        /* Bill Categories Grid */
        .bill-categories-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
            margin-bottom: 15px;
        }

        .bill-category-item {
            background: rgba(255, 255, 255, 0.04);
            border: 2px solid rgba(255, 95, 21, 0.15);
            border-radius: 18px;
            padding: 6px 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .bill-category-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 95, 21, 0.15), transparent);
            transition: left 0.6s;
        }

        .bill-category-item:hover {
            transform: translateY(-8px) scale(1.05);
            border-color: var(--primary-orange);
            background: rgba(255, 95, 21, 0.08);
            box-shadow: 0 15px 35px rgba(255, 95, 21, 0.4);
        }

        .bill-category-item:hover::before {
            left: 100%;
        }

        .category-icon-wrapper {
            width: 35px;
            height: 35px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: white;
            transition: transform 0.4s ease;
            position: relative;
        }

        .bill-category-item:hover .category-icon-wrapper {
            transform: rotateY(360deg) scale(1.15);
        }

        .category-icon-wrapper::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 15px;
            background: inherit;
            filter: blur(15px);
            opacity: 0.5;
            z-index: -1;
        }

        .bill-category-item.electricity .category-icon-wrapper {
            background: linear-gradient(135deg, #FFD700, #FFA500);
        }

        .bill-category-item.water .category-icon-wrapper {
            background: linear-gradient(135deg, #00B4DB, #0083B0);
        }

        .bill-category-item.broadband .category-icon-wrapper {
            background: linear-gradient(135deg, #667eea, #764ba2);
        }

        .bill-category-item.gas .category-icon-wrapper {
            background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
        }

        .bill-category-item.tax .category-icon-wrapper {
            background: linear-gradient(135deg, #4ECDC4, #44A08D);
        }

        .bill-category-item.fastag .category-icon-wrapper {
            background: linear-gradient(135deg, #f093fb, #f5576c);
        }

        .category-label {
            font-size: 16px;
            font-weight: 700;
            color: white;
            text-align: center;
            line-height: 1.2;
            margin-left: 0.7vw;
        }

        .category-status {
            font-size: 10px;
            color: var(--secondary-orange);
            font-weight: 600;
        }

        /* Quick Pay Section */
        .quick-pay-section {
            background: rgba(255, 95, 21, 0.08);
            border: 1px solid rgba(255, 95, 21, 0.3);
            border-radius: 18px;
            padding: 20px;
            margin-bottom: 15px;
        }

        .quick-pay-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .quick-pay-title {
            font-size: 19px;
            font-weight: 700;
            color: white;
        }

        .amount-badge {
            background: var(--gradient-primary);
            color: white;
            padding: 6px 14px;
            border-radius: 10px;
            font-size: 18px;
            font-weight: 700;
        }

        .bill-details {
            display: flex;
            justify-content: space-between;
            margin-bottom: 6px;
            font-size: 16px;
        }

        .bill-details span:first-child {
            color: rgba(255, 255, 255, 0.7);
        }

        .bill-details span:last-child {
            color: white;
            font-weight: 600;
        }

        /* Pay Button */
        .bc-pay-button {
            width: 100%;
            background: var(--gradient-primary);
            border: none;
            border-radius: 16px;
            padding: 14px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 15px 40px rgba(255, 95, 21, 0.4);
            position: relative;
            overflow: hidden;
        }

        .bc-pay-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.6s;
        }

        .bc-pay-button:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 50px rgba(255, 95, 21, 0.6);
        }

        .bc-pay-button:hover::before {
            left: 100%;
        }

        .pay-btn-left,
        .pay-btn-right {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .pay-btn-icon {
            width: 32px;
            height: 32px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: white;
        }

        .pay-btn-text {
            font-size: 19px;
            font-weight: 700;
            color: white;
        }

        .pay-arrow {
            font-size: 16px;
            color: white;
            animation: arrowBounce 1.5s ease-in-out infinite;
        }

        @keyframes arrowBounce {

            0%,
            100% {
                transform: translateX(0);
            }

            50% {
                transform: translateX(6px);
            }
        }

        /* Floating Bill Cards */
        .floating-bills {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .floating-bill-card {
            position: absolute;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(15px);
            border: 2px solid rgba(255, 95, 21, 0.3);
            border-radius: 15px;
            padding: 15px 20px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }

        .bill-card-header {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .bill-card-icon {
            width: 35px;
            height: 35px;
            background: var(--gradient-primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: white;
        }

        .bill-card-title {
            font-size: 13px;
            font-weight: 700;
            color: white;
        }

        .bill-card-amount {
            font-size: 18px;
            font-weight: 800;
            color: var(--secondary-orange);
        }

        .bill-card-status {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.7);
        }

        .bill-card-1 {
            top: 8%;
            left: -12%;
            animation: billFloat1 6s ease-in-out infinite;
        }

        .bill-card-2 {
            top: 45%;
            right: -18%;
            animation: billFloat2 7s ease-in-out infinite;
        }

        .bill-card-3 {
            bottom: 15%;
            left: -18%;
            animation: billFloat3 6.5s ease-in-out infinite;
        }

        @keyframes billFloat1 {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-25px) rotate(5deg);
            }
        }

        @keyframes billFloat2 {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-30px) rotate(-5deg);
            }
        }

        @keyframes billFloat3 {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-22px) rotate(3deg);
            }
        }

        /* Success Notification */
        .bc-success-popup {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            background: rgba(0, 200, 83, 0.15);
            backdrop-filter: blur(25px);
            border: 3px solid #00C853;
            border-radius: 22px;
            padding: 30px 40px;
            text-align: center;
            box-shadow: 0 25px 70px rgba(0, 200, 83, 0.5);
            animation: successPopup 7s ease-in-out infinite;
            z-index: 25;
        }

        @keyframes successPopup {

            0%,
            80%,
            100% {
                transform: translate(-50%, -50%) scale(0);
                opacity: 0;
            }

            85%,
            95% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }
        }

        .success-check-icon {
            width: 75px;
            height: 75px;
            background: #00C853;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            animation: successCheck 1.5s ease-in-out;
        }

        @keyframes successCheck {
            0% {
                transform: rotate(0deg) scale(0);
            }

            50% {
                transform: rotate(180deg) scale(1.3);
            }

            100% {
                transform: rotate(360deg) scale(1);
            }
        }

        .success-check-icon i {
            font-size: 38px;
            color: white;
        }

        .success-message {
            font-size: 20px;
            font-weight: 800;
            color: white;
            margin: 0 0 8px 0;
        }

        .success-submessage {
            font-size: 18px;
            color: white;
        }

        /* Orbit Rings */
        .bc-orbit-rings {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .orbit-ring {
            position: absolute;
            border: 2px dashed rgba(255, 95, 21, 0.2);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .ring-1 {
            width: 450px;
            height: 450px;
            animation: rotateRing 25s linear infinite;
        }

        .ring-2 {
            width: 550px;
            height: 550px;
            animation: rotateRing 30s linear infinite reverse;
        }

        .ring-3 {
            width: 350px;
            height: 350px;
            animation: rotateRing 20s linear infinite;
        }
        
        .ring-4 {
            width: 650px;
            height: 650px;
            animation: rotateRing 20s linear infinite;
        }

        @keyframes rotateRing {
            from {
                transform: translate(-50%, -50%) rotate(0deg);
            }

            to {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

        /* Animated Particles */
        .bc-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .bc-particle {
            position: absolute;
            width: 5px;
            height: 5px;
            background: var(--secondary-orange);
            border-radius: 50%;
            opacity: 0;
            animation: particleFloat 5s ease-in-out infinite;
        }

        .bc-p1 {
            top: 15%;
            left: 12%;
            animation-delay: 0s;
        }

        .bc-p2 {
            top: 35%;
            right: 18%;
            animation-delay: 1s;
        }

        .bc-p3 {
            bottom: 25%;
            left: 15%;
            animation-delay: 2s;
        }

        .bc-p4 {
            top: 55%;
            right: 12%;
            animation-delay: 3s;
        }

        .bc-p5 {
            bottom: 18%;
            right: 20%;
            animation-delay: 4s;
        }

        @keyframes particleFloat {

            0%,
            100% {
                transform: translateY(0px);
                opacity: 0;
            }

            50% {
                transform: translateY(-40px);
                opacity: 1;
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .bharat-connect-visual-new {
                height: 500px;
            }

            .payment-dashboard-card {
                width: 370px;
                padding: 30px 25px;
            }

            .floating-bill-card {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .bharat-connect-visual-new {
                height: 480px;
            }

            .payment-dashboard-card {
                width: 350px;
                padding: 28px 22px;
            }

            .bc-logo-wrapper {
                width: 70px;
                height: 70px;
            }

            .bc-logo-wrapper i {
                font-size: 34px;
            }

            .bill-categories-grid {
                gap: 10px;
            }

            .category-icon-wrapper {
                width: 50px;
                height: 50px;
                font-size: 24px;
            }

            .bc-orbit-rings {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .bharat-connect-visual-new {
                height: 460px;
            }

            .payment-dashboard-card {
                width: 320px;
                padding: 25px 20px;
            }

            .bc-logo-wrapper {
                width: 65px;
                height: 65px;
            }

            .bc-logo-wrapper i {
                font-size: 30px;
            }

            .bc-title {
                font-size: 22px;
            }

            .bill-categories-grid {
                gap: 8px;
            }

            .bill-category-item {
                padding: 15px 10px;
            }

            .category-icon-wrapper {
                width: 48px;
                height: 48px;
                font-size: 22px;
            }

            .category-label {
                font-size: 12px;
            }

            .quick-pay-section {
                padding: 18px;
            }

            .bc-pay-button {
                padding: 16px;
            }

            .pay-btn-icon {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }

            .pay-btn-text {
                font-size: 15px;
            }

            .success-check-icon {
                width: 65px;
                height: 65px;
            }

            .success-check-icon i {
                font-size: 32px;
            }

            .success-message {
                font-size: 18px;
            }

            .bc-particles {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .bharat-connect-visual-new {
                height: 440px;
            }

            .payment-dashboard-card {
                width: 300px;
                padding: 22px 18px;
            }

            .bill-categories-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }

            .bc-pay-button {
                padding: 14px;
            }
        }


        /* bharat connect visual end   */



        /* education visual start  */

        /* Education Visual New Styles */
        .education-visual-new {
            position: relative;
            width: 100%;
            height: 550px;
            display: flex;
            align-items: center;
            justify-content: center;
            /* overflow: hidden; */
        }

        .edu-scene-container {
            position: relative;
            /*width: 100%;*/
            max-width: 600px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Laptop Device */
        .laptop-device {
            position: relative;
            z-index: 10;
            width: 100%;
            max-width: 480px;
            animation: laptopFloat 4s ease-in-out infinite;
        }

        @keyframes laptopFloat {

            0%,
            100% {
                transform: translateY(0px) rotateX(5deg);
            }

            50% {
                transform: translateY(-20px) rotateX(5deg);
            }
        }

        .laptop-screen {
            background: linear-gradient(145deg, #1a1f3a 0%, #0d163e 100%);
            border-radius: 25px;
            padding: 20px;
            box-shadow:
                0 30px 60px rgba(0, 0, 0, 0.5),
                inset 0 1px 2px rgba(255, 255, 255, 0.1);
            border: 3px solid rgba(255, 95, 21, 0.3);
            /*border-bottom: none;*/
            position: relative;
            overflow: hidden;
        }

        .laptop-screen::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            animation: screenGlare 3s infinite;
        }

        @keyframes screenGlare {
            0% {
                left: -100%;
            }

            50%,
            100% {
                left: 100%;
            }
        }

        /* Dashboard Header */
        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255, 95, 21, 0.2);
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-badge {
            width: 45px;
            height: 45px;
            background: var(--gradient-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: white;
            animation: logoBounce 2s ease-in-out infinite;
        }

        @keyframes logoBounce {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
        }

        .header-text {
            display: flex;
            flex-direction: column;
        }

        .brand-name {
            font-size: 16px;
            font-weight: 700;
            color: white;
            line-height: 1.2;
        }

        .tagline {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.6);
        }

        .header-right {
            position: relative;
        }

        .notification-bell {
            width: 38px;
            height: 38px;
            background: rgba(255, 95, 21, 0.1);
            border: 1px solid rgba(255, 95, 21, 0.3);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary-orange);
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            animation: bellShake 3s ease-in-out infinite;
        }

        @keyframes bellShake {

            0%,
            90%,
            100% {
                transform: rotate(0deg);
            }

            92%,
            96% {
                transform: rotate(-15deg);
            }

            94%,
            98% {
                transform: rotate(15deg);
            }
        }

        .bell-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            width: 18px;
            height: 18px;
            background: #FF3B30;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: 700;
            color: white;
        }

        /* Profile Section */
        .profile-section {
            margin-bottom: 20px;
        }

        .profile-card {
            display: flex;
            align-items: center;
            gap: 15px;
            background: rgba(255, 255, 255, 0.05);
            padding: 15px;
            border-radius: 15px;
            border: 1px solid rgba(255, 95, 21, 0.2);
        }

        .profile-img-wrapper {
            position: relative;
        }

        .profile-img {
            width: 55px;
            height: 55px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            color: white;
        }

        .status-dot {
            position: absolute;
            bottom: 2px;
            right: 2px;
            width: 12px;
            height: 12px;
            background: #00C853;
            border-radius: 50%;
            border: 2px solid #1a1f3a;
            animation: statusPulse 2s ease-in-out infinite;
        }

        @keyframes statusPulse {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.7);
            }

            50% {
                box-shadow: 0 0 0 6px rgba(0, 200, 83, 0);
            }
        }

        .profile-details h6 {
            font-size: 19px;
            font-weight: 700;
            color: white;
            margin: 0 0 3px 0;
        }

        .profile-details p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.6);
            margin: 0 0 6px 0;
        }

        .semester-badge {
            display: inline-block;
            background: rgba(255, 168, 2, 0.2);
            color: var(--secondary-orange);
            padding: 3px 10px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
        }

        /* Fee Cards Grid */
        .fee-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 18px;
        }

        .mini-fee-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 95, 21, 0.2);
            border-radius: 12px;
            padding: 12px 10px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .mini-fee-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 95, 21, 0.1), transparent);
            transition: left 0.5s;
        }

        .mini-fee-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-orange);
            background: rgba(255, 255, 255, 0.06);
        }

        .mini-fee-card:hover::before {
            left: 100%;
        }

        .card-icon {
            width: 35px;
            height: 35px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: white;
        }

        .mini-fee-card.tuition .card-icon {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .mini-fee-card.hostel .card-icon {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .mini-fee-card.exam .card-icon {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        .card-details {
            display: flex;
            flex-direction: column;
            gap: 3px;
        }

        .card-label {
            font-size: 19px;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 600;
        }

        .card-amount {
            font-size: 17px;
            color: white;
            font-weight: 700;
        }

        .card-status {
            position: absolute;
            top: 8px;
            right: 8px;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
        }

        .card-status.paid {
            background: rgba(0, 200, 83, 0.2);
            color: #00C853;
        }

        .card-status.pending {
            background: rgba(255, 152, 0, 0.2);
            color: #FF9800;
            animation: statusBlink 2s ease-in-out infinite;
        }

        @keyframes statusBlink {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.5;
            }
        }

        /* Pay Section */
        .pay-section {
            margin-top: 15px;
        }

        .secure-pay-btn {
            width: 100%;
            background: var(--gradient-primary);
            border: none;
            padding: 14px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 95, 21, 0.4);
            position: relative;
            overflow: hidden;
        }

        .secure-pay-btn::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.5s;
        }

        .secure-pay-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 95, 21, 0.6);
        }

        .secure-pay-btn:hover::before {
            left: 100%;
        }

        .btn-icon,
        .btn-arrow {
            width: 32px;
            height: 32px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
        }

        .btn-text {
            flex: 1;
            text-align: center;
            color: white;
            font-size: 14px;
            font-weight: 700;
        }

        .btn-arrow {
            animation: arrowBounce 1.5s ease-in-out infinite;
        }

        @keyframes arrowBounce {

            0%,
            100% {
                transform: translateX(0);
            }

            50% {
                transform: translateX(5px);
            }
        }

        /* Laptop Base */
        .laptop-base {
            width: 110%;
            height: 15px;
            background: linear-gradient(145deg, #2a2f4a, #1a1f3a);
            border-radius: 0 0 20px 20px;
            margin: 0 auto;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            display: none;
        }

        .laptop-base::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: rgba(255, 95, 21, 0.5);
            border-radius: 0 0 5px 5px;
        }

        .keyboard-section {
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 95%;
            height: 8px;
            background: linear-gradient(145deg, #1a1f3a, #0d163e);
            border-radius: 0 0 15px 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
        }

        /* Floating Elements */
        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .books-stack {
            position: absolute;
            top: 10%;
            left: 2%;
            width: 70px;
            height: 70px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            animation: bookFloat 4s ease-in-out infinite;
        }

        @keyframes bookFloat {

            0%,
            100% {
                transform: translateY(0px) rotate(-5deg);
            }

            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }

        .book {
            width: 50px;
            height: 8px;
            border-radius: 2px;
            margin-bottom: 3px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .book-1 {
            background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
        }

        .book-2 {
            background: linear-gradient(135deg, #4ECDC4, #44A08D);
        }

        .book-3 {
            background: linear-gradient(135deg, #FFD93D, #FFC837);
        }

        .book-icon {
            font-size: 24px;
            color: var(--secondary-orange);
            margin-top: 5px;
            animation: iconSpin 3s linear infinite;
        }

        @keyframes iconSpin {
            0% {
                transform: rotateY(0deg);
            }

            100% {
                transform: rotateY(360deg);
            }
        }

        .certificate-card {
            position: absolute;
            top: 15%;
            right: 5%;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 95, 21, 0.3);
            border-radius: 12px;
            padding: 12px 15px;
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--secondary-orange);
            font-size: 12px;
            font-weight: 600;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            animation: certFloat 5s ease-in-out infinite;
        }

        @keyframes certFloat {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-25px) rotate(5deg);
            }
        }

        .certificate-card i {
            font-size: 20px;
        }

        .calculator-card {
            position: absolute;
            bottom: 25%;
            left: -10%;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 95, 21, 0.3);
            border-radius: 12px;
            padding: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            animation: calcFloat 4.5s ease-in-out infinite;
        }

        @keyframes calcFloat {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        .calculator-card i {
            font-size: 24px;
            color: var(--secondary-orange);
        }

        .calc-display {
            background: rgba(0, 0, 0, 0.3);
            padding: 5px 12px;
            border-radius: 6px;
        }

        .calc-display span {
            font-size: 11px;
            font-weight: 700;
            color: #00C853;
            font-family: 'Courier New', monospace;
        }

        .trophy-card {
            position: absolute;
            bottom: 15%;
            right: 3%;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #FFD700, #FFA500);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
            animation: trophyFloat 3s ease-in-out infinite;
            position: relative;
            overflow: hidden;
        }

        @keyframes trophyFloat {

            0%,
            100% {
                transform: translateY(0px) scale(1);
            }

            50% {
                transform: translateY(-15px) scale(1.1);
            }
        }

        .trophy-card i {
            font-size: 28px;
            color: white;
            z-index: 2;
        }

        .trophy-shine {
            position: absolute;
            top: -100%;
            left: -100%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.6), transparent);
            animation: trophyShine 3s infinite;
        }

        @keyframes trophyShine {
            0% {
                transform: translateX(-100%) translateY(-100%);
            }

            100% {
                transform: translateX(100%) translateY(100%);
            }
        }

        /* Success Popup */
        .success-popup {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            background: rgba(0, 200, 83, 0.15);
            backdrop-filter: blur(20px);
            border: 2px solid #00C853;
            border-radius: 20px;
            padding: 25px 35px;
            text-align: center;
            box-shadow: 0 20px 60px rgba(0, 200, 83, 0.4);
            animation: popupAppear 5s ease-in-out infinite;
            z-index: 20;
        }

        @keyframes popupAppear {

            0%,
            80%,
            100% {
                transform: translate(-50%, -50%) scale(0);
                opacity: 0;
            }

            85%,
            95% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }
        }

        .success-icon-wrapper {
            width: 60px;
            height: 60px;
            background: #00C853;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
        }

        .success-icon-wrapper i {
            font-size: 32px;
            color: white;
        }

        .success-text {
            font-size: 18px;
            font-weight: 700;
            color: white;
            margin: 0 0 5px 0;
        }

        .success-subtext {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
        }

        /* Payment Methods Float */
        .payment-methods-float {
            position: absolute;
            bottom: 0%;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            animation: methodsSlideUp 1s ease-out;
        }

        @keyframes methodsSlideUp {
            from {
                transform: translateX(-50%) translateY(50px);
                opacity: 0;
            }

            to {
                transform: translateX(-50%) translateY(0);
                opacity: 1;
            }
        }

        .payment-chip {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 95, 21, 0.3);
            border-radius: 10px;
            padding: 8px 12px;
            display: flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            animation: chipFadeIn 0.5s ease-out forwards;
            opacity: 0;
        }

        .payment-chip:nth-child(1) {
            animation-delay: 0.1s;
        }

        .payment-chip:nth-child(2) {
            animation-delay: 0.2s;
        }

        .payment-chip:nth-child(3) {
            animation-delay: 0.3s;
        }

        @keyframes chipFadeIn {
            to {
                opacity: 1;
            }
        }

        .payment-chip:hover {
            transform: translateY(-5px);
            border-color: var(--primary-orange);
            background: rgba(255, 95, 21, 0.2);
        }

        .payment-chip i {
            font-size: 14px;
        }

        .payment-chip span {
            font-size: 11px;
            font-weight: 600;
            color: white;
        }

        .upi-chip i {
            color: #00C853;
        }

        .card-chip i {
            color: #2979FF;
        }

        .wallet-chip i {
            color: #FF9800;
        }

        /* Decorative Circles */
        .deco-circles {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .deco-circle {
            position: absolute;
            border-radius: 50%;
            border: 2px solid rgba(255, 95, 21, 0.1);
        }

        .circle-1 {
            width: 200px;
            height: 200px;
            top: 10%;
            right: 5%;
            animation: circleRotate 20s linear infinite;
        }

        .circle-2 {
            width: 150px;
            height: 150px;
            bottom: 15%;
            left: 8%;
            animation: circleRotate 25s linear infinite reverse;
        }

        .circle-3 {
            width: 100px;
            height: 100px;
            top: 50%;
            left: 2%;
            animation: circleRotate 15s linear infinite;
        }

        .circle-4 {
            width: 120px;
            height: 120px;
            bottom: 40%;
            right: 10%;
            animation: circleRotate 18s linear infinite reverse;
        }
        
      

        @keyframes circleRotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        /* Particles */
        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--secondary-orange);
            border-radius: 50%;
            opacity: 0;
            animation: particleFloat 4s ease-in-out infinite;
        }

        .p1 {
            top: 20%;
            left: 15%;
            animation-delay: 0s;
        }

        .p2 {
            top: 40%;
            right: 20%;
            animation-delay: 0.8s;
        }

        .p3 {
            bottom: 30%;
            left: 10%;
            animation-delay: 1.6s;
        }

        .p4 {
            top: 60%;
            right: 15%;
            animation-delay: 2.4s;
        }

        .p5 {
            bottom: 20%;
            left: 25%;
            animation-delay: 3.2s;
        }

        @keyframes particleFloat {

            0%,
            100% {
                transform: translateY(0px);
                opacity: 0;
            }

            50% {
                transform: translateY(-30px);
                opacity: 1;
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .education-visual-new {
                height: 500px;
            }

            .laptop-device {
                max-width: 420px;
            }

            .laptop-screen {
                padding: 18px;
            }

            .books-stack,
            .certificate-card,
            .calculator-card,
            .trophy-card {
                display: none;
            }

            .payment-methods-float {
                bottom: 8%;
            }
        }

        @media (max-width: 768px) {
            .education-visual-new {
                height: 450px;
            }

            .laptop-device {
                max-width: 380px;
            }

            .laptop-screen {
                padding: 16px;
                border-radius: 12px 12px 0 0;
            }

            .logo-badge {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .brand-name {
                font-size: 14px;
            }

            .tagline {
                font-size: 10px;
            }

            .notification-bell {
                width: 35px;
                height: 35px;
                font-size: 14px;
            }

            .profile-img {
                width: 50px;
                height: 50px;
                font-size: 24px;
            }

            .profile-details h6 {
                font-size: 14px;
            }

            .profile-details p {
                font-size: 11px;
            }

            .fee-cards-grid {
                gap: 8px;
            }

            .mini-fee-card {
                padding: 10px 8px;
            }

            .card-icon {
                width: 32px;
                height: 32px;
                font-size: 14px;
            }

            .card-label {
                font-size: 9px;
            }

            .card-amount {
                font-size: 12px;
            }

            .secure-pay-btn {
                padding: 12px;
            }

            .btn-icon,
            .btn-arrow {
                width: 28px;
                height: 28px;
                font-size: 12px;
            }

            .btn-text {
                font-size: 13px;
            }

            .payment-methods-float {
                gap: 10px;
                bottom: 6%;
            }

            .payment-chip {
                padding: 7px 10px;
            }

            .payment-chip i {
                font-size: 12px;
            }

            .payment-chip span {
                font-size: 10px;
            }

            .deco-circles {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .education-visual-new {
                height: 420px;
            }

            .laptop-device {
                max-width: 340px;
            }

            .laptop-screen {
                padding: 14px;
            }

            .dashboard-header {
                margin-bottom: 15px;
                padding-bottom: 12px;
            }

            .logo-badge {
                width: 36px;
                height: 36px;
                font-size: 18px;
            }

            .brand-name {
                font-size: 13px;
            }

            .notification-bell {
                width: 32px;
                height: 32px;
            }

            .bell-badge {
                width: 16px;
                height: 16px;
                font-size: 9px;
            }

            .profile-card {
                padding: 12px;
                gap: 12px;
            }

            .profile-img {
                width: 45px;
                height: 45px;
                font-size: 22px;
            }

            .status-dot {
                width: 10px;
                height: 10px;
            }

            .profile-details h6 {
                font-size: 13px;
            }

            .profile-details p {
                font-size: 10px;
            }

            .semester-badge {
                font-size: 9px;
                padding: 2px 8px;
            }

            .fee-cards-grid {
                gap: 7px;
                margin-bottom: 15px;
            }

            .mini-fee-card {
                padding: 8px 6px;
            }

            .card-icon {
                width: 28px;
                height: 28px;
                font-size: 13px;
            }

            .card-label {
                font-size: 8px;
            }

            .card-amount {
                font-size: 11px;
            }

            .card-status {
                width: 20px;
                height: 20px;
                font-size: 9px;
            }

            .pay-section {
                margin-top: 12px;
            }

            .secure-pay-btn {
                padding: 11px;
            }

            .btn-icon,
            .btn-arrow {
                width: 26px;
                height: 26px;
                font-size: 11px;
            }

            .btn-text {
                font-size: 12px;
            }

            .laptop-base {
                height: 12px;
            }

            .keyboard-section {
                height: 6px;
                bottom: -15px;
            }

            .payment-methods-float {
                gap: 8px;
                bottom: 4%;
            }

            .payment-chip {
                padding: 6px 8px;
            }

            .payment-chip i {
                font-size: 11px;
            }

            .payment-chip span {
                font-size: 9px;
            }

            .success-popup {
                padding: 20px 28px;
            }

            .success-icon-wrapper {
                width: 50px;
                height: 50px;
                margin-bottom: 12px;
            }

            .success-icon-wrapper i {
                font-size: 28px;
            }

            .success-text {
                font-size: 16px;
            }

            .success-subtext {
                font-size: 11px;
            }
        }

        @media (max-width: 480px) {
            .education-visual-new {
                height: 400px;
            }

            .laptop-device {
                max-width: 320px;
            }

            .laptop-screen {
                padding: 12px;
                border-radius: 10px 10px 0 0;
            }

            .header-left {
                gap: 10px;
            }

            .logo-badge {
                width: 34px;
                height: 34px;
                font-size: 16px;
            }

            .brand-name {
                font-size: 12px;
            }

            .tagline {
                font-size: 9px;
            }

            .notification-bell {
                width: 30px;
                height: 30px;
                font-size: 12px;
            }

            .profile-card {
                padding: 10px;
            }

            .profile-img {
                width: 42px;
                height: 42px;
                font-size: 20px;
            }

            .profile-details h6 {
                font-size: 12px;
            }

            .fee-cards-grid {
                gap: 6px;
            }

            .mini-fee-card {
                padding: 7px 5px;
            }

            .card-icon {
                width: 26px;
                height: 26px;
                font-size: 12px;
            }

            .secure-pay-btn {
                padding: 10px;
            }

            .btn-text {
                font-size: 11px;
            }

            .payment-chip {
                padding: 5px 7px;
            }

            .particles {
                display: none;
            }
        }

        @media (max-width: 380px) {
            .education-visual-new {
                height: 380px;
            }

            .laptop-device {
                max-width: 290px;
            }

            .fee-cards-grid {
                grid-template-columns: 1fr;
                gap: 8px;
            }

            .mini-fee-card {
                flex-direction: row;
                align-items: center;
                gap: 12px;
                padding: 10px;
            }

            .card-details {
                flex: 1;
            }

            .payment-methods-float {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        /* education visual end */




        /* insurance visual start */
        .insurance-visual-new {
            position: relative;
            width: 100%;
            /* height: 400px; */
            display: flex;
            align-items: center;
            justify-content: center;
            /* overflow: hidden; */
        }

        .insurance-scene {
            position: relative;
            width: 100%;
            max-width: 550px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Main Card Interface */
        .insurance-main-card {
            position: relative;
            width: 380px;
            background: linear-gradient(145deg, rgba(26, 31, 58, 0.95), rgba(13, 22, 62, 0.95));
            backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 95, 21, 0.3);
            border-radius: 30px;
            padding: 20px 35px;
            box-shadow:
                0 40px 80px rgba(0, 0, 0, 0.5),
                inset 0 1px 2px rgba(255, 255, 255, 0.1);
            z-index: 10;
            animation: cardFloat 4s ease-in-out infinite;
        }

        @keyframes cardFloat {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        .insurance-main-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 95, 21, 0.1), transparent);
            border-radius: 30px;
            animation: cardGlare 4s infinite;
        }

        @keyframes cardGlare {
            0% {
                left: -100%;
            }

            50%,
            100% {
                left: 100%;
            }
        }

        /* Header Section */
        .insurance-header {
            text-align: center;
            margin-bottom: 10px;
        }

        .insurance-icon-main {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 45px;
            color: white;
            box-shadow: 0 20px 50px rgba(255, 95, 21, 0.5);
            animation: iconPulse 3s ease-in-out infinite;
            position: relative;
        }

        @keyframes iconPulse {

            0%,
            100% {
                transform: scale(1);
                box-shadow: 0 20px 50px rgba(255, 95, 21, 0.5);
            }

            50% {
                transform: scale(1.08);
                box-shadow: 0 25px 60px rgba(255, 95, 21, 0.7);
            }
        }

        .insurance-icon-main::after {
            content: '';
            position: absolute;
            width: 110%;
            height: 110%;
            border: 3px solid var(--primary-orange);
            border-radius: 28px;
            animation: borderPulse 3s ease-in-out infinite;
        }

        @keyframes borderPulse {

            0%,
            100% {
                opacity: 0;
                transform: scale(1);
            }

            50% {
                opacity: 1;
                transform: scale(1.2);
            }
        }

        .insurance-title {
            font-size: 22px;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
        }

        .insurance-subtitle {
            font-size: 19px;
            color: white;
        }

        /* Coverage Display */
        .coverage-display {
            background: rgba(255, 95, 21, 0.1);
            border: 2px solid rgba(255, 95, 21, 0.3);
            border-radius: 20px;
            padding: 15px;
            margin-bottom: 10px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .coverage-display::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            opacity: 0.05;
        }

        .coverage-label {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .coverage-amount {
            font-size: 30px;
            font-weight: 700;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
            line-height: 1;
        }

        .coverage-status {
            display: inline-flex;
            align-items: center;
            gap: 3px;
            background: rgba(0, 200, 83, 0.2);
            border: 1px solid #00C853;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 20px;
            font-weight: 600;
            color: #00C853;
        }

        .status-indicator {
            width: 8px;
            height: 8px;
            background: #00C853;
            border-radius: 50%;
            animation: indicatorBlink 2s ease-in-out infinite;
        }

        @keyframes indicatorBlink {

            0%,
            100% {
                opacity: 1;
                box-shadow: 0 0 8px #00C853;
            }

            50% {
                opacity: 0.4;
            }
        }

        /* Insurance Plans Grid */
        .insurance-plans {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-bottom: 25px;
        }

        .plan-item {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 95, 21, 0.2);
            border-radius: 15px;
            padding: 9px 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .plan-item:hover {
            transform: translateY(-5px);
            border-color: var(--primary-orange);
            background: rgba(255, 95, 21, 0.1);
            box-shadow: 0 10px 30px rgba(255, 95, 21, 0.3);
        }

        .plan-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: white;
            transition: transform 0.3s ease;
        }

        .plan-item:hover .plan-icon {
            transform: scale(1.1) rotateY(180deg);
        }

        .plan-item.health .plan-icon {
            background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
        }

        .plan-item.life .plan-icon {
            background: linear-gradient(135deg, #4ECDC4, #44A08D);
        }

        .plan-item.vehicle .plan-icon {
            background: linear-gradient(135deg, #667eea, #764ba2);
        }

        .plan-item.home .plan-icon {
            background: linear-gradient(135deg, #f093fb, #f5576c);
        }

        .plan-name {
            font-size: 20px;
            font-weight: 600;
            color: white;
            text-align: center;
            line-height: 1.2;
        }

        .plan-premium {
            font-size: 18px;
            color: var(--secondary-orange);
            font-weight: 600;
        }

        /* Action Button */
        .insurance-action {
            width: 100%;
        }

        .pay-premium-btn {
            width: 100%;
            background: var(--gradient-primary);
            border: none;
            padding: 16px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 15px 35px rgba(255, 95, 21, 0.4);
            position: relative;
            overflow: hidden;
        }

        .pay-premium-btn::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.5s;
        }

        .pay-premium-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 45px rgba(255, 95, 21, 0.6);
        }

        .pay-premium-btn:hover::before {
            left: 100%;
        }

        .btn-icon-left {
            width: 25px;
            height: 25px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: white;
        }

        .btn-text {
            font-size: 19px;
            font-weight: 700;
            color: white;
        }

        .btn-icon-right {
            font-size: 14px;
            color: white;
            animation: arrowSlide 1.5s ease-in-out infinite;
        }

        @keyframes arrowSlide {

            0%,
            100% {
                transform: translateX(0);
            }

            50% {
                transform: translateX(5px);
            }
        }

        /* Floating Info Cards */
        .floating-info {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .info-card {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border: 2px solid rgba(255, 95, 21, 0.3);
            border-radius: 15px;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .info-icon {
            width: 40px;
            height: 40px;
            background: var(--gradient-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: white;
            flex-shrink: 0;
        }

        .info-content {
            display: flex;
            flex-direction: column;
            gap: 3px;
        }

        .info-title {
            font-size: 13px;
            font-weight: 700;
            color: white;
        }

        .info-desc {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.7);
        }

        .info-card-1 {
            top: 8%;
            left: -18%;
            animation: infoFloat1 5s ease-in-out infinite;
        }

        .info-card-3 {
            bottom: 8%;
            left: -28%;
            animation: infoFloat1 5s ease-in-out infinite;
        }

        .info-card-2 {
            bottom: 8%;
            right: -18%;
            animation: infoFloat2 5.5s ease-in-out infinite;
        }


        .info-card-4 {
            top: 8%;
            right: -29%;
            animation: infoFloat2 5.5s ease-in-out infinite;
        }

        @keyframes infoFloat1 {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes infoFloat2 {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-25px);
            }
        }

        /* Decorative Elements */
        .decorative-circles {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .deco-circle {
            position: absolute;
            border: 2px solid rgba(255, 95, 21, 0.15);
            border-radius: 50%;
        }

        .circle-1 {
            width: 350px;
            height: 350px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: rotateCircle 20s linear infinite;
        }

        .circle-2 {
            width: 450px;
            height: 450px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-style: dashed;
            animation: rotateCircle 25s linear infinite reverse;
        }

        @keyframes rotateCircle {
            from {
                transform: translate(-50%, -50%) rotate(0deg);
            }

            to {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

        /* Particles */
        .insurance-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .i-particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--secondary-orange);
            border-radius: 50%;
            opacity: 0;
            animation: particleMove 4s ease-in-out infinite;
        }

        .ip1 {
            top: 20%;
            left: 15%;
            animation-delay: 0s;
        }

        .ip2 {
            top: 40%;
            right: 18%;
            animation-delay: 1s;
        }

        .ip3 {
            bottom: 30%;
            left: 12%;
            animation-delay: 2s;
        }

        .ip4 {
            top: 60%;
            right: 10%;
            animation-delay: 3s;
        }

        @keyframes particleMove {

            0%,
            100% {
                transform: translateY(0px);
                opacity: 0;
            }

            50% {
                transform: translateY(-35px);
                opacity: 1;
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .insurance-visual-new {
                height: 500px;
            }

            .insurance-main-card {
                width: 350px;
                padding: 35px 30px;
            }

            .insurance-icon-main {
                width: 80px;
                height: 80px;
                font-size: 40px;
            }

            .coverage-amount {
                font-size: 38px;
            }

            .info-card-1 {
                left: -15%;
            }

            .info-card-2 {
                right: -18%;
            }
        }

        @media (max-width: 768px) {
            .insurance-visual-new {
                height: 480px;
            }

            .insurance-main-card {
                width: 340px;
                padding: 32px 28px;
            }

            .insurance-icon-main {
                width: 75px;
                height: 75px;
                font-size: 38px;
            }

            .insurance-title {
                font-size: 20px;
            }

            .coverage-amount {
                font-size: 36px;
            }

            .plan-icon {
                width: 45px;
                height: 45px;
                font-size: 20px;
            }

            .plan-name {
                font-size: 13px;
            }

            .info-card {
                display: none;
            }

            .decorative-circles {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .insurance-visual-new {
                height: 460px;
            }

            .insurance-main-card {
                width: 320px;
                padding: 28px 24px;
            }

            .insurance-header {
                margin-bottom: 28px;
            }

            .insurance-icon-main {
                width: 70px;
                height: 70px;
                font-size: 35px;
                margin-bottom: 18px;
            }

            .insurance-title {
                font-size: 19px;
            }

            .insurance-subtitle {
                font-size: 13px;
            }

            .coverage-display {
                padding: 22px;
                margin-bottom: 25px;
            }

            .coverage-amount {
                font-size: 34px;
            }

            .coverage-status {
                font-size: 12px;
                padding: 5px 14px;
            }

            .insurance-plans {
                gap: 12px;
                margin-bottom: 22px;
            }

            .plan-item {
                padding: 16px 12px;
            }

            .plan-icon {
                width: 42px;
                height: 42px;
                font-size: 19px;
            }

            .plan-name {
                font-size: 12px;
            }

            .plan-premium {
                font-size: 11px;
            }

            .pay-premium-btn {
                padding: 15px;
            }

            .btn-text {
                font-size: 14px;
            }

            .insurance-particles {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .insurance-visual-new {
                height: 440px;
            }

            .insurance-main-card {
                width: 300px;
                padding: 25px 20px;
            }

            .insurance-icon-main {
                width: 65px;
                height: 65px;
                font-size: 32px;
            }

            .insurance-title {
                font-size: 18px;
            }

            .coverage-display {
                padding: 20px;
            }

            .coverage-amount {
                font-size: 32px;
            }

            .insurance-plans {
                gap: 10px;
            }

            .plan-item {
                padding: 14px 10px;
            }

            .plan-icon {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            .btn-icon-left {
                width: 28px;
                height: 28px;
                font-size: 13px;
            }
        }

        /* insurance visual end */


        /* travel visual start  */

        /* Travel Visual Styles */
        .travel-visual {
            position: relative;
            width: 100%;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 99px 0;
        }

        .travel-scene {
            position: relative;
            width: 100%;
            max-width: 600px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Travel Dashboard */
        .travel-dashboard {
            position: relative;
            width: 480px;
            background: linear-gradient(145deg, rgba(26, 31, 58, 0.95), rgba(13, 22, 62, 0.95));
            backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 95, 21, 0.3);
            border-radius: 25px;
            padding: 25px;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
            z-index: 10;
            animation: dashboardFloat 4s ease-in-out infinite;
        }

        @keyframes dashboardFloat {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-15px);
            }
        }

        /* Dashboard Header */
        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255, 95, 21, 0.2);
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-badge {
            width: 45px;
            height: 45px;
            background: var(--gradient-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: white;
            animation: logoBounce 2s ease-in-out infinite;
        }

        @keyframes logoBounce {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
        }

        .header-text {
            display: flex;
            flex-direction: column;
        }

        .brand-name {
            font-size: 18px;
            font-weight: 700;
            color: white;
            line-height: 1.2;
        }

        .tagline {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.6);
        }

        .user-profile {
            width: 40px;
            height: 40px;
            background: rgba(255, 95, 21, 0.1);
            border: 1px solid rgba(255, 95, 21, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary-orange);
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .user-profile:hover {
            background: rgba(255, 95, 21, 0.2);
            transform: scale(1.05);
        }

        /* Search Tabs */
        .search-tabs {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
            margin-bottom: 20px;
        }

        .tab {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 12px 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }

        .tab.active {
            background: rgba(255, 95, 21, 0.2);
            border-color: var(--primary-orange);
            transform: translateY(-2px);
        }

        .tab i {
            font-size: 16px;
            color: var(--secondary-orange);
        }

        .tab span {
            font-size: 18px;
            font-weight: 600;
            color: white;
        }

        .tab:hover {
            background: rgba(255, 95, 21, 0.1);
            border-color: var(--primary-orange);
        }

        /* Search Form */
        .search-form {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 95, 21, 0.2);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 20px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 12px;
            margin-bottom: 15px;
        }

        .input-group {
            position: relative;
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 12px 15px;
            transition: all 0.3s ease;
        }

        .input-group:focus-within {
            border-color: var(--primary-orange);
            background: rgba(255, 95, 21, 0.1);
        }

        .input-group i {
            font-size: 14px;
            color: var(--secondary-orange);
        }

        .input-group input {
            background: transparent;
            border: none;
            color: white;
            font-size: 15px;
            font-weight: 900;
            width: 100%;
            outline: none;
        }

        .input-group input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .swap-btn {
            width: 30px;
            height: 30px;
            background: var(--gradient-primary);
            border: none;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: center;
        }

        .swap-btn:hover {
            transform: rotate(180deg);
        }

        .search-btn {
            width: 100%;
            background: var(--gradient-primary);
            border: none;
            border-radius: 12px;
            padding: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            color: white;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 95, 21, 0.4);
        }

        .search-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 95, 21, 0.6);
        }

        /* Deals Section */
        .deals-section h4 {
            font-size: 16px;
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
        }

        .deals-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
        }

        .deal-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 95, 21, 0.2);
            border-radius: 12px;
            padding: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .deal-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-orange);
            background: rgba(255, 95, 21, 0.1);
        }

        .deal-icon {
            width: 30px;
            height: 30px;
            background: var(--gradient-primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: white;
        }

        .deal-info {
            display: flex;
            flex-direction: column;
            gap: 3px;
        }

        .deal-title {
            font-size: 18px;
            font-weight: 600;
            color: white;
        }

        .deal-price {
            font-size: 20px;
            font-weight: 700;
            color: var(--secondary-orange);
        }

        /* Floating Elements */
        .travel-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .plane-animation {
            position: absolute;
            top: 10%;
            right: 5%;
            font-size: 32px;
            color: var(--secondary-orange);
            animation: planeFly 8s ease-in-out infinite reverse;
        }

        @keyframes planeFly {
            0% {
                transform: translateX(100px) translateY(0) rotate(0deg);
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            50% {
                transform: translateX(-100px) translateY(-20px) rotate(-5deg);
            }

            100% {
                transform: translateX(-300px) translateY(10px) rotate(5deg);
                opacity: 0;
            }
        }

        .luggage-element {
            position: absolute;
            bottom: 20%;
            left: 0%;
            font-size: 24px;
            color: var(--secondary-orange);
            animation: luggageBounce 4s ease-in-out infinite;
        }

        @keyframes luggageBounce {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-15px) rotate(10deg);
            }
        }

        .passport-element {
            position: absolute;
            top: 25%;
            left: 2%;
            font-size: 20px;
            color: var(--secondary-orange);
            animation: passportFlip 5s ease-in-out infinite;
        }

        @keyframes passportFlip {

            0%,
            100% {
                transform: rotateY(0deg);
            }

            50% {
                transform: rotateY(180deg);
            }
        }

        .globe-element {
            position: absolute;
            bottom: 15%;
            right: 1%;
            font-size: 28px;
            color: var(--secondary-orange);
            animation: globeRotate 6s linear infinite;
        }

        @keyframes globeRotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        /* Booking Popup */
        .booking-popup {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            background: rgba(0, 200, 83, 0.15);
            backdrop-filter: blur(20px);
            border: 2px solid #00C853;
            border-radius: 20px;
            padding: 25px 35px;
            text-align: center;
            box-shadow: 0 20px 60px rgba(0, 200, 83, 0.4);
            animation: popupAppear 6s ease-in-out infinite;
            z-index: 20;
        }

        @keyframes popupAppear {

            0%,
            80%,
            100% {
                transform: translate(-50%, -50%) scale(0);
                opacity: 0;
            }

            85%,
            95% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }
        }

        .success-icon {
            width: 60px;
            height: 60px;
            background: #00C853;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
        }

        .success-icon i {
            font-size: 32px;
            color: white;
        }

        .popup-content h4 {
            font-size: 18px;
            font-weight: 700;
            color: white;
            margin: 0 0 5px 0;
        }

        .popup-content p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
        }

        /* Background Elements */
        .travel-background {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .cloud {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            animation: cloudFloat 20s linear infinite;
        }

        .cloud-1 {
            width: 80px;
            height: 30px;
            top: 15%;
            left: -50px;
            animation-delay: 0s;
        }

        .cloud-2 {
            width: 120px;
            height: 40px;
            top: 25%;
            right: -80px;
            animation-delay: 5s;
        }

        .cloud-3 {
            width: 100px;
            height: 35px;
            bottom: 30%;
            left: -70px;
            animation-delay: 10s;
        }

        @keyframes cloudFloat {
            0% {
                transform: translateX(0);
                opacity: 0;
            }

            10% {
                opacity: 0.3;
            }

            90% {
                opacity: 0.3;
            }

            100% {
                transform: translateX(calc(100vw + 200px));
                opacity: 0;
            }
        }

        .sun {
            position: absolute;
            top: 10%;
            right: 15%;
            width: 40px;
            height: 40px;
            background: radial-gradient(circle, #FFA802, #FF5F15);
            border-radius: 50%;
            box-shadow: 0 0 40px rgba(255, 168, 2, 0.5);
            animation: sunPulse 4s ease-in-out infinite;
        }

        @keyframes sunPulse {

            0%,
            100% {
                transform: scale(1);
                box-shadow: 0 0 40px rgba(255, 168, 2, 0.5);
            }

            50% {
                transform: scale(1.1);
                box-shadow: 0 0 60px rgba(255, 168, 2, 0.7);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .travel-visual {
                height: 450px;
            }

            .travel-dashboard {
                width: 420px;
                padding: 20px;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .swap-btn {
                align-self: center;
                justify-self: center;
                margin: 5px 0;
            }
        }

        @media (max-width: 768px) {
            .travel-visual {
                height: 400px;
            }

            .travel-dashboard {
                width: 380px;
                padding: 18px;
            }

            .search-tabs {
                gap: 6px;
            }

            .tab {
                padding: 10px 6px;
            }

            .tab span {
                font-size: 10px;
            }

            .deals-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .plane-animation,
            .luggage-element,
            .passport-element,
            .globe-element {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .travel-visual {
                height: 380px;
            }

            .travel-dashboard {
                width: 340px;
                padding: 15px;
            }

            .dashboard-header {
                margin-bottom: 20px;
            }

            .logo-badge {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .brand-name {
                font-size: 16px;
            }

            .tagline {
                font-size: 11px;
            }

            .search-form {
                padding: 15px;
            }

            .input-group {
                padding: 10px 12px;
            }

            .search-btn {
                padding: 12px;
                font-size: 14px;
            }

            .booking-popup {
                padding: 20px 25px;
            }

            .success-icon {
                width: 50px;
                height: 50px;
                margin-bottom: 12px;
            }

            .success-icon i {
                font-size: 28px;
            }

            .popup-content h4 {
                font-size: 16px;
            }

            .popup-content p {
                font-size: 11px;
            }
        }

        @media (max-width: 480px) {
            .travel-visual {
                height: 350px;
            }

            .travel-dashboard {
                width: 300px;
                padding: 12px;
            }

            .search-tabs {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }

            .form-row {
                margin-bottom: 12px;
            }

            .input-group {
                padding: 8px 10px;
            }

            .input-group input {
                font-size: 12px;
            }

            .search-btn {
                padding: 10px;
                font-size: 13px;
            }

            .deals-section h4 {
                font-size: 14px;
                margin-bottom: 12px;
            }

            .deal-card {
                padding: 12px;
            }

            .deal-icon {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }

            .deal-title {
                font-size: 11px;
            }

            .deal-price {
                font-size: 12px;
            }
        }

        /* travel visual end  */




        /* verfication & api visual start  */
        /* Verification Visual Styles */
        .verification-visual {
            position: relative;
            width: 100%;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .verification-scene {
            position: relative;
            width: 100%;
            max-width: 550px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Main Verification Card */
        .verification-card {
            position: relative;
            width: 420px;
            background: linear-gradient(145deg, rgba(26, 31, 58, 0.95), rgba(13, 22, 62, 0.95));
            backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 95, 21, 0.3);
            border-radius: 25px;
            padding: 30px;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
            z-index: 10;
            animation: cardFloat 4s ease-in-out infinite;
        }

        @keyframes cardFloat {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-15px);
            }
        }

        /* Card Header */
        .card-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 2px solid rgba(255, 95, 21, 0.2);
        }

        .header-icon {
            width: 55px;
            height: 55px;
            background: var(--gradient-primary);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: white;
            animation: iconPulse 2s ease-in-out infinite;
        }

        @keyframes iconPulse {

            0%,
            100% {
                transform: scale(1);
                box-shadow: 0 0 20px rgba(255, 95, 21, 0.5);
            }

            50% {
                transform: scale(1.05);
                box-shadow: 0 0 30px rgba(255, 95, 21, 0.8);
            }
        }

        .header-text h4 {
            font-size: 22px;
            font-weight: 700;
            color: white;
            margin: 0 0 5px 0;
        }

        .header-text span {
            font-size: 20px;
            color: white;
        }

        /* Document Display */
        .document-display {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 95, 21, 0.2);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 25px;
        }

        .doc-preview {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .doc-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            animation: docScan 3s ease-in-out infinite;
        }

        @keyframes docScan {

            0%,
            100% {
                transform: rotateY(0deg);
            }

            50% {
                transform: rotateY(180deg);
            }
        }

        .doc-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .doc-name {
            font-size: 16px;
            font-weight: 600;
            color: white;
        }

        .doc-number {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.6);
            font-family: 'Courier New', monospace;
        }

        .verify-badge {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .verify-badge.verified {
            background: rgba(0, 200, 83, 0.2);
            color: #00C853;
            animation: badgePulse 2s ease-in-out infinite;
        }

        @keyframes badgePulse {

            0%,
            100% {
                transform: scale(1);
                box-shadow: 0 0 15px rgba(0, 200, 83, 0.5);
            }

            50% {
                transform: scale(1.1);
                box-shadow: 0 0 25px rgba(0, 200, 83, 0.8);
            }
        }

        /* Verification Progress */
        .verify-progress {
            margin-bottom: 20px;
        }

        .progress-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 19px;
            color: white;
        }

        .progress-percent {
            font-weight: 700;
            color: var(--secondary-orange);
        }

        .progress-bar {
            width: 100%;
            height: 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .progress-fill {
            width: 85%;
            height: 100%;
            background: var(--gradient-primary);
            border-radius: 10px;
            animation: progressFill 3s ease-in-out infinite;
        }

        @keyframes progressFill {
            0% {
                width: 0%;
            }

            100% {
                width: 85%;
            }
        }

        .progress-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }

        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            padding: 12px 8px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .step i {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.4);
        }

        .step span {
            font-size: 18px;
            color: white;
            text-align: center;
        }

        .step.completed {
            background: rgba(0, 200, 83, 0.1);
            border-color: #00C853;
        }

        .step.completed i {
            color: #00C853;
        }

        .step.active {
            background: rgba(255, 95, 21, 0.1);
            border-color: var(--primary-orange);
            animation: stepPulse 2s ease-in-out infinite;
        }

        .step.active i {
            color: var(--secondary-orange);
        }

        @keyframes stepPulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        /* API Stats */
        .api-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .stat-box {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 95, 21, 0.2);
            border-radius: 12px;
            padding: 15px;
            transition: all 0.3s ease;
        }

        .stat-box:hover {
            transform: translateY(-5px);
            border-color: var(--primary-orange);
            background: rgba(255, 95, 21, 0.1);
        }

        .stat-box i {
            font-size: 24px;
            color: var(--secondary-orange);
        }

        .stat-value {
            display: block;
            font-size: 18px;
            font-weight: 700;
            color: white;
        }

        .stat-label {
            display: block;
            font-size: 18px;
            color: rgba(255, 255, 255, 0.6);
        }

        /* Floating Documents */
        .floating-docs {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .doc-float {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 95, 21, 0.3);
            border-radius: 12px;
            padding: 12px 18px;
            display: flex;
            align-items: center;
            gap: 8px;
            color: white;
            font-size: 12px;
            font-weight: 600;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .doc-float i {
            font-size: 18px;
            color: var(--secondary-orange);
        }

        .doc-float span{
             font-size: 13px;
            font-weight: 700;
            color: white;
        }

     /* Positions (matching your image) */
.aadhaar {
    top: 1%;
    left: -12%;
    animation: floatDoc1 5s ease-in-out infinite;
}

.pan-card {
    top: 1%;
    right: -12%;
    animation: floatDoc2 6s ease-in-out infinite;
}

.bank {
    top: 40%;
    right: -14%;
    animation: floatDoc3 5.5s ease-in-out infinite;
}

.passport {
    top: 40%;
    left: -14%;
    animation: floatDoc4 6.2s ease-in-out infinite;
}

.voter {
    bottom: 10%;
    right: -12%;
    animation: floatDoc5 5.8s ease-in-out infinite;
}

.licence {
    bottom: 10%;
    left: -18%;
    animation: floatDoc6 6.5s ease-in-out infinite;
}

        @keyframes floatDoc1 {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }

        @keyframes floatDoc2 {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-25px) rotate(-5deg);
            }
        }

        @keyframes floatDoc3 {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-18px) rotate(3deg);
            }
        }

        @keyframes floatDoc4 {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-22px) rotate(-3deg);
            }
        }

        /* Success Animation */
        .success-animation {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            background: rgba(0, 200, 83, 0.15);
            backdrop-filter: blur(20px);
            border: 2px solid #00C853;
            border-radius: 20px;
            padding: 30px 40px;
            z-index: 20;
            animation: successPop 6s ease-in-out infinite;
        }

        @keyframes successPop {

            0%,
            80%,
            100% {
                transform: translate(-50%, -50%) scale(0);
                opacity: 0;
            }

            85%,
            95% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }
        }

        .success-circle {
            width: 70px;
            height: 70px;
            background: #00C853;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 35px;
            color: white;
            animation: successRotate 1s ease-in-out;
        }

        @keyframes successRotate {
            0% {
                transform: rotate(0deg) scale(0);
            }

            50% {
                transform: rotate(180deg) scale(1.2);
            }

            100% {
                transform: rotate(360deg) scale(1);
            }
        }

        .success-text {
            font-size: 18px;
            font-weight: 700;
            color: white;
        }

        /* Background Elements */
        .verify-background {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .scan-line {
            position: absolute;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
            top: 0;
            animation: scanMove 3s linear infinite;
        }

        @keyframes scanMove {
            0% {
                top: 0%;
                opacity: 0;
            }

            50% {
                opacity: 1;
            }

            100% {
                top: 100%;
                opacity: 0;
            }
        }

        .data-grid {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image:
                repeating-linear-gradient(0deg, rgba(255, 95, 21, 0.03) 0px, transparent 1px, transparent 40px),
                repeating-linear-gradient(90deg, rgba(255, 95, 21, 0.03) 0px, transparent 1px, transparent 40px);
            opacity: 0.5;
        }

        .verify-particles {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .v-particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--secondary-orange);
            border-radius: 50%;
            opacity: 0;
            animation: particleMove 4s ease-in-out infinite;
        }

        .v-particle:nth-child(1) {
            top: 20%;
            left: 15%;
            animation-delay: 0s;
        }

        .v-particle:nth-child(2) {
            top: 40%;
            right: 20%;
            animation-delay: 0.8s;
        }

        .v-particle:nth-child(3) {
            bottom: 30%;
            left: 25%;
            animation-delay: 1.6s;
        }

        .v-particle:nth-child(4) {
            top: 60%;
            right: 15%;
            animation-delay: 2.4s;
        }

        .v-particle:nth-child(5) {
            bottom: 20%;
            right: 25%;
            animation-delay: 3.2s;
        }

        @keyframes particleMove {

            0%,
            100% {
                transform: translateY(0px);
                opacity: 0;
            }

            50% {
                transform: translateY(-30px);
                opacity: 1;
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .verification-visual {
                height: 450px;
            }

            .verification-card {
                width: 380px;
                padding: 25px;
            }

            .doc-float {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .verification-visual {
                height: 420px;
            }

            .verification-card {
                width: 350px;
                padding: 20px;
            }

            .header-icon {
                width: 50px;
                height: 50px;
                font-size: 24px;
            }

            .header-text h4 {
                font-size: 20px;
            }

            .progress-steps {
                gap: 8px;
            }

            .step {
                padding: 10px 6px;
            }

            .step span {
                font-size: 9px;
            }
        }

        @media (max-width: 576px) {
            .verification-visual {
                height: 400px;
            }

            .verification-card {
                width: 320px;
                padding: 18px;
            }

            .card-header {
                gap: 12px;
                margin-bottom: 20px;
                padding-bottom: 15px;
            }

            .header-icon {
                width: 45px;
                height: 45px;
                font-size: 22px;
            }

            .header-text h4 {
                font-size: 18px;
            }

            .doc-icon {
                width: 45px;
                height: 45px;
                font-size: 20px;
            }

            .doc-name {
                font-size: 15px;
            }

            .doc-number {
                font-size: 12px;
            }

            .verify-badge {
                width: 32px;
                height: 32px;
                font-size: 16px;
            }

            .progress-steps {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }

            .step {
                padding: 12px 10px;
            }

            .api-stats {
                gap: 12px;
            }

            .stat-box {
                padding: 12px;
            }

            .stat-box i {
                font-size: 20px;
            }

            .stat-value {
                font-size: 16px;
            }

            .success-circle {
                width: 60px;
                height: 60px;
                font-size: 30px;
            }

            .success-text {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .verification-visual {
                height: 380px;
            }

            .verification-card {
                width: 290px;
                padding: 15px;
            }

            .header-icon {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .header-text h4 {
                font-size: 16px;
            }

            .document-display {
                padding: 15px;
            }

            .stat-value {
                font-size: 15px;
            }

            .stat-label {
                font-size: 10px;
            }
        }

        /* verfication & api visual end  */
      .myFontSize {
            font-size: 22px !important;
        }
        
        
        
        
        /* book css */
        :root {
            --book-width: 373px;
            --book-height: 550px;
            --book-primary-color: #2c3e50;
            --accent-color: #d4af37;
            --paper-color: #ffffff;
        }

        /* *{
            margin: 0;
            padding: 0;
        } */

        /* ============================= PREMIUM BACKGROUND ============================= */

        .book-section {
            margin: 0;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

            background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.15), #00000094 60%), linear-gradient(135deg, #0b0f14, #0f172a, #020617);
            overflow: hidden;
            position: relative;
        }

        /* subtle vignette */
        .book-section::before {
            content: '';
            position: absolute;
            inset: 0;
            /* background: radial-gradient(circle at center, transparent 40%, rgba(0,0,0,0.6)); */
            background: radial-gradient(circle at center, #581c0a66 40%, rgb(6 26 91 / 8%));
            pointer-events: none;
        }

        /* floating dust */
        .book-section::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
            background-size: 80px 80px;
            opacity: 0.15;
            animation: dustMove 60s linear infinite;
            pointer-events: none;
        }

        @keyframes dustMove {
            from {
                transform: translateY(0);
            }

            to {
                transform: translateY(-200px);
            }
        }

        /* ============================= SCENE ============================= */

        .scene {
            width: var(--book-width);
            height: var(--book-height);
            perspective: 2000px;
            position: relative;
        }

        /* golden glow halo */
        .scene::before {
            content: '';
            position: absolute;
            inset: -60px;
            background: url('/media/images/book-bg-4.png');
            z-index: -2;
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
        }

        /* platform shadow */
        .scene::after {
            content: '';
            position: absolute;
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%);
            width: 70%;
            height: 20px;
            background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.7), transparent 70%);
            filter: blur(10px);
            z-index: -1;
        }

        /* ============================= BOOK ============================= */

        .book {
            position: relative;
            width: 100% !important;
            height: 100% !important;
            transform-style: preserve-3d;
            animation: idleFloat 8s ease-in-out infinite;
            top: 9px;
        }

        @keyframes idleFloat {

            0%,
            100% {
                transform: rotateY(-10deg) translateY(0);
            }

            50% {
                transform: rotateY(-6deg) translateY(-6px);
            }
        }

        /* ============================= PAGE ============================= */

        .page {
            position: absolute;
            inset: 0;
            transform-origin: left;
            transform-style: preserve-3d;
            transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
            cursor: pointer;
        }

        .front,
        .back {
            position: absolute;
            inset: 0;
            backface-visibility: hidden;
            display: flex;
            flex-direction: column;
            padding: 40px;
            box-sizing: border-box;
            border-radius: 0 12px 12px 0;
            background: var(--paper-color);
            box-shadow:
                inset -2px 0 6px rgba(0, 0, 0, 0.1),
                0 20px 40px rgba(0, 0, 0, 0.25);
        }

        .back {
            transform: rotateY(-180deg);
            border-radius: 12px 0 0 12px;
        }

        /* ============================= CONTENT ============================= */

        h1,
        h2 {
            color: var(--book-primary-color);
            margin-top: 0;
        }

        p {
            color: #555;
            line-height: 1.6;
        }

        .service-icon {
            font-size: 48px;
            margin-bottom: 16px;
        }

        /* ============================= COVER ============================= */

        .page.cover .front {
            /* background:linear-gradient(135deg, #0f172a, #020617); */

            background: linear-gradient(135deg, #2b0606, #020617);
            color: white;
            align-items: center;
            justify-content: center;
            text-align: center;

            border-right: 3px solid white;
        }

        .page.cover h1 {
            color: #fff;
            letter-spacing: 1px;
        }

        .page.cover p {
            color: rgba(255, 255, 255, 0.7);
        }

        /* ============================= FLIP ============================= */

        .page.flipped {
            transform: rotateY(-180deg);
        }

        /* ============================= RESPONSIVE ============================= */

        @media (max-width: 450px) {
            :root {
                --book-width: 280px;
                --book-height: 380px;
            }
        }

        .service-icon img {
            box-shadow: rgb(220 114 13 / 35%) 0px 5px 15px;
            border-radius: 15px;
        }




        /* The Canvas for glowing particles */
        #particles-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            /* Behind everything */
            pointer-events: none;
        }


        /* ============================= WIRE BINDING (NEW) ============================= */

        .binding {
            position: absolute;
            left: -10px;
            /* Positions wires on the spine */
            top: 0;
            width: 20px;
            height: 100%;
            z-index: 50;

            display: flex;
            flex-direction: column;
            justify-content: space-around;
            align-items: center;
            padding: 20px 0;
            box-sizing: border-box;
            pointer-events: none;

            transform: translateZ(1px);

            background: #4e2f04db;
        }

        .wire-ring {
            width: 25px;
            height: 10px;
            background: linear-gradient(to bottom, #d1d5db, #9ca3af, #4b5563);
            background: linear-gradient(to bottom, #d1d5db, #9ca3af, #FFD700);
            border-radius: 5px;
            box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(0, 0, 0, 0.2);
        }