   :root {
            --dv-primary: #4f46e5;       /* Indigo 600 */
            --dv-primary-soft: #eef2ff;  /* Indigo 50 */
            --dv-secondary: #ec4899;     /* Pink 500 */
            --dv-dark: #0f172a;          /* Slate 900 */
            --dv-text: #334155;          /* Slate 700 */
            --dv-muted: #64748b;         /* Slate 500 */
            --dv-border: #e2e8f0;        /* Slate 200 */
            --dv-white: #ffffff;
            --dv-glass: rgba(255, 255, 255, 0.85);
            --dv-glass-dark: rgba(15, 23, 42, 0.95);
        }

        body {
            margin: 0;
            padding: 0;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background-color: #f8fafc;
            color: var(--dv-text);
        }

        .dvcis-wrapper {
            line-height: 1.5;
            width: 100%;
        }

        /* 1. NOTIFICATION BAR (Now at the Very Top) */
        .dvcis-notification-bar {
            background: var(--dv-glass-dark);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            color: white;
            padding: 10px 24px;
            font-size: 0.9rem;
            display: flex;
            justify-content: center; /* Center content */
            align-items: center;
            position: relative;
            z-index: 1100;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            transition: all 0.4s ease;
            height: auto;
            opacity: 1;
        }

        .dvcis-notification-bar.hidden {
            height: 0;
            padding: 0;
            opacity: 0;
            pointer-events: none;
            overflow: hidden;
            border: none;
        }

        .dvcis-notify-content {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .dvcis-notify-badge {
            background: linear-gradient(135deg, #f43f5e, #e11d48);
            padding: 3px 10px;
            border-radius: 6px;
            font-size: 0.7rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .dvcis-notify-btn {
            background: white;
            color: var(--dv-dark);
            border: none;
            padding: 5px 16px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
            cursor: pointer;
            text-transform: uppercase;
            text-decoration: none;
            transition: 0.3s;
        }

        .dvcis-notify-btn:hover {
            transform: translateY(-1px);
            background: #f8fafc;
        }

        .dvcis-notify-close {
            position: absolute;
            right: 15px; /* "Last Right" Position */
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.15);
            border: none;
            color: white;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.2s;
            font-size: 1.2rem;
            line-height: 1;
        }

        .dvcis-notify-close:hover {
            background: rgba(255,255,255,0.3);
            color: #f43f5e;
        }


        /* 2. GLASS HEADER (Sticky) */
        .dvcis-header {
            height: 72px;
            background: var(--dv-glass);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--dv-border);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .dvcis-header.dvcis-scrolled {
            box-shadow: 0 4px 20px -5px rgba(0,0,0,0.05);
            background: rgba(255, 255, 255, 0.98);
        }

        .dvcis-nav-inner {
            max-width: 1280px;
            margin: 0 auto;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 24px;
        }

        /* 3. TICKER (Now at Bottom, No Close Button) */
        .dvcis-ticker-wrap {
            background: #0f172a; /* Dark background per image */
            color: white;
            height: 52px; /* Slightly taller for the badge */
            display: flex;
            align-items: stretch;
            position: relative;
            overflow: hidden;
            z-index: 900;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .dvcis-ticker-badge {
            background: linear-gradient(90deg, #6366f1, #8b5cf6); /* Purple/Indigo Gradient */
            color: white;
            padding: 0 20px;
            display: flex;
            align-items: center;
            font-size: 0.8rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 2;
            box-shadow: 4px 0 10px rgba(0,0,0,0.2);
        }

        .dvcis-ticker-container {
            flex: 1;
            overflow: hidden;
            white-space: nowrap;
            display: flex;
            align-items: center;
            mask-image: linear-gradient(to right, transparent, black 2%, black 98%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 2%, black 98%, transparent);
        }

        .dvcis-ticker-text {
            display: inline-block;
            padding-left: 100%;
            animation: dvcisTicker 35s linear infinite;
            font-weight: 500;
            font-size: 0.9rem;
        }
        
        /* Ticker Items Styling */
        .dvcis-ticker-text span {
            color: #f472b6; /* Pink highlight for keywords */
            font-weight: 700;
        }

        @keyframes dvcisTicker {
            0% { transform: translate3d(0, 0, 0); }
            100% { transform: translate3d(-100%, 0, 0); }
        }

        /* GENERAL HEADER STYLES */
        .dvcis-brand {
            display: flex; align-items: center; gap: 12px;
            text-decoration: none; color: var(--dv-dark);
        }
        .dvcis-brand-icon {
            width: 38px; height: 38px;
            background: linear-gradient(135deg, var(--dv-primary), #6366f1);
            border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
            transition: transform 0.2s;
        }
        .dvcis-brand:hover .dvcis-brand-icon { transform: rotate(-5deg); }
        .dvcis-brand-text { font-weight: 800; font-size: 1.4rem; letter-spacing: -0.5px; }
        .dvcis-highlight { color: var(--dv-primary); }

        .dvcis-desktop-nav { display: flex; gap: 32px; }
        .dvcis-link {
            text-decoration: none; color: var(--dv-muted); font-weight: 600; font-size: 0.95rem;
            position: relative; padding: 24px 0; transition: color 0.2s;
        }
        .dvcis-link:hover, .dvcis-link.active { color: var(--dv-primary); }
        .dvcis-link.active::after {
            content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px;
            background: var(--dv-primary); border-radius: 3px 3px 0 0;
        }

        .dvcis-actions { display: flex; align-items: center; gap: 20px; }
        .dvcis-btn-outline {
            border: 2px solid var(--dv-border); padding: 8px 24px; border-radius: 50px;
            text-decoration: none; color: var(--dv-dark); font-weight: 700; font-size: 0.9rem; transition: all 0.2s;
        }
        .dvcis-btn-outline:hover {
            border-color: var(--dv-primary); color: var(--dv-primary); background: var(--dv-primary-soft);
        }

        /* PROFILE DROPDOWN (Always Visible on Mobile now) */
        .dvcis-profile-trigger {
            position: relative; width: 42px; height: 42px; cursor: pointer;
        }
        .dvcis-profile-trigger img {
            width: 100%; height: 100%; border-radius: 50%; border: 2px solid white;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: transform 0.2s;
        }
        .dvcis-profile-trigger:hover img { transform: scale(1.05); }
        .dvcis-status-dot {
            position: absolute; bottom: 0; right: 0; width: 12px; height: 12px;
            background: #10b981; border: 2px solid white; border-radius: 50%;
        }
        .dvcis-dropdown-menu {
            position: absolute; top: 130%; right: 0; width: 260px;
            background: var(--dv-white); border: 1px solid var(--dv-border); border-radius: 16px;
            box-shadow: 0 20px 40px -5px rgba(0,0,0,0.1); padding: 8px; opacity: 0; visibility: hidden;
            transform: translateY(10px); transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: 2001; /* High z-index to show above sticky header */
        }
        .dvcis-profile-trigger.active .dvcis-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
        .dvcis-dd-header { padding: 12px 16px; background: #f8fafc; border-radius: 10px; margin-bottom: 8px; }
        .dvcis-dd-header strong { display: block; color: var(--dv-dark); }
        .dvcis-dd-header span { font-size: 0.8rem; color: var(--dv-muted); }
        .dvcis-dropdown-menu a {
            display: flex; align-items: center; gap: 12px; padding: 12px 16px;
            text-decoration: none; color: var(--dv-text); border-radius: 10px;
            font-size: 0.95rem; font-weight: 500; transition: 0.2s;
        }
        .dvcis-dropdown-menu a:hover { background: var(--dv-primary-soft); color: var(--dv-primary); }
        .dvcis-dd-divider { height: 1px; background: var(--dv-border); margin: 6px 0; }

        /* DRAWER STYLES */
        .dvcis-mobile-toggle { display: none; background: none; border: none; color: var(--dv-dark); cursor: pointer; padding: 5px; }
        .dvcis-backdrop {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(15, 23, 42, 0.5); backdrop-filter: blur(4px);
            z-index: 1999; opacity: 0; visibility: hidden; transition: opacity 0.3s ease;
        }
        .dvcis-backdrop.open { opacity: 1; visibility: visible; }
        .dvcis-drawer {
            position: fixed; top: 0; left: 0; width: 300px; height: 100vh;
            background: var(--dv-white); z-index: 2000;
            transform: translateX(-100%); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 10px 0 40px rgba(0,0,0,0.15); display: flex; flex-direction: column;
        }
        .dvcis-drawer.open { transform: translateX(0); }
        .dvcis-drawer-user {
            padding: 30px 24px; background: linear-gradient(135deg, var(--dv-dark), #334155); color: white; position: relative;
        }
        .dvcis-drawer-avatar img { width: 56px; height: 56px; border-radius: 50%; border: 3px solid rgba(255,255,255,0.2); margin-bottom: 12px; }
        .dvcis-drawer-info h3 { font-size: 1.25rem; font-weight: 800; margin: 0; }
        .dvcis-drawer-info p { opacity: 0.8; font-size: 0.9rem; margin: 4px 0 0; }
        .dvcis-drawer-close {
            position: absolute; top: 20px; right: 20px; background: rgba(255,255,255,0.15); border: none; color: white;
            width: 32px; height: 32px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: 0.2s;
        }
        .dvcis-drawer-close:hover { background: rgba(255,255,255,0.3); }
        .dvcis-drawer-scroll { flex: 1; overflow-y: auto; padding: 20px; }
        .dvcis-menu-label {
            font-size: 0.7rem; font-weight: 800; color: var(--dv-muted); text-transform: uppercase;
            letter-spacing: 1.2px; margin: 15px 12px 10px;
        }
        .dvcis-drawer-item {
            display: flex; align-items: center; gap: 16px; padding: 14px 12px;
            color: var(--dv-text); text-decoration: none; font-weight: 600; font-size: 1rem;
            border-radius: 12px; transition: all 0.2s; margin-bottom: 4px;
        }
        .dvcis-drawer-item svg { stroke-width: 2.2px; opacity: 0.7; }
        .dvcis-drawer-item:hover, .dvcis-drawer-item.active { background: var(--dv-primary-soft); color: var(--dv-primary); }
        .dvcis-drawer-item:hover svg, .dvcis-drawer-item.active svg { opacity: 1; stroke: var(--dv-primary); }
        .dvcis-badge {
            margin-left: auto; background: #ef4444; color: white; padding: 2px 8px; border-radius: 20px; font-size: 0.75rem; font-weight: 700;
        }
        .dvcis-drawer-footer { padding: 24px; border-top: 1px solid var(--dv-border); }
        .dvcis-btn-full {
            width: 100%; padding: 14px; background: #f1f5f9; color: var(--dv-dark);
            border: none; border-radius: 12px; font-weight: 700; font-size: 1rem; cursor: pointer; transition: 0.2s;
        }
        .dvcis-btn-full:hover { background: #e2e8f0; }

        /* RESPONSIVE */
        @media (max-width: 900px) {
            /* Keep Profile Trigger VISIBLE, but hide 'Contact' button and Desktop Nav */
            .dvcis-desktop-nav, .dvcis-btn-outline { display: none; }
            .dvcis-mobile-toggle { display: block; }
            
            .dvcis-header { height: 64px; }
            .dvcis-nav-inner { padding: 0 16px; }

            /* Adjust actions container on mobile to keep items row-based */
            .dvcis-actions { gap: 10px; }
            
            .dvcis-notification-bar { 
                flex-direction: column; 
                padding: 15px 40px 15px 15px; /* Right padding for close button */
                gap: 10px; 
                text-align: center; 
                display: none;
            }
        }
        
        
        
        
          /* --- FOOTER VARIABLES --- */
        :root {
            --dv-footer-bg: #0f172a;       /* Slate 900 */
            --dv-footer-text: #94a3b8;     /* Slate 400 */
            --dv-footer-white: #ffffff;
            --dv-primary: #4f46e5;
            --dv-secondary: #ec4899;
            --whatsapp-green: #25D366;
        }

        /* --- FOOTER MAIN --- */
        .dvcis-footer {
            background: var(--dv-footer-bg);
            color: var(--dv-footer-white);
            padding: 80px 20px 30px;
            margin-top: auto;
            position: relative;
            font-family: 'Inter', sans-serif;
            border-top: 5px solid var(--dv-primary); /* Premium top border accent */
        }

        .dvcis-footer-container {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
            gap: 40px;
        }

        /* Columns */
        .dvcis-footer-col h4 {
            font-size: 1.1rem;
            font-weight: 800;
            margin-bottom: 25px;
            color: var(--dv-footer-white);
            letter-spacing: 0.5px;
        }

        .dvcis-footer-desc {
            color: var(--dv-footer-text);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        /* Social Icons */
        .dvcis-social-links {
            display: flex;
            gap: 15px;
        }

        .dvcis-social-icon {
            width: 42px;
            height: 42px;
            background: rgba(255,255,255,0.05);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dv-footer-white);
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-decoration: none;
            border: 1px solid rgba(255,255,255,0.05);
        }

        .dvcis-social-icon:hover {
            background: var(--dv-primary);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px -5px rgba(79, 70, 229, 0.5);
            border-color: var(--dv-primary);
        }

        /* Links List */
        .dvcis-footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .dvcis-footer-links li {
            margin-bottom: 12px;
        }

        .dvcis-footer-links a {
            color: var(--dv-footer-text);
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .dvcis-footer-links a::before {
            content: '';
            width: 0;
            height: 2px;
            background: var(--dv-primary);
            transition: width 0.2s;
        }

        .dvcis-footer-links a:hover {
            color: var(--dv-footer-white);
            padding-left: 5px;
        }
        
        .dvcis-footer-links a:hover::before {
            width: 10px;
        }

        /* Newsletter Form */
        .dvcis-newsletter-form {
            position: relative;
            margin-top: 20px;
        }

        .dvcis-news-input {
            width: -webkit-fill-available;
            padding: 16px 20px;
            padding-right: 60px;
            border-radius: 14px;
            border: 1px solid rgba(255,255,255,0.1);
            background: rgba(255,255,255,0.03);
            color: white;
            font-size: 0.95rem;
            outline: none;
            transition: 0.3s;
        }

        .dvcis-news-input:focus {
            border-color: var(--dv-primary);
            background: rgba(255,255,255,0.08);
            box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
        }

        .dvcis-news-btn {
            position: absolute;
            right: 6px;
            top: 6px;
            width: 42px;
            height: 42px;
            background: linear-gradient(135deg, var(--dv-primary), #6366f1);
            border: none;
            border-radius: 10px;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
            box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
        }

        .dvcis-news-btn:hover {
            transform: scale(1.05);
            background: var(--dv-secondary);
        }

        /* Footer Bottom */
        .dvcis-footer-bottom {
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--dv-footer-text);
            font-size: 0.9rem;
        }

        .dvcis-footer-legal {
            display: flex;
            gap: 25px;
        }

        .dvcis-footer-legal a {
            color: var(--dv-footer-text);
            text-decoration: none;
            transition: 0.2s;
        }

        .dvcis-footer-legal a:hover {
            color: var(--dv-footer-white);
            text-decoration: underline;
        }
        
         @media (max-width: 900px) {
            .dvcis-footer-container { grid-template-columns: 1fr; gap: 40px; }
            .dvcis-footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
            .dvcis-footer-legal{
                gap: 15px;
            }
        }
        

         /* 3D Floating Button Container */
        .whatsapp-3d-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 70px;
            height: 70px;
            z-index: 1000;
            /* Button ko hawa me uthane ke liye shadow */
            filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.3));
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-decoration: none;
        }

        /* Hover Animation */
        .whatsapp-3d-float:hover {
            transform: translateY(-5px) scale(1.05);
            filter: drop-shadow(0 20px 20px rgba(0, 0, 0, 0.4));
        }
        
        /* Mobile adjustment */
        @media(max-width: 500px) {
            .whatsapp-3d-float {
                width: 60px;
                height: 60px;
                bottom: 20px;
                right: 20px;
            }
        }
        
        
        
        
  /* 
========================================
SECTION 1: CSS (Add to your stylesheet) Hero
========================================
    */

        /* --- VARIABLES --- */
        :root {
            --dv-slider-height: 650px;
            --dv-primary: #4f46e5;       /* Indigo 600 */
            --dv-secondary: #ec4899;     /* Pink 500 */
            --dv-text-main: #0f172a;     /* Slate 900 (Dark) */
            --dv-text-sub: #475569;      /* Slate 600 (Medium) */
            --dv-white: #ffffff;
            --dv-light-gray: #f1f5f9;
        }

        /* --- SLIDER CONTAINER --- */
        .dvcis-hero-slider {
            position: relative;
            width: 100%;
            height: var(--dv-slider-height);
            overflow: hidden;
            background: var(--dv-white);
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
        }

        /* --- SLIDES --- */
        .dvcis-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 1s ease-in-out, visibility 1s;
            z-index: 1;
            display: flex;
            align-items: center;
        }

        .dvcis-slide.active {
            opacity: 1;
            visibility: visible;
            z-index: 2;
        }

        /* Background Images & Overlay */
        .dvcis-slide-bg {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-size: cover;
            background-position: center;
            z-index: -1;
            /* Slight zoom effect for polish */
            transform: scale(1.05);
            transition: transform 6s ease;
        }

        .dvcis-slide.active .dvcis-slide-bg {
            transform: scale(1);
        }
        
        /* The White Gradient Overlay */
        .dvcis-slide-bg::after {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            /* Gradient: Solid white on left (for text), fading to transparent on right (for image) */
            background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 40%, rgba(255, 255, 255, 0) 100%);
        }

        /* --- CONTENT WRAPPER --- */
        .dvcis-slide-content {
            max-width: 1280px;
            width: 100%;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 10;
        }

        /* Animations */
        .dvcis-slide-content h1, 
        .dvcis-slide-content p, 
        .dvcis-slide-content .dvcis-btn-group,
        .dvcis-badge {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .dvcis-slide.active .dvcis-badge {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.2s;
        }
        .dvcis-slide.active h1 {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.4s;
        }
        .dvcis-slide.active p {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.6s;
        }
        .dvcis-slide.active .dvcis-btn-group {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.8s;
        }

        /* Typography */
        .dvcis-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(79, 70, 229, 0.08); /* Soft Indigo Bg */
            border-radius: 50px;
            color: var(--dv-primary);
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 25px;
        }

        .dvcis-hero-title {
            font-size: 4rem;
            font-weight: 900;
            color: var(--dv-text-main);
            margin-bottom: 20px;
            line-height: 1.1;
            max-width: 700px;
            letter-spacing: -1.5px;
        }
        
        .dvcis-hero-desc {
            font-size: 1.15rem;
            color: var(--dv-text-sub);
            margin-bottom: 40px;
            max-width: 550px;
            line-height: 1.6;
        }

        /* Buttons */
        .dvcis-btn-group {
            display: flex;
            gap: 15px;
        }

        .dvcis-slider-btn {
            padding: 16px 36px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        /* Solid Button */
        .btn-filled {
            background: var(--dv-primary);
            color: white;
            box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.4);
        }
        .btn-filled:hover {
            transform: translateY(-2px);
            background: #4338ca; /* Darker Indigo */
            box-shadow: 0 15px 35px -5px rgba(79, 70, 229, 0.5);
        }

        /* Outline Button (Adapted for White Bg) */
        .btn-outline {
            background: white;
            border: 2px solid #e2e8f0;
            color: var(--dv-text-main);
        }
        .btn-outline:hover {
            border-color: var(--dv-text-main);
            background: transparent;
            transform: translateY(-2px);
        }

        /* --- NAVIGATION DOTS --- */
        .dvcis-slider-dots {
            position: absolute;
            bottom: 40px;
            left: 24px; /* Aligned left with text */
            display: flex;
            gap: 12px;
            z-index: 20;
        }
        /* Centered dots on larger screens if preferred, or keep left aligned */
        @media (min-width: 1300px) {
            .dvcis-slider-dots {
                left: 54%;
                transform: translateX(-50%);
                margin-left: -640px; /* Align with container max-width */
            }
        }

        .dvcis-dot {
            width: 12px;
            height: 12px;
            background: #cbd5e1; /* Light gray */
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dvcis-dot.active {
            background: var(--dv-primary);
            width: 35px;
            border-radius: 20px;
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 900px) {
            .dvcis-hero-title { font-size: 3rem; }
            .dvcis-slide-bg::after {
                /* On mobile, darken the image more or make gradient cover more */
                background: linear-gradient(0deg, #ffffff 0%, rgba(255,255,255,0.95) 50%, rgba(255,255,255,0.4) 100%);
            }
            .dvcis-slide-content { text-align: center; padding-top: 40px; }
            .dvcis-hero-title, .dvcis-hero-desc { margin-left: auto; margin-right: auto; }
            .dvcis-btn-group { justify-content: center; }
            .dvcis-slider-dots { left: 50%; transform: translateX(-50%); margin-left: 0; bottom: 30px; }
        }

        @media (max-width: 600px) {
            :root { --dv-slider-height: 600px; }
            .dvcis-hero-title { font-size: 2.5rem; }
            .dvcis-btn-group { flex-direction: column; width: 100%; }
            .dvcis-slider-btn { justify-content: center; }
        }
        
        
          /* Scoped Variables for this section only */
        .dvcis-ab-section-wrapper {
            --ab-primary: #6366f1;       /* Indigo */
            --ab-secondary: #8b5cf6;     /* Violet */
            --ab-dark: #0f172a;          /* Navy Black */
            --ab-gray: #64748b;
            --ab-bg-light: #f1f5f9;
            --ab-white: #ffffff;
            --ab-font: 'Plus Jakarta Sans', sans-serif;
        }

        /* Main Section Container */
        .dvcis-ab-section-wrapper {
            background-color: var(--ab-bg-light); /* Background applied only here */
            padding: 100px 20px;
            overflow: hidden; /* Prevents 3D elements overlap */
            font-family: var(--ab-font);
            width: 100%;
            box-sizing: border-box;
        }

        .dvcis-ab-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 80px;
            min-height: 600px;
        }

        /* --- LEFT SIDE: CONTENT --- */
        .dvcis-ab-content-col {
            z-index: 2;
        }

        /* Badge */
        .dvcis-ab-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: var(--ab-white);
            border: 1px solid #e2e8f0;
            border-radius: 50px;
            color: var(--ab-primary);
            font-weight: 700;
            font-size: 0.85rem;
            margin-bottom: 25px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.03);
        }
        .dvcis-ab-badge svg { width: 16px; height: 16px; fill: currentColor; }

        /* Typography */
        .dvcis-ab-title {
            font-size: 3.5rem;
            line-height: 1.1;
            font-weight: 800;
            color: var(--ab-dark);
            margin: 0 0 25px 0;
        }

        .dvcis-ab-gradient-text {
            background: linear-gradient(135deg, var(--ab-primary) 0%, var(--ab-secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .dvcis-ab-desc {
            font-size: 1.15rem;
            color: var(--ab-gray);
            line-height: 1.7;
            margin-bottom: 40px;
        }

        /* Stats Grid */
        .dvcis-ab-stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 40px;
        }

        .dvcis-ab-stat-item {
            background: var(--ab-white);
            padding: 20px;
            border-radius: 16px;
            border: 1px solid rgba(255,255,255,0.5);
            box-shadow: 0 10px 30px -5px rgba(0,0,0,0.05);
            transition: 0.3s;
        }
        .dvcis-ab-stat-item:hover { transform: translateY(-5px); border-color: var(--ab-primary); }

        .dvcis-ab-stat-item h3 { font-size: 2rem; color: var(--ab-dark); margin: 0 0 5px 0; }
        .dvcis-ab-stat-item span { font-size: 0.9rem; color: var(--ab-gray); font-weight: 600; }

        /* Button */
        .dvcis-ab-btn {
            display: inline-flex; align-items: center; gap: 10px;
            padding: 16px 36px; background: var(--ab-dark); color: #fff;
            border-radius: 12px; font-weight: 700; text-decoration: none;
            transition: 0.3s;
        }
        .dvcis-ab-btn:hover { 
            background: var(--ab-primary); 
            transform: translateY(-3px); 
            box-shadow: 0 15px 30px rgba(99, 102, 241, 0.3); 
        }
        .dvcis-ab-btn svg { width: 20px; height: 20px; stroke-width: 2; }

        /* --- RIGHT SIDE: 3D COMPOSITION --- */
        .dvcis-ab-visual-col {
            position: relative;
            height: 600px;
            display: flex;
            justify-content: center;
            align-items: center;
            perspective: 1000px; /* Essential for 3D */
        }

        /* Background Blob */
        .dvcis-ab-blob-bg {
            position: absolute;
            width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(99,102,241,0.2) 0%, rgba(248,250,252,0) 70%);
            z-index: -1;
            filter: blur(50px);
        }

        /* The 3D Card Container */
        .dvcis-ab-card-3d-wrap {
            width: 400px;
            height: 500px;
            position: relative;
            transform-style: preserve-3d;
            transform: rotateY(-15deg) rotateX(10deg);
            transition: transform 0.5s ease-out;
        }

        /* Hover Effect */
        .dvcis-ab-visual-col:hover .dvcis-ab-card-3d-wrap {
            transform: rotateY(0deg) rotateX(0deg);
        }

        /* Main Glass Card */
        .dvcis-ab-main-card {
            position: absolute;
            width: 100%; height: 100%;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.8);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .dvcis-ab-card-img {
            width: 100%; height: 60%;
            object-fit: cover;
            border-radius: 0 0 30px 30px;
        }

        .dvcis-ab-card-body { padding: 30px; }
        .dvcis-ab-card-body h4 { font-size: 1.5rem; color: var(--ab-dark); margin: 0 0 10px 0; }
        .dvcis-ab-card-body p { font-size: 0.95rem; color: var(--ab-gray); line-height: 1.5; margin: 0; }

        /* Floating Element 1 (Top Right) */
        .dvcis-ab-float-1 {
            position: absolute;
            top: 40px; right: -40px;
            background: #fff;
            padding: 15px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            transform: translateZ(60px);
            display: flex; gap: 10px; align-items: center;
            border: 1px solid #f1f5f9;
            animation: dvcisFloat 6s ease-in-out infinite;
        }

        /* Floating Element 2 (Bottom Left) */
        .dvcis-ab-float-2 {
            position: absolute;
            bottom: 80px; left: -50px;
            background: var(--ab-dark);
            color: #fff;
            padding: 15px 25px;
            border-radius: 50px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            transform: translateZ(40px);
            display: flex; gap: 12px; align-items: center;
            animation: dvcisFloat 5s ease-in-out infinite reverse;
        }

        .dvcis-ab-icon-box {
            width: 40px; height: 40px; background: #eef2ff; color: var(--ab-primary);
            border-radius: 10px; display: flex; justify-content: center; align-items: center;
        }

        /* Animations */
        @keyframes dvcisFloat {
            0%, 100% { transform: translateZ(60px) translateY(0); }
            50% { transform: translateZ(60px) translateY(-15px); }
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 992px) {
            .dvcis-ab-container { grid-template-columns: 1fr; text-align: center; gap: 50px; }
            .dvcis-ab-visual-col { height: 450px; margin-top: 40px; perspective: none; }
            .dvcis-ab-card-3d-wrap { 
                transform: none !important; 
                width: 320px; height: 420px; 
            }
            .dvcis-ab-float-1 { right: -10px; top: 20px; transform: translateZ(0); animation: dvcisFloatMob 6s infinite; }
            .dvcis-ab-float-2 { left: -10px; bottom: 40px; transform: translateZ(0); animation: dvcisFloatMob 5s infinite reverse; }
            
            .dvcis-ab-badge { margin: 0 auto 25px; }
            .dvcis-ab-stats-grid { text-align: left; }

            @keyframes dvcisFloatMob {
                0%, 100% { transform: translateY(0); }
                50% { transform: translateY(-10px); }
            }
        }

        @media (max-width: 480px) {
            .dvcis-ab-title { font-size: 2.5rem; }
            .dvcis-ab-stats-grid { grid-template-columns: 1fr; }
            .dvcis-ab-card-3d-wrap { width: 100%; }
        }
        
         /* Scoped Variables */
        .dvcis-srv-wrapper {
            --srv-bg-page: #ffffff;
            --srv-text-main: #0f172a;
            --srv-text-muted: #64748b;
            --srv-primary: #4f46e5;
            --srv-border: #e2e8f0;
            --srv-hover-bg: #f8fafc;
            --srv-font: 'Plus Jakarta Sans', sans-serif;
        }

        /* Main Section Wrapper (Handles Background) */
        .dvcis-srv-wrapper {
            background-color: var(--srv-bg-page);
            padding: 80px 24px;
            font-family: var(--srv-font);
            width: 100%;
            box-sizing: border-box;
            
            /* Professional Dot Pattern Background */
            /*background-image: radial-gradient(#e2e8f0 1.5px, transparent 1.5px);*/
            /*background-size: 24px 24px;*/
        }

        .dvcis-srv-container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
        }

        /* --- HEADER --- */
        .dvcis-srv-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .dvcis-srv-header h2 {
            font-size: 2.5rem;
            color: var(--srv-text-main);
            font-weight: 800;
            margin: 0 0 10px 0;
            letter-spacing: -0.5px;
        }
        .dvcis-srv-header p {
            color: var(--srv-text-muted);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* --- GRID LAYOUT --- */
        .dvcis-srv-grid {
            display: grid;
            /* Auto-fit ensures responsiveness without media queries */
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); 
            gap: 20px;
        }

        /* --- SERVICE CARD --- */
        .dvcis-srv-btn {
            display: flex;
            align-items: center;
            padding: 24px;
            background: #ffffff;
            border: 1px solid var(--srv-border);
            border-radius: 16px;
            text-decoration: none;
            transition: all 0.2s ease-in-out;
            cursor: pointer;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
            position: relative;
            overflow: hidden;
        }

        /* Hover Effect */
        .dvcis-srv-btn:hover {
            border-color: var(--srv-primary);
            transform: translateY(-3px);
            box-shadow: 0 12px 30px -10px rgba(79, 70, 229, 0.15);
            z-index: 2;
        }

        /* Icon Wrapper */
        .dvcis-srv-icon {
            width: 48px;
            height: 48px;
            background: #f1f5f9;
            border-radius: 12px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--srv-text-main);
            transition: 0.2s;
            flex-shrink: 0;
        }

        .dvcis-srv-btn:hover .dvcis-srv-icon {
            background: var(--srv-primary);
            color: #fff;
        }

        .dvcis-srv-icon svg { width: 22px; height: 22px; stroke-width: 2; }

        /* Text Content */
        .dvcis-srv-content {
            flex: 1;
            margin-left: 18px;
            margin-right: 10px;
        }

        .dvcis-srv-content h3 {
            font-size: 1.05rem;
            color: var(--srv-text-main);
            margin: 0 0 4px 0;
            font-weight: 700;
        }

        .dvcis-srv-content p {
            font-size: 0.9rem;
            color: var(--srv-text-muted);
            margin: 0;
            line-height: 1.4;
        }

        /* Arrow Icon */
        .dvcis-srv-arrow {
            color: var(--srv-text-muted);
            transition: 0.2s;
        }
        .dvcis-srv-arrow svg { width: 18px; height: 18px; }

        .dvcis-srv-btn:hover .dvcis-srv-arrow {
            color: var(--srv-primary);
            transform: translateX(4px);
        }

        /* Responsive */
        @media (max-width: 600px) {
            .dvcis-srv-grid { grid-template-columns: 1fr; }
            .dvcis-srv-btn { padding: 20px; }
            .dvcis-srv-header h2 { font-size: 2rem; }
        }
        
        
        
          /* Scoped Variables */
        .dvcis-mq-section {
            --mq-bg: #ffffff;
            --mq-text-main: #0f172a;
            --mq-text-sub: #64748b;
            --mq-primary: #4f46e5;
            --mq-border: #e2e8f0;
            --mq-card-bg: #ffffff;
            --mq-font: 'Plus Jakarta Sans', sans-serif;
        }

        /* Main Section Wrapper */
        .dvcis-mq-section {
            background-color: var(--mq-bg);
            padding: 80px 0;
            font-family: var(--mq-font);
            width: 100%;
            overflow: hidden;
            border-top: 1px solid var(--mq-border);
            border-bottom: 1px solid var(--mq-border);
        }

        /* --- HEADING --- */
        .dvcis-mq-header {
            text-align: center;
            margin-bottom: 50px;
            padding: 0 20px;
        }

        .dvcis-mq-header h2 {
            font-size: 2.2rem;
            color: var(--mq-text-main);
            font-weight: 800;
            margin: 0 0 10px 0;
            letter-spacing: -0.5px;
        }

        .dvcis-mq-header p {
            font-size: 1rem;
            color: var(--mq-text-sub);
            font-weight: 500;
            margin: 0;
        }

        /* Decorative Line */
        .dvcis-mq-header::after {
            content: '';
            display: block;
            width: 50px;
            height: 4px;
            background: linear-gradient(90deg, var(--mq-primary), #8b5cf6);
            margin: 20px auto 0;
            border-radius: 2px;
        }

        /* --- MARQUEE CONTAINER --- */
        .dvcis-mq-wrapper {
            position: relative;
            width: 100%;
            overflow: hidden;
            padding: 20px 0;
        }

        /* Gradient Fade (Left & Right) */
        .dvcis-mq-wrapper::before,
        .dvcis-mq-wrapper::after {
            content: "";
            position: absolute;
            top: 0;
            width: 150px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .dvcis-mq-wrapper::before {
            left: 0;
            background: linear-gradient(to right, var(--mq-bg), transparent);
        }

        .dvcis-mq-wrapper::after {
            right: 0;
            background: linear-gradient(to left, var(--mq-bg), transparent);
        }

        /* --- MOVING TRACK --- */
        .dvcis-mq-track {
            display: flex;
            gap: 30px;
            width: max-content;
            animation: dvcisScroll 40s linear infinite;
        }

        /* Pause on Hover */
        .dvcis-mq-track:hover {
            animation-play-state: paused;
        }

        /* --- LOGO CARD --- */
        .dvcis-mq-card {
            width: 180px;
            height: 90px;
            background: var(--mq-card-bg);
            border-radius: 16px;
            display: flex;
            justify-content: center;
            align-items: center;
            border: 1px solid var(--mq-border);
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            cursor: pointer;
            flex-shrink: 0;
        }

        /* Hover Effect: Lift & Color */
        .dvcis-mq-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
            border-color: var(--mq-primary);
        }

        .dvcis-mq-card svg {
            height: 32px;
            width: auto;
            max-width: 70%;
            fill: var(--mq-text-sub); /* Default Grayscale */
            transition: all 0.3s ease;
            opacity: 0.6;
            filter: grayscale(100%);
        }

        .dvcis-mq-card:hover svg {
            fill: var(--mq-primary); /* Color on Hover */
            opacity: 1;
            filter: grayscale(0%);
            transform: scale(1.05);
        }

        /* Animation Keyframes */
        @keyframes dvcisScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-180px * 9 - 30px * 9)); } /* (Card Width * Count) + (Gap * Count) */
        }

        /* Responsive */
        @media (max-width: 768px) {
            .dvcis-mq-header h2 { font-size: 1.8rem; }
            .dvcis-mq-wrapper::before, .dvcis-mq-wrapper::after { width: 50px; }
            .dvcis-mq-card { width: 150px; height: 80px; }
            .dvcis-mq-card svg { height: 26px; }
        }
        
        
        
        
         .dvcis-min-section {
            --min-bg: #f8fafc;
            --min-card: #ffffff;
            --min-primary: #4f46e5;
            --min-text-main: #1e293b;
            --min-text-sub: #64748b;
            --min-border: #e2e8f0;
            --min-gold: #f59e0b;
            --min-font: 'Plus Jakarta Sans', sans-serif;
            --dot-inactive: #c9d0da; /* Custom light gray for inactive dot */
        }

        .dvcis-min-section {
            background-color: var(--min-bg);
            padding: 50px 20px;
            font-family: var(--min-font);
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            box-sizing: border-box;
            overflow: hidden;
        }

        /* --- HEADER --- */
        .dvcis-min-header {
            text-align: center;
            margin-bottom: 60px;
            max-width: 650px;
        }
        .dvcis-min-header h2 {
            font-size: 2.5rem;
            color: var(--min-text-main);
            font-weight: 800;
            margin-bottom: 10px;
        }
        .dvcis-min-header p {
            font-size: 1.1rem;
            color: var(--min-text-sub);
        }

        /* --- SLIDER CARD --- */
        .dvcis-min-container {
            width: 100%;
            max-width: 900px;
            position: relative;
            background: var(--min-card);
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--min-border);
            padding: 40px;
            overflow: hidden;
        }

        .dvcis-min-viewport {
            overflow: hidden;
        }
        .dvcis-min-wrapper {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        /* Individual Slide */
        .dvcis-min-slide {
            min-width: 100%;
            flex: 0 0 100%;
            display: grid;
            grid-template-columns: 120px 1fr;
            gap: 40px;
            align-items: start;
            padding: 20px 0;
            transition: all 0.5s;
        }
        
        /* Left: Avatar Block */
        .dvcis-min-avatar-block {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-top: 10px;
        }

        .dvcis-min-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--min-primary);
            padding: 3px;
            margin-bottom: 15px;
            flex-shrink: 0;
        }
        .dvcis-min-avatar svg {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: var(--min-primary);
            fill: white;
            padding: 5px;
        }

        .dvcis-min-stars {
            display: flex;
            gap: 4px; 
            color: var(--min-gold);
            margin-bottom: 0;
        }
        .dvcis-min-stars svg { 
            width: 18px; 
            height: 18px; 
            fill: currentColor;
            flex-shrink: 0;
        }

        /* Right: Quote Block */
        .dvcis-min-quote-block {
            text-align: left;
            position: relative;
        }

        .dvcis-min-quote-block h3 {
            font-size: 1.8rem;
            color: var(--min-text-main);
            font-weight: 800;
            margin: 0 0 10px 0;
            line-height: 1.3;
        }

        .dvcis-min-review-text {
            font-size: 1.15rem;
            color: var(--min-text-sub);
            line-height: 1.7;
            margin-bottom: 25px;
            font-weight: 500;
            border-left: 4px solid var(--min-primary);
            padding-left: 20px;
        }

        .dvcis-min-info h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--min-text-main);
            margin: 0;
        }
        .dvcis-min-info span {
            font-size: 0.9rem;
            color: var(--min-primary);
            font-weight: 600;
            display: block;
        }

        /* --- Navigation Controls (Integrated) --- */
        .dvcis-min-controls {
            position: absolute;
            top: 40px;
            right: 40px;
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .dvcis-min-btn {
            background: var(--min-bg);
            border: 1px solid var(--min-border);
            color: var(--min-text-sub);
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .dvcis-min-btn:hover {
            background: var(--min-primary);
            color: white;
            border-color: var(--min-primary);
        }

        .dvcis-min-btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }

        /* Navigation Dots - NEW DESIGN */
        .dvcis-min-dots {
            display: flex;
            gap: 10px; /* Increased gap */
            margin-top: 30px;
        }
        .dvcis-min-dot {
            width: 12px; /* Larger inactive circle */
            height: 12px;
            border-radius: 50%;
            background: var(--dot-inactive); /* Light gray inactive */
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            padding: 0;
        }
        .dvcis-min-dot.active {
            background: var(--min-primary);
            width: 30px; /* Elongated pill */
            border-radius: 15px; /* Half of width for perfect pill shape */
        }


        /* --- RESPONSIVE FIXES (Below 768px) --- */
        @media (max-width: 768px) {
            .dvcis-min-container {
                padding: 30px 20px;
            }

            /* 1. Collapse Grid */
            .dvcis-min-slide {
                grid-template-columns: 1fr;
                gap: 20px;
                text-align: center;
                padding: 0;
            }

            /* 2. Avatar Block (Centered Row for Avatar & Stars) */
            .dvcis-min-avatar-block {
                order: -1; 
                
                justify-content: center;
                align-items: center;
                padding-top: 10px;
                gap: 15px;
            }
            .dvcis-min-avatar {
                margin-bottom: 0;
            }
            
            /* 3. Quote Block */
            .dvcis-min-quote-block {
                text-align: center;
            }
            .dvcis-min-quote-block h3 {
                 font-size: 1.4rem;
                 margin-bottom: 10px;
            }
            
            /* 4. Review Text Styling */
            .dvcis-min-review-text {
                border-left: none;
                padding-left: 0;
                border-bottom: 1px solid var(--min-border);
                padding-bottom: 15px;
                margin-bottom: 15px;
                font-size: 1rem;
            }

            /* 5. Center Controls */
            .dvcis-min-controls {
                position: relative;
                top: auto;
                right: auto;
                justify-content: center;
                margin-top: 20px;
                order: 10;
                width: 100%;
            }
        }
        
        /* Scoped Variables */
        .dvcis-pr-section {
            --pr-primary: #4f46e5;
            --pr-secondary: #ec4899;
            --pr-gradient: linear-gradient(135deg, var(--pr-primary) 0%, #8b5cf6 100%);
            --pr-gold-gradient: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
            --pr-dark: #1e293b;
            --pr-text-sub: #64748b;
            --pr-bg: #f8fafc;
            --pr-card-bg: #ffffff;
            --pr-border: #e2e8f0;
            --pr-shadow-lg: 0 20px 40px rgba(0,0,0,0.1);
            --pr-transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            --pr-font: 'Plus Jakarta Sans', sans-serif;
        }

        /* Base Section Styling */
        .dvcis-pr-section {
            background-color: var(--pr-bg);
            padding: 40px 20px;
            font-family: var(--pr-font);
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            box-sizing: border-box;
        }

        .dvcis-pr-container {
            max-width: 1200px;
            width: 100%;
            text-align: center;
        }

        /* --- Header & Toggle Switch --- */
        .dvcis-pr-header {
            margin-bottom: 60px;
        }

        .dvcis-pr-header h2 {
            font-size: 3rem;
            background: var(--pr-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
            font-weight: 800;
            letter-spacing: -1px;
        }

        .dvcis-pr-header p {
            color: var(--pr-text-sub);
            font-size: 1.1rem;
        }

        .dvcis-pr-toggle-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-top: 25px;
        }

        .dvcis-pr-toggle-label {
            font-size: 1rem;
            color: var(--pr-dark);
            font-weight: 600;
        }

        .dvcis-pr-save-badge {
            background: #d1fae5;
            color: #059669;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            white-space: nowrap;
        }

        /* The Switch Styling (Custom SVG Checkmark) */
        .dvcis-pr-switch {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 34px;
        }
        .dvcis-pr-switch input { opacity: 0; width: 0; height: 0; }
        .dvcis-pr-slider {
            position: absolute;
            cursor: pointer;
            top: 0; left: 0; right: 0; bottom: 0;
            background-color: var(--pr-border);
            transition: .4s;
            border-radius: 34px;
        }
        .dvcis-pr-slider:before {
            position: absolute;
            content: "";
            height: 26px;
            width: 26px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        .dvcis-pr-switch input:checked + .dvcis-pr-slider { background: var(--pr-gradient); }
        .dvcis-pr-switch input:checked + .dvcis-pr-slider:before { transform: translateX(26px); }

        /* --- Pricing Cards Grid --- */
        .dvcis-pr-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            padding: 10px 0;
        }

        .dvcis-pr-card {
            background: var(--pr-card-bg);
            border-radius: 24px;
            padding: 40px 30px;
            position: relative;
            transition: var(--pr-transition);
            border: 1px solid var(--pr-border);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            overflow: hidden;
            z-index: 1;
        }

        /* Hover Effect */
        .dvcis-pr-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--pr-shadow-lg);
            border-color: var(--pr-primary);
            z-index: 2;
        }

        /* Popular Card Special Styling */
        .dvcis-pr-card.popular {
            background: var(--pr-dark);
            color: #fff;
            transform: scale(1.05) translateY(-20px); /* Lifted by default */
            box-shadow: 0 30px 70px rgba(30, 41, 59, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .dvcis-pr-card.popular:hover {
            transform: scale(1.08) translateY(-30px);
        }
        
        .dvcis-pr-card.popular .dvcis-pr-price-duration,
        .dvcis-pr-card.popular .dvcis-pr-features li {
            color: #a0aec0;
        }
        .dvcis-pr-card.popular h3 { color: #fff; }

        /* Ribbon for Popular */
        .dvcis-pr-ribbon {
            position: absolute;
            top: 20px;
            right: -35px;
            background: var(--pr-gold-gradient);
            width: 150px;
            text-align: center;
            transform: rotate(45deg);
            color: #fff;
            font-weight: 700;
            font-size: 0.8rem;
            padding: 6px 0;
            box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        }

        /* Card Content */
        .dvcis-pr-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--pr-dark);
            font-weight: 700;
        }

        .dvcis-pr-icon-box {
            font-size: 2.2rem;
            margin-bottom: 20px;
            display: inline-block;
            background: var(--pr-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .dvcis-pr-card.popular .dvcis-pr-icon-box {
            background: var(--pr-gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .dvcis-pr-icon-box svg { width: 32px; height: 32px; stroke: currentColor; fill: none; stroke-width: 1.5; }

        .dvcis-pr-price-box {
            margin: 25px 0;
            height: 80px;
            transition: all 0.3s;
        }

        .dvcis-pr-amount {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1;
            display: block;
            color: var(--pr-dark);
        }

        .dvcis-pr-card.popular .dvcis-pr-amount {
            color: #fff;
            background: var(--pr-gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .dvcis-pr-price-duration {
            font-size: 1rem;
            font-weight: 400;
            color: var(--pr-text-sub);
            margin-top: 5px;
            display: block;
        }

        /* Features List */
        .dvcis-pr-features {
            list-style: none;
            margin-bottom: 40px;
            text-align: left;
        }

        .dvcis-pr-features li {
            padding: 10px 0;
            font-size: 0.95rem;
            color: var(--pr-text-sub);
            border-bottom: 1px dashed rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
        }
        
        .dvcis-pr-card.popular .dvcis-pr-features li {
            border-bottom: 1px dashed rgba(255,255,255,0.1);
        }

        .dvcis-pr-features li svg {
            margin-right: 10px;
            width: 18px;
            height: 18px;
            fill: none;
        }
        
        /* Checkmark Styling */
        .dvcis-pr-features li .check-icon {
            color: #10b981;
            stroke: #10b981;
            fill: none;
            stroke-width: 2.5;
        }

        /* Disabled Styling */
        .dvcis-pr-features li.disabled {
            opacity: 0.6;
        }
        .dvcis-pr-features li.disabled .xmark-icon { 
            color: var(--pr-text-sub);
            stroke: var(--pr-text-sub);
            opacity: 0.4;
        }


        /* Button */
        .dvcis-pr-btn {
            display: block;
           
            padding: 16px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            border: none;
            cursor: pointer;
        }

        .dvcis-pr-btn-outline {
            border: 2px solid var(--pr-border);
            color: var(--pr-dark);
            background: transparent;
        }
        .dvcis-pr-btn-outline:hover {
            border-color: var(--pr-primary);
            color: var(--pr-primary);
        }

        .dvcis-pr-btn-fill {
            background: var(--pr-gradient);
            color: white;
            box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
        }
        .dvcis-pr-btn-fill:hover {
            box-shadow: 0 15px 30px rgba(79, 70, 229, 0.5);
            transform: translateY(-3px);
        }

        /* Responsive */
        @media (max-width: 900px) {
            .dvcis-pr-header h2 { font-size: 2.5rem; }
            .dvcis-pr-grid { 
                grid-template-columns: 1fr; 
                max-width: 400px; 
                margin: 0 auto; 
                gap: 50px;
            }
            /* Remove desktop scaling on mobile */
            .dvcis-pr-card { transform: none; }
            .dvcis-pr-card.popular { 
                transform: none; 
                margin-top: 20px; /* Adjust spacing */
            }
            .dvcis-pr-card:hover, .dvcis-pr-card.popular:hover {
                transform: translateY(-10px);
                box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            }
        }
        
        
        
         /* Scoped Variables (Matching the established palette) */
        .dvcis-faq-section {
            --faq-primary: #4f46e5;       /* Indigo */
            --faq-secondary: #f97316;     /* Orange/Accent */
            --faq-text-main: #1e293b;
            --faq-text-sub: #64748b;
            --faq-bg: #ffffff;
            --faq-card-bg: #ffffff;
            --faq-border: #e2e8f0;
            --faq-shadow: 0 10px 30px rgba(0,0,0,0.05);
            --faq-font: 'Plus Jakarta Sans', sans-serif;
        }

        .dvcis-faq-section {
            background-color: var(--faq-bg);
            padding: 40px 20px;
            font-family: var(--faq-font);
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-sizing: border-box;
        }

        .dvcis-faq-container {
            max-width: 850px;
            width: 100%;
            margin: 0 auto;
        }

        /* --- HEADER --- */
        .dvcis-faq-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .dvcis-faq-header h2 {
            font-size: 2.5rem;
            color: var(--faq-text-main);
            font-weight: 800;
            margin-bottom: 10px;
            letter-spacing: -0.5px;
        }

        .dvcis-faq-header span {
            background: linear-gradient(135deg, var(--dv-primary), var(--dv-primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .dvcis-faq-header p {
            color: var(--faq-text-sub);
            font-size: 1.1rem;
        }

        /* --- FAQ ITEM STYLING (Accordion) --- */
        .dvcis-faq-item {
            background: var(--faq-card-bg);
            margin-bottom: 16px;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.02);
            overflow: hidden;
            border: 1px solid var(--faq-border);
            transition: all 0.3s ease;
        }

        .dvcis-faq-item.active {
            border-color: var(--faq-primary);
            box-shadow: var(--faq-shadow);
        }

        /* Question Button */
        .dvcis-faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 20px 25px;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--faq-text-main);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 0.3s ease;
        }
        
        .dvcis-faq-item.active .dvcis-faq-question {
             color: var(--faq-primary);
        }

        /* Icon Styling */
        .dvcis-faq-icon {
            width: 24px;
            height: 24px;
            fill: none;
            stroke: var(--faq-primary);
            stroke-width: 2;
            transition: transform 0.3s ease;
            flex-shrink: 0;
            margin-left: 15px;
        }

        .dvcis-faq-item.active .dvcis-faq-icon {
            transform: rotate(45deg); 
            stroke: #ef4444; /* Red accent when open */
        }

        /* Answer Area */
        .dvcis-faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out, background-color 0.3s;
        }
        
        .dvcis-faq-item.active .dvcis-faq-answer {
             background-color: var(--faq-bg);
        }

        .dvcis-faq-answer p {
            padding: 0 25px 25px 25px;
            color: var(--faq-text-sub);
            line-height: 1.6;
            font-size: 1rem;
        }

        /* Responsive Fixes */
        @media (max-width: 600px) {
            .dvcis-faq-header h2 { font-size: 2rem; }
            .dvcis-faq-question { font-size: 1rem; padding: 18px 20px; }
            .dvcis-faq-icon { width: 20px; height: 20px; }
            .dvcis-faq-answer p { font-size: 0.9rem; padding: 0 20px 20px 20px; }
        }
        
        
          /* --- ISOLATED GLOBAL VARIABLES --- */
        .dvcis-form-wrapper {
            --form-primary: #4f46e5;       /* Vibrant Indigo */
            --form-secondary: #ec4899;     /* Vibrant Pink */
            
            --form-primary-soft: rgba(79, 70, 229, 0.1);
            --form-secondary-soft: rgba(236, 72, 153, 0.1);
            
            --form-bg-page: #f8fafc;
            --form-card-bg: rgba(255, 255, 255, 0.98); /* Less translucent for clean white */
            --form-border-soft: rgba(255, 255, 255, 0.9);
            
            --form-text-dark: #1e293b;     /* Deep Charcoal */
            --form-text-muted: #64748b;
            
            --form-input-bg: #ffffff;    
            --form-input-border: #d1d5db; /* Slightly darker border for contrast */
            
            --form-error: #ef4444;
            --form-shadow-soft: 0 15px 30px rgba(0, 0, 0, 0.08); /* Stronger overall shadow */

            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            color: var(--form-text-dark);
            width: 100%;
            background-color: var(--form-bg-page);
            padding: 60px 0px; /* Increased top/bottom padding */
            display: flex;
            justify-content: center;
        }

        .dvcis-form-wrapper * { 
            box-sizing: border-box; 
        }

        /* --- CARD & LAYOUT --- */
        .dvcis-form-card { 
            background: var(--form-card-bg); 
            backdrop-filter: blur(25px); 
            width: 100%; 
            max-width: 900px;
            padding: 60px; /* Increased internal padding */
            border-radius: 24px; 
            border: 1px solid var(--form-input-border); /* Solid border color */
            box-shadow: var(--form-shadow-soft); 
            position: relative; 
            overflow: hidden; 
        }
        
        /* Top Accent Bar (Thicker and more prominent) */
        .dvcis-form-card::before { 
            content: ''; 
            position: absolute; 
            top: 0; 
            left: 0; 
            width: 100%; 
            height: 8px; /* Thicker accent bar */
            background: linear-gradient(90deg, var(--form-primary), var(--form-secondary)); 
        }

        .dvcis-form-header { 
            text-align: center; 
            margin-bottom: 50px; /* Increased margin */
        }
        .dvcis-form-header h2 { 
            font-size: 2.5rem; /* Slightly larger */
            font-weight: 900; /* Bolder */
            margin-bottom: 10px; 
            letter-spacing: -1px; /* Tighter spacing */
            background: linear-gradient(135deg, var(--form-text-dark), var(--form-primary)); 
            -webkit-background-clip: text; 
            -webkit-text-fill-color: transparent; 
        }
        .dvcis-form-header p { 
            color: var(--form-text-muted); 
            font-size: 1.05rem;
        }

        .dvcis-form-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 30px; 
        } 
        .dvcis-form-col-span-2 { 
            grid-column: span 2; 
        }
        .dvcis-form-group { 
            display: flex; 
            flex-direction: column; 
            gap: 8px; 
        }
        
        /* Labels & Icons */
        .dvcis-form-group label { 
            display: flex; 
            align-items: center; 
            gap: 8px; 
            font-size: 0.8rem; /* Slightly smaller for crispness */
            font-weight: 700; 
            text-transform: uppercase; 
            color: var(--form-text-dark); /* Use dark text for labels */
            opacity: 0.8;
        } 
        .dvcis-form-group label svg { 
            stroke: var(--form-primary); 
            width: 16px; 
            height: 16px; 
        }
        
        /* --- INPUT STYLING (Premium 3D Effect) --- */
        .dvcis-form-group input:not(#captchaAnswer), 
        .dvcis-form-group select, 
        .dvcis-form-group textarea { 
            padding: 16px 20px; 
            border: 1px solid var(--form-input-border); 
            border-radius: 12px; /* Slightly more rounded */
            font-size: 1rem; 
            color: var(--form-text-dark); 
            background: #fcfcfc; /* Very light background on input */
            width: 100%; 
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); 
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.03); /* Inner shadow for depth */
        }
        .dvcis-form-group input:not(#captchaAnswer):focus, 
        .dvcis-form-group select:focus, 
        .dvcis-form-group textarea:focus { 
            outline: none; 
            background: #fff; 
            border-color: var(--form-primary); 
            box-shadow: 0 5px 15px -5px rgba(79, 70, 229, 0.25), 0 0 0 2px var(--form-primary-soft); 
            transform: translateY(-1px); /* Subtle lift on focus */
        }
        
        /* Mobile Number Group */
        .dvcis-form-mobile-group { 
            display: flex; 
            gap: 15px; 
        }
        .dvcis-form-mobile-group select { 
            width: 35%; 
            min-width: 110px; 
        } 
        .dvcis-form-mobile-group input { 
            flex: 1; 
        }

        /* 3D Radio */
        .dvcis-form-radio-wrapper { 
            display: flex; 
            gap: 12px; /* Reduced gap */
            padding: 5px 0; 
        }
        .dvcis-form-radio-label { 
             
            display: flex; 
            align-items: center; 
            justify-content: center; 
            gap: 10px; 
            padding: 14px; /* Reduced padding */
            border: 1px solid var(--form-input-border); 
            border-radius: 12px; 
            cursor: pointer; 
            background: var(--form-input-bg); 
            transition: all 0.3s; 
            box-shadow: 0 2px 6px rgba(0,0,0,0.03); 
            font-weight: 600; 
            color: var(--form-text-dark); 
        }
        .dvcis-form-radio-label:has(input:checked) { 
            background: var(--form-primary-soft); /* Soft background accent */
            border: 2px solid var(--form-primary); 
            color: var(--form-primary); 
            box-shadow: 0 4px 15px rgba(79, 70, 229, 0.15); 
        }
        
        /* Submit Button (Glow Effect) */
        .dvcis-form-submit-btn { 
            width: 100%; 
            margin-top: 30px; 
            background: linear-gradient(135deg, var(--form-primary), var(--form-secondary)); 
            color: white; 
            padding: 18px; 
            border: none; 
            border-radius: 16px; 
            font-size: 1.1rem; 
            font-weight: 800; 
            cursor: pointer; 
            box-shadow: 0 10px 30px -5px rgba(79, 70, 229, 0.5); 
            transition: all 0.3s; 
            text-transform: uppercase; 
            letter-spacing: 1px; 
        }
        .dvcis-form-submit-btn:hover { 
            transform: translateY(-4px); 
            box-shadow: 0 20px 40px -8px rgba(79, 70, 229, 0.7); 
        }
        
        /* Captcha Container */
        .dvcis-form-captcha-container { 
            background: #ffffff; /* Cleaner inner bg */
            padding: 20px 30px; 
            border-radius: 16px; 
            border: 1px solid var(--form-input-border);
            box-shadow: 0 5px 20px rgba(0,0,0,0.05); 
            position: relative; 
            display: flex; 
            align-items: center; 
            justify-content: space-between; 
            gap: 15px; 
        }

        /* CAPTCHA Text */
        .dvcis-form-captcha-text { 
            font-size: 1rem; 
            font-weight: 700; 
            color: var(--form-text-dark); 
            text-transform: uppercase; 
            letter-spacing: 0.5px; 
            display: flex; 
            align-items: center; 
            gap: 10px; 
        }
        .dvcis-form-captcha-text::before { 
            content: '🔒'; 
            font-size: 1.2rem; 
        }

        /* CAPTCHA Input Field - FIXED STYLING */
        #captchaAnswer { 
            text-align: center; 
            font-size: 1.3rem; 
            font-weight: 900; 
            letter-spacing: 3px; 
            color: var(--form-primary); 
            background: var(--form-primary-soft); 
            border: 2px solid var(--form-primary); 
            padding: 10px 12px; 
            width: 150px; 
            border-radius: 10px; 
            transition: 0.2s; 
        }
        #captchaAnswer:focus { 
            border-color: var(--form-secondary); 
            box-shadow: 0 0 0 3px var(--form-secondary-soft); 
        }

        /* CAPTCHA Error Text */
        .dvcis-form-error-text { 
            position: absolute; 
            bottom: -20px; /* Positioned below container for cleaner look */
            left: 50%;
            transform: translateX(-50%);
            color: var(--form-error); 
            font-size: 0.75rem; 
            font-weight: 700; 
            display: none; 
            white-space: nowrap;
        }

        .dvcis-form-honeypot { 
            display: none !important; 
        }

        /* --- RESPONSIVE ADJUSTMENTS --- */
        @media (max-width: 768px) {
            .dvcis-form-card { 
                padding: 30px 20px; 
            }
            .dvcis-form-header {
                text-align: left;
                margin-bottom: 30px;
            }
            .dvcis-form-header h2 { 
                font-size: 1.75rem; 
            }
            .dvcis-form-header p { 
                font-size: 0.95rem; 
            }
            .dvcis-form-grid { 
                grid-template-columns: 1fr; 
                gap: 20px; 
            } 
            .dvcis-form-col-span-2 { 
                grid-column: span 1; 
            }
            
            .dvcis-form-radio-wrapper { 
                /*flex-direction: column; */
                gap: 10px; 
            }
            
            .dvcis-form-captcha-container { 
                flex-direction: column; 
                align-items: flex-start; /* Align left */
                padding: 15px;
            } 
            
            .dvcis-form-captcha-text {
                justify-content: flex-start;
                width: 100%;
            }
            
            /* Fix Captcha Input width on mobile */
            #captchaAnswer {
                width: 100%; 
                max-width: 100%; 
                margin-top: 5px;
            }
            
            .dvcis-form-error-text { 
                position: static; 
                transform: none;
                margin-top: 8px; 
                text-align: left;
            }
        }
        
        
        
        
        /* IMPORT PREMIUM FONTS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@500;700;800&display=swap');

/* --- SCOPED VARIABLES --- */
:root {
    --dvcis-gradient: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --dvcis-accent: #4f46e5;
    --dvcis-dark: #0f172a;
    --dvcis-text: #334155;
    --dvcis-bg: #f8fafc;
    --dvcis-card-bg: #ffffff;
    --dvcis-border: #e2e8f0;
    --dvcis-icon: #6366f1;
}

/* Base Reset for Legal Pages */
.dvcis-legal-body {
    margin: 0;
    padding: 60px 20px;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    background-color: var(--dvcis-bg);
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 30px 30px;
    color: var(--dvcis-text);
    line-height: 1.8;
    min-height: 100vh;
}

.dvcis-legal-container {
    max-width: 900px;
    margin: 0 auto;
}

/* --- HEADER SECTION --- */
.dvcis-legal-header {
    text-align: center;
    margin-bottom: 50px;
}

.dvcis-legal-hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    margin-bottom: 25px;
    color: var(--dvcis-accent);
}
.dvcis-legal-hero-icon svg {
    width: 40px;
    height: 40px;
}

.dvcis-legal-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    color: var(--dvcis-dark);
    margin-bottom: 15px;
    margin-top: 0;
}

.dvcis-legal-header h1 span {
    background: var(--dvcis-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dvcis-legal-header p {
    font-size: 1.25rem;
    color: #64748b;
    font-weight: 400;
    margin-top: 0;
}

.dvcis-legal-date {
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    padding: 6px 16px;
    background: #fff;
    border: 1px solid var(--dvcis-border);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dvcis-accent);
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.dvcis-legal-date svg { width: 16px; height: 16px; margin-right: 8px; }

/* --- MAIN CARD --- */
.dvcis-legal-card {
    background: var(--dvcis-card-bg);
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.dvcis-legal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--dvcis-gradient);
}

.dvcis-legal-section {
    margin-bottom: 50px;
}

/* Headings & Text */
.dvcis-legal-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dvcis-dark);
    margin-bottom: 25px;
    margin-top: 0;
    display: flex;
    align-items: center;
}

.dvcis-legal-section-icon {
    width: 32px;
    height: 32px;
    margin-right: 15px;
    color: var(--dvcis-icon);
    flex-shrink: 0;
}

.dvcis-legal-section p {
    margin-bottom: 16px;
    font-size: 1.05rem;
    padding-left: 47px; /* Indent for clean look */
    margin-top: 0;
}

/* --- LISTS --- */
.dvcis-legal-list {
    list-style: none;
    margin: 25px 0 25px 47px;
    padding: 0;
}

.dvcis-legal-list li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2.5' stroke='%234f46e5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4.5 12.75l6 6 9-13.5' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 0 5px;
    background-size: 20px;
}

/* --- CONTACT BOX --- */
.dvcis-legal-contact {
    margin-top: 30px;
    margin-left: 47px;
    padding: 30px;
    background: linear-gradient(135deg, #fff 0%, #f0fdf4 100%);
    border: 1px solid #dcfce7;
    border-radius: 16px;
}

.dvcis-legal-contact h3 {
    font-family: 'Outfit', sans-serif;
    color: #166534;
    margin-bottom: 20px;
    margin-top: 0;
}

.dvcis-legal-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #166534; 
    font-weight: 500;
}
.dvcis-legal-contact-item svg { width: 20px; height: 20px; margin-right: 10px; }

/* Links */
.dvcis-legal-link { color: var(--dvcis-accent); text-decoration: none; font-weight: 600; transition: all 0.2s ease; }
.dvcis-legal-link:hover { color: #4338ca; }

/* Footer */
.dvcis-legal-footer { text-align: center; margin-top: 50px; color: #94a3b8; }

/* Mobile */
@media (max-width: 768px) {
    .dvcis-legal-body { padding: 30px 15px; }
    .dvcis-legal-card { padding: 30px 20px; }
    .dvcis-legal-header h1 { font-size: 2.5rem; }
    .dvcis-legal-section p, .dvcis-legal-list, .dvcis-legal-contact { padding-left: 0; margin-left: 0; }
}





/* Scoped Fonts just for this section */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* Main Wrapper Scope - Variables defined locally */
.dvcis-contact-wrapper {
    /* Theme Colors */
    --dvcis-purple: #5e54f1;
    --dvcis-dark: #0b0e16;
    --dvcis-text: #1a1a1a;
    --dvcis-pink: #ff4081;
    
    font-family: 'Poppins', sans-serif;
    background-color: #f0f2f5; /* Sirf is section ka background */
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

/* Is section ke andar ke sabhi elements par border-box lagana */
.dvcis-contact-wrapper *, 
.dvcis-contact-wrapper *::before, 
.dvcis-contact-wrapper *::after {
    box-sizing: border-box;
}

.dvcis-container {
    max-width: 1200px;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.dvcis-content-row {
    display: flex;
    flex-wrap: wrap;
}

/* --- LEFT SIDE --- */
.dvcis-info-panel {
    flex: 1;
    background-color: var(--dvcis-dark);
    color: #fff;
    padding: 50px;
    min-width: 300px;
    position: relative;
}

.dvcis-info-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--dvcis-purple), var(--dvcis-pink));
}

.dvcis-heading {
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
}

.dvcis-text {
    color: #b0b3b8;
    margin-bottom: 40px;
    line-height: 1.6;
    font-size: 16px;
}

.dvcis-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.dvcis-icon {
    font-size: 22px;
    color: var(--dvcis-purple);
    margin-right: 15px;
    margin-top: 5px;
}

.dvcis-subheading {
    font-size: 18px;
    margin-bottom: 5px;
    color: #fff;
    font-weight: 600;
}

.dvcis-small-text {
    margin-bottom: 0;
    font-size: 14px;
    color: #b0b3b8;
}

/* --- RIGHT SIDE --- */
.dvcis-form-panel {
    flex: 1.5;
    padding: 50px;
    background-color: #fff;
    min-width: 350px;
}

.dvcis-form-heading {
    font-size: 32px;
    color: var(--dvcis-text);
    font-weight: 800;
    margin-bottom: 30px;
}

.dvcis-form-group {
    margin-bottom: 20px;
    width: 100%;
}

.dvcis-form-row {
    display: flex;
    gap: 20px;
}

.dvcis-form-row .dvcis-form-group {
    flex: 1;
}

.dvcis-label {
    display: block;
    font-weight: 600;
    color: var(--dvcis-text);
    margin-bottom: 8px;
    font-size: 14px;
}

/* Specific Input Styling to avoid global conflict */
.dvcis-input {
    width: 100%;
    padding: 14px;
    background-color: #f8f9fa;
    border: 2px solid #eef0f3;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.dvcis-input:focus {
    border-color: var(--dvcis-purple);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(94, 84, 241, 0.1);
}

.dvcis-textarea {
    resize: vertical;
}

.dvcis-submit-btn {
    width: 100%;
    background-color: var(--dvcis-purple);
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background 0.3s, transform 0.2s;
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
}

.dvcis-submit-btn:hover {
    background-color: #4a42c9;
    transform: translateY(-2px);
}

/* Map Section */
.dvcis-map-wrapper {
    width: 100%;
    line-height: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .dvcis-content-row {
        flex-direction: column-reverse;
    }
    .dvcis-form-row {
        flex-direction: column;
        gap: 0;
    }
    .dvcis-info-panel, .dvcis-form-panel {
        padding: 30px;
    }
}
/* --- SCOPED DVCIS PREMIUM WHITE THEME --- */

/* --- SCOPED DVCIS TEAM SECTION --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Outfit:wght@500;700&display=swap');

/* Main Scope Wrapper */
.dvcis-team-wrapper {
    /* Scoped Variables */
    --team-bg: #ffffff;
    --team-text-main: #0f172a;
    --team-text-muted: #64748b;
    --team-primary: #2563eb;
    --team-border: #e2e8f0;
    --team-shadow: 0 10px 30px -5px rgba(0,0,0,0.05);
    
    /* Brand Colors */
    --brand-li: #0077b5;
    --brand-x: #000000;
    --brand-fb: #1877f2;
    --brand-ig: #E4405F;
    --brand-yt: #ff0000;

    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #f8fafc;
    color: var(--team-text-main);
    line-height: 1.6;
    padding: 0;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

/* Strict Box Sizing inside wrapper */
.dvcis-team-wrapper *, 
.dvcis-team-wrapper *::before, 
.dvcis-team-wrapper *::after {
    box-sizing: border-box;
}

.dvcis-team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* --- HEADER --- */
.dvcis-team-header {
    text-align: center;
    margin-bottom: 80px;
}

.dvcis-team-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    margin: 0 0 15px 0;
    color: var(--team-text-main);
    letter-spacing: -1px;
    line-height: 1.2;
}

.dvcis-team-title span {
    color: var(--team-primary);
}

.dvcis-team-subtitle {
    font-size: 1.2rem;
    color: var(--team-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* --- FOUNDER CARD --- */
.dvcis-team-founder {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--team-shadow);
    border: 1px solid var(--team-border);
    margin-bottom: 80px;
}

.dvcis-team-founder-img-box {
    flex: 1;
    aspect-ratio: 1 / 1;
    max-width: 500px;
}

.dvcis-team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.dvcis-team-founder-info {
    flex: 1.2;
    padding: 50px;
}

.dvcis-team-badge {
    display: inline-block;
    background: var(--team-primary);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.dvcis-team-founder-name {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    margin: 0 0 15px 0;
    color: var(--team-text-main);
    line-height: 1.2;
}

.dvcis-team-desc {
    color: var(--team-text-muted);
    font-size: 1.05rem;
    margin-bottom: 25px;
}

/* --- GRID SECTION --- */
.dvcis-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.dvcis-team-card {
    background: #fff;
    border: 1px solid var(--team-border);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--team-shadow);
}

.dvcis-team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.dvcis-team-card-img-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.dvcis-team-card:hover .dvcis-team-img {
    transform: scale(1.05);
}

.dvcis-team-card-content {
    padding: 30px 25px;
}

.dvcis-team-card-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    margin: 0 0 5px 0;
    color: var(--team-text-main);
    font-weight: 700;
}

.dvcis-team-role {
    color: var(--team-primary);
    font-size: 1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}

/* --- SOCIAL ICONS --- */
.dvcis-team-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
}

.dvcis-team-socials-left {
    justify-content: flex-start;
}

.dvcis-team-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 18px; /* For FontAwesome */
}

/* Brand Hover Effects */
.dvcis-team-icon.li:hover { background: var(--brand-li); color: #fff; transform: translateY(-3px); }
.dvcis-team-icon.x:hover { background: var(--brand-x); color: #fff; transform: translateY(-3px); }
.dvcis-team-icon.fb:hover { background: var(--brand-fb); color: #fff; transform: translateY(-3px); }
.dvcis-team-icon.ig:hover { color: #fff; background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); transform: translateY(-3px); }
.dvcis-team-icon.yt:hover { background: var(--brand-yt); color: #fff; transform: translateY(-3px); }

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .dvcis-team-founder { flex-direction: column; }
    .dvcis-team-founder-img-box { max-width: 100%; width: 100%; }
    .dvcis-team-founder-info { padding: 30px; text-align: center; }
    .dvcis-team-socials-left { justify-content: center; }
    .dvcis-team-title { font-size: 2.8rem; }
}


#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    min-width: 260px;
    max-width: 340px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    animation: toast-in 0.3s forwards, toast-out 0.3s 4.5s forwards;
}

.toast-success {
    background: #e0f7ec;
    border-left: 4px solid #16a34a;
    color: #14532d;
}


.toast-error {
    background: #fee2e2;
    border-left: 4px solid #dc2626;
    color: #7f1d1d;
}


.toast-info {
    background: #e0f2fe;
    border-left: 4px solid #2563eb;
    color: #1e3a8a;
}


.toast-close {
    margin-left: auto;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    opacity: 0.6;
}

.toast-close:hover {
    opacity: 1;
}

@keyframes toast-in {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes toast-out {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(20px);
    }
}





/* ===============================
   1. Overlay with Glassmorphism
   =============================== */
.popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(10, 10, 30, 0.6); /* Dark Blue Tint */
    backdrop-filter: blur(8px);
    display: none; /* JS toggles this */
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
}

/* ===============================
   2. Modal Container
   =============================== */
.popup-container {
    background: #fff;
    width: 90%;
    max-width: 550px;
    padding: 40px;
    border-radius: 0px; /* Thoda smooth radius */
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 5px solid #4f46e5; /* Brand Color Accent */
}

.popup-overlay.active .popup-container {
    transform: translateY(0);
}

/* ===============================
   3. Header & Typography
   =============================== */
.popup-header { text-align: center; margin-bottom: 25px; }

.popup-header h2 {
    font-family: 'Segoe UI', sans-serif;
    color: #1e1b4b;
    font-size: 28px;
    margin: 15px 0 8px;
    font-weight: 800;
}

.popup-header p { color: #64748b; font-size: 15px; margin: 0; }

/* Badge Pill */
.badge-pill span {
    background: linear-gradient(135deg, #e0e7ff, #ede9fe);
    color: #4f46e5;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 2px 10px rgba(79, 70, 229, 0.15);
}

/* ===============================
   4. Floating Label Inputs
   =============================== */
.popup-form { display: flex; flex-direction: column; gap: 30px; }

.row-group { display: flex; gap: 15px; }
.row-group .input-group { flex: 1; }

.input-group { position: relative; }

.input-group input, 
.input-group textarea {
    width: 100%;
    padding: 14px 15px 14px 45px; /* Left padding for icon */
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    background: #f8fafc;
    color: #334155;
    outline: none;
    transition: 0.3s ease;
    box-sizing: border-box; /* Important for padding calculations */
}

.input-group label {
    position: absolute;
    left: 45px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: #94a3b8;
    font-size: 14px;
    pointer-events: none;
    transition: 0.3s ease;
    font-weight: 500;
}

.input-group textarea + label { top: 20px; } 

/* Focus State & Valid State */
.input-group input:focus, .input-group input:not(:placeholder-shown),
.input-group textarea:focus, .input-group textarea:not(:placeholder-shown) {
    border-color: #4f46e5;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.input-group input:focus + label, .input-group input:not(:placeholder-shown) + label,
.input-group textarea:focus + label, .input-group textarea:not(:placeholder-shown) + label {
    top: 0;
    left: 20px;
    background: #4f46e5;
    color: #fff;
    padding: 2px 10px;
    font-size: 11px;
    border-radius: 10px;
    transform: translateY(-50%);
}

/* Icons styling */
.input-group .icon {
    position: absolute;
    left: 15px;
    top: 55%;
    transform: translateY(-50%);
    color: #94a3b8;
    transition: 0.3s;
    font-size: 18px;
}
.input-group .area-icon { top: 25px; }
.input-group input:focus ~ .icon, .input-group textarea:focus ~ .icon { color: #4f46e5; }


/* ===============================
   5. Buttons
   =============================== */
.submit-btn {
    background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 10px 20px -5px rgba(79, 70, 229, 0.4);
    width: 100%; /* Full width on button usually looks better */
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(79, 70, 229, 0.5);
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 15px; right: 15px;
    background: #f1f5f9;
    border: none;
    width: 35px; height: 35px;
    border-radius: 50%;
    font-size: 20px;
    color: #64748b;
    cursor: pointer;
    transition: 0.2s;
    z-index: 10;
}
.close-btn:hover { background: #fee2e2; color: #ef4444; }

/* ===============================
   6. MOBILE RESPONSIVENESS (Optimized)
   =============================== */
@media (max-width: 768px) {
    .popup-container {
        width: 95%; /* Screen ka 95% use karega */
        padding: 25px 20px; /* Padding thodi kam */
        max-height: 85vh; /* Screen height ka 85% maximum */
        overflow-y: auto; /* Scroll bar aajayega agar form lamba hua */
        border-radius: 16px;
    }

    /* Scrollbar Styling for Mobile */
    .popup-container::-webkit-scrollbar {
        width: 4px;
    }
    .popup-container::-webkit-scrollbar-thumb {
        background-color: rgba(79, 70, 229, 0.3);
        border-radius: 10px;
    }

    /* Inputs Stack (Ek ke neeche ek) */
    .row-group { 
        flex-direction: column; 
        gap: 20px; 
    }
    
    .popup-header h2 {
        font-size: 22px; /* Font size thoda chota */
    }

    .popup-header p {
        font-size: 13px;
    }

    /* Button adjustments */
    .submit-btn {
        padding: 14px;
        font-size: 15px;
    }

    /* Close button thoda andar */
    .close-btn {
        top: 10px;
        right: 10px;
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
}

