 /* =========================================
       APP DOWNLOAD SECTION (ISOLATED)
       ID: #app-iso-section
       ========================================= */

    #app-iso-section {
        /* Variables */
        --app-bg-gradient: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
        --app-accent: #f472b6; 
        --app-text-white: #ffffff;
        --app-text-muted: #94a3b8;
        --app-btn-bg: #000000;
        --app-btn-hover: #1f2937;
        
        font-family: 'Inter', sans-serif;
        background: var(--app-bg-gradient);
        
        /* Dimensions & Layout */
        width: 100%;
        max-width: 1200px; 
        margin: 0 auto; /* Center the card */
        padding: 34px 20px; 
        
        /* 3D Look & Borders */
        border-radius: 32px; /* High border radius */
        border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle stroke */
        
        /* Layered Shadows for 3D Effect */
        box-shadow: 
            0 50px 100px -20px rgba(0, 0, 0, 0.5), /* Deep atmospheric shadow */
            0 30px 60px -30px rgba(0, 0, 0, 0.6),  /* Closer grounded shadow */
            inset 0 1px 0 rgba(255, 255, 255, 0.15); /* Top lighting highlight */

        color: var(--app-text-white);
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #app-iso-section * { box-sizing: border-box; }

    /* Background decoration */
    #app-iso-section::before {
        content: '';
        position: absolute;
        top: -20%;
        right: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .app-container {
        width: 100%;
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        align-items: center;
        gap: 20px;
        position: relative;
        z-index: 1;
    }

    /* --- LEFT CONTENT --- */
    .app-content {
        max-width: 600px;
        padding-left: 20px;
    }

    .app-tag {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.15);
        color: #e2e8f0;
        padding: 4px 12px;
        border-radius: 99px;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 12px;
        backdrop-filter: blur(4px);
    }

    .app-title {
        font-size: clamp(1.8rem, 3vw, 2.8rem);
        font-weight: 800;
        line-height: 1.1;
        margin: 0 0 12px 0;
        background: linear-gradient(to right, #fff, #c7d2fe);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .app-desc {
        font-size: 1rem;
        line-height: 1.5;
        color: var(--app-text-muted);
        margin-bottom: 24px;
        max-width: 450px;
    }

    .app-buttons {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }
    .app-buttons1 {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        margin-top: 40px;
    }

    /* Store Button Style */
    .store-btn {
        display: flex;
        align-items: center;
        gap: 10px;
        background-color: var(--app-btn-bg);
        color: white;
        padding: 8px 16px;
        border-radius: 10px;
        text-decoration: none;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        border: 1px solid rgba(255,255,255,0.15);
        min-width: 140px;
    }

    .store-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px -5px rgba(0,0,0,0.3);
        border-color: rgba(255,255,255,0.3);
    }

    .store-icon {
        width: 22px;
        height: 22px;
    }

    .store-text {
        display: flex;
        flex-direction: column;
        line-height: 1;
    }

    .store-text small { font-size: 0.6rem; opacity: 0.8; margin-bottom: 2px; text-transform: uppercase; }
    .store-text span { font-size: 0.85rem; font-weight: 600; }

    /* --- RIGHT IMAGE (Phone Mockup) --- */
    .app-image-wrapper {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 400px; /* Reduced height to fit 468px total */
    }

    /* Glow behind phone */
    .app-glow {
        position: absolute;
        width: 220px;
        height: 220px;
        background: radial-gradient(circle, rgba(124, 58, 237, 0.4), transparent 70%);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        filter: blur(40px);
        z-index: 0;
    }

    .phone-frame {
        width: 200px; /* Scaled down width */
        height: 400px; /* Scaled down height */
        background: #0f172a;
        border-radius: 30px;
        padding: 8px;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
        border: 5px solid #1e293b;
        position: relative;
        overflow: hidden;
        z-index: 2;
        /* Floating Animation */
        animation: floatPhone 6s ease-in-out infinite;
    }

    /* Notch */
    .phone-frame::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 20px;
        background: #1e293b;
        border-radius: 0 0 12px 12px;
        z-index: 10;
    }

    .phone-screen {
        width: 100%;
        height: 100%;
        background-color: #fff;
        border-radius: 22px;
        overflow: hidden;
        position: relative;
    }

    .phone-img {
        width: 100%;
        height: 100%;
        /* object-fit: cover; */
    }

    /* Floating Badge */
    .app-float-badge {
        position: absolute;
        bottom: 60px;
        left: 0px; /* Tucked closer */
        background: rgba(30, 41, 59, 0.9);
        backdrop-filter: blur(12px);
        padding: 8px 14px;
        border-radius: 12px;
        border: 1px solid rgba(255,255,255,0.1);
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        display: flex;
        align-items: center;
        gap: 8px;
        animation: floatBadge 5s ease-in-out infinite;
        animation-delay: 1s;
        z-index: 3;
    }

    .badge-icon {
        background: #10b981;
        color: white;
        padding: 5px;
        border-radius: 50%;
        display: flex;
    }

    .badge-text strong { display: block; font-size: 0.8rem; color: #fff; }
    .badge-text span { font-size: 0.65rem; color: #94a3b8; }

    @keyframes floatPhone {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

    @keyframes floatBadge {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(8px); }
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 900px) {
        #app-iso-section { padding: 50px 20px; }
        
        .app-container {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 30px;
        }

        .app-content { margin: 0 auto; padding-left: 0; }
        .app-desc { margin-left: auto; margin-right: auto; }
        .app-buttons { justify-content: center; }
        
        .app-image-wrapper { height: 350px; margin-top: 10px; }
        .phone-frame { width: 175px; height: 350px; }
        
        .app-float-badge { 
            left: 50%; 
            transform: translateX(-50%); 
            bottom: -10px; 
            width: max-content;
            background: rgba(30, 41, 59, 0.95);
        }
        
        @keyframes floatBadge {
            0%, 100% { transform: translate(-50%, 0); }
            50% { transform: translate(-50%, 6px); }
        }
    }



        /* button design  */


        /* Renamed from Uiverse.io by Spacious74 */

.action-btn {
  font-size: 1.4em;
  padding: 0.6em 0.8em;
  border-radius: 0.5em;
  border: none;
  background-color: #000;
  color: #fff;
  cursor: pointer;
  box-shadow: 2px 2px 3px #000000b4;
}

.glow-wrapper {
  position: relative;
  padding: 3px;
  background: linear-gradient(90deg, #03a9f4, #f441a5);
  border-radius: 0.9em;
  transition: all 0.4s ease;
}

.glow-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 0.9em;
  z-index: -10;
  filter: blur(0);
  transition: filter 0.4s ease;
}

.glow-wrapper:hover::before {
  background: linear-gradient(90deg, #03a9f4, #f441a5);
  filter: blur(1.2em);
}

.glow-wrapper:active::before {
  filter: blur(0.2em);
}




/* another button  */


/* Renamed from Uiverse.io by gharsh11032000 */

.motion-pill-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 16px 36px;
  border: 4px solid;
  border-color: transparent;
  font-size: 16px;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 600;
  color: greenyellow;
  box-shadow: 0 0 0 2px greenyellow;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.motion-pill-btn svg {
  position: absolute;
  width: 24px;
  fill: greenyellow;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.motion-pill-btn .icon-right {
  right: 16px;
}

.motion-pill-btn .icon-left {
  left: -25%;
}

.motion-pill-btn .pulse-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: greenyellow;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.motion-pill-btn .btn-label {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.motion-pill-btn:hover {
  box-shadow: 0 0 0 12px transparent;
  color: #212121;
  border-radius: 12px;
}

.motion-pill-btn:hover .icon-right {
  right: -25%;
}

.motion-pill-btn:hover .icon-left {
  left: 16px;
}

.motion-pill-btn:hover .btn-label {
  transform: translateX(12px);
}

.motion-pill-btn:hover svg {
  fill: #212121;
}

.motion-pill-btn:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px greenyellow;
}

.motion-pill-btn:hover .pulse-bg {
  width: 220px;
  height: 220px;
  opacity: 1;
}


.force-white,
.force-white span,
.force-white i {
  color: #ffffff !important;
}

.force-white i svg {
  stroke: #ffffff !important;
}



/* 3rd  */

/* Renamed version */

.ripple-btn {
  background: transparent;
  position: relative;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgb(40, 144, 241);
  border-radius: 25px;
  outline: none;
  overflow: hidden;
  color: rgb(40, 144, 241);
  transition: color 0.3s 0.1s ease-out;
  text-align: center;
}

.ripple-btn .btn-text {
  margin: 10px;
}

.ripple-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  content: '';
  border-radius: 50%;
  display: block;
  width: 20em;
  height: 20em;
  left: -5em;
  text-align: center;
  transition: box-shadow 0.5s ease-out;
  z-index: -1;
}

.ripple-btn:hover {
  color: #fff;
  border: 1px solid rgb(40, 144, 241);
}

.ripple-btn:hover::before {
  box-shadow: inset 0 0 0 10em rgb(40, 144, 241);
}



/* 4th code  */


.del {
  position: relative;
  top: 0;
  left: 0;
  width: 160px;
  height: 50px;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.del div {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  box-shadow: 4px 4px 6px 0 rgba(255,255,255,.5),
              -4px -4px 6px 0 rgba(116, 125, 136, .5), 
    inset -4px -4px 6px 0 rgba(255,255,255,.2),
    inset 4px 4px 6px 0 rgba(0, 0, 0, .4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  letter-spacing: 1px;
  color: #000;
  z-index: 1;
  transition: .6s;
}

.del:hover div {
  letter-spacing: 4px;
  color: #fff;
}

.del::after,
.del::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -99999;
  transition: all .4s;
}

.del::after {
  transform: translate(15px, 15px);
  width: 35px;
  height: 35px;
  background: #000;
  backdrop-filter: blur(5px);
  border-radius: 10px;
}

.del:hover::after {
  border-radius: 10px;
  transform: translate(0, 0);
  width: 100%;
  height: 100%;
}




.skew-fill-btn {
  width: 6.5em;
  height: 2.3em;
  margin: 0.5em;
  background: black;
  color: white;
  border: none;
  border-radius: 0.625em;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.skew-fill-btn:hover {
  color: black;
}

.skew-fill-btn::after {
  content: "";
  background: white;
  position: absolute;
  z-index: -1;
  left: -20%;
  right: -20%;
  top: 0;
  bottom: 0;
  transform: skewX(-45deg) scale(0, 1);
  transition: all 0.5s;
}

.skew-fill-btn:hover::after {
  transform: skewX(-45deg) scale(1, 1);
  transition: all 0.5s;
}



    
        /* --- Isolated Banner Styles Start Here --- */
        .pricing-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            /* Requested Gradient Background using CSS variables */
            background: linear-gradient(to right, #000d31, #014dc8);
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
            z-index: 999999; /* Maximized to ensure it sits visually above any other bottom elements */
            padding-bottom: env(safe-area-inset-bottom); /* Ensures it doesn't get hidden under iOS/Android swipe bars */
        }

        .banner-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 10px 16px; /* Reduced padding for a shorter banner height */
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: nowrap; /* Prevent wrapping to keep horizontal layout on mobile */
            gap: 12px;
        }

         .banner-container12 {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: nowrap; /* Prevent wrapping to keep horizontal layout on mobile */
            gap: 12px;
        }

        .pricing-info {
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

        .price-row {
            display: flex;
            align-items: baseline;
            gap: 8px; /* Tighter gap */
            flex-wrap: nowrap;
        }

        /* Replaced spans with divs */
        .current-price {
            font-size: 24px; /* Slightly reduced */
            font-weight: 700;
            color: #ffffff;
            margin: 0;
            line-height: 1;
            letter-spacing: 0.5px;
            white-space: nowrap; /* Prevents text from breaking */
        }

        .original-price {
            font-size: 14px; /* Slightly reduced */
            color: rgba(255, 255, 255, 0.75);
            text-decoration: line-through;
            margin: 0;
            line-height: 1;
            white-space: nowrap;
        }

        .deadline-text {
            font-size: 12px; /* Slightly reduced */
            color: rgba(255, 255, 255, 0.95);
            margin: 4px 0 0 0; /* Tighter margin */
            white-space: nowrap;
        }

        .register-btn {
            padding: 10px 24px; /* Reduced button height */
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            background: linear-gradient(93deg, #0d9488 10.65%, #f97316 89.35%); /* Updated gradient */
            color: #ffffff; /* White text for better contrast */
            border: none;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            white-space: nowrap; /* Keeps button text on one line */
            flex-shrink: 0; /* Prevents the button from being crushed on small screens */
            
            /* Required for reflective shine effect */
            position: relative;
            overflow: hidden;
        }

        /* Moving reflective shine (lightning) effect */
        .register-btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            /* Made the white glare slightly sharper and brighter */
            background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
            transform: skewX(-25deg);
            animation: shine-sweep 4s infinite; /* 4 second total cycle */
        }

        @keyframes shine-sweep {
            0% { left: -100%; }
            25% { left: 200%; } /* Fast sweep: takes 25% of 4s (exactly 1 second) */
            100% { left: 200%; } /* Pause between sweeps for the remaining 3 seconds */
        }

        .register-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        }

        .register-btn:active {
            transform: translateY(0);
        }

        /* Responsive adjustments for mobile: Keeps elements horizontal */
        @media (max-width: 480px) {
            .banner-container {
                padding: 8px 12px; /* Even tighter for small mobile screens */
                gap: 8px;
            }
            
            .current-price {
                font-size: 20px;
            }
            
            .original-price {
                font-size: 12px;
            }
            
            .deadline-text {
                font-size: 11px;
                margin: 2px 0 0 0;
            }
            
            .register-btn {
                padding: 8px 16px;
                font-size: 13px;
            }
        }
        /* --- Isolated Banner Styles End Here --- */

        /* --- Isolated Banner Styles End Here --- */

        
        .ciso-head {
            font-size: 16px;
        }

        .ciso-text {
            margin-bottom: 5px;
        }

/* way this program vala section of cdpo  */


        /* Scoped styles using a unique ID to prevent conflicts with your project's global CSS */
        #program-matrix-wrapper-unique {
            --matrix-font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --matrix-bg-color: #ffffff;
            --matrix-text-main: #333333;
            --matrix-text-muted: #64748b;
            --matrix-text-slate: #475569;
            --matrix-text-dark: #0f172a;
            --matrix-border-color: #e2e8f0;
            --matrix-gradient: linear-gradient(93deg, #0d9488 10.65%, #f97316 89.35%);
            --matrix-accent: #0d9488;
            
            font-family: var(--matrix-font-main);
            background-color: var(--matrix-bg-color);
            color: var(--matrix-text-main);
            line-height: 1.5;
            padding: 2rem;
            box-sizing: border-box;
        }

        #program-matrix-wrapper-unique * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        #program-matrix-wrapper-unique .matrix-section {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        /* Header Styling */
        #program-matrix-wrapper-unique .header {
            text-align: left;
        }

        #program-matrix-wrapper-unique .header h2 {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            margin-bottom: 0.5rem;
            background: var(--matrix-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }

        #program-matrix-wrapper-unique .header p {
            color: var(--matrix-text-muted);
            font-size: 1rem;
            max-width: 600px;
        }

        /* The Matrix Grid */
        #program-matrix-wrapper-unique .matrix-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background-color: var(--matrix-border-color);
            border: 1px solid var(--matrix-border-color);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        /* Individual Card */
        #program-matrix-wrapper-unique .matrix-item {
            background-color: #ffffff;
            padding: 2rem 1.5rem;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            position: relative;
            text-decoration: none;
        }

        /* Gradient accent line on hover */
        #program-matrix-wrapper-unique .matrix-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--matrix-gradient);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        #program-matrix-wrapper-unique .matrix-item:hover {
            background-color: #f8faff;
        }

        #program-matrix-wrapper-unique .matrix-item:hover::before {
            transform: scaleX(1);
        }

        /* Title Styling */
        #program-matrix-wrapper-unique .matrix-item h3 {
            font-size: 1.05rem;
            color: var(--matrix-text-dark);
            margin-bottom: 0.75rem;
            font-weight: 600;
            display: flex;
            align-items: center;
        }

        /* The Pointer Arrow (Strong tag used instead of Span) */
        #program-matrix-wrapper-unique .pointer {
            color: var(--matrix-accent);
            margin-right: 8px;
            font-weight: bold;
            font-family: monospace;
            font-size: 1.2rem;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: inline-block; /* Ensure transform works */
        }

        /* Slide the pointer forward on hover and apply gradient */
        #program-matrix-wrapper-unique .matrix-item:hover .pointer {
            transform: translateX(6px);
            background: var(--matrix-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Paragraph Text */
        #program-matrix-wrapper-unique .matrix-item p {
            color: var(--matrix-text-slate);
            font-size: 0.9rem;
            margin: 0;
            padding-left: 1.6rem;
            line-height: 1.6;
        }

        /* Responsive Breakpoints */
        @media (max-width: 900px) {
            #program-matrix-wrapper-unique .matrix-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            #program-matrix-wrapper-unique .matrix-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            #program-matrix-wrapper-unique {
                padding: 1rem 0.5rem;
            }
            #program-matrix-wrapper-unique .matrix-section {
                gap: 1.25rem; 
            }
            #program-matrix-wrapper-unique .header h2 {
                font-size: 1.5rem;
            }
            #program-matrix-wrapper-unique .header p {
                font-size: 0.85rem;
            }
            #program-matrix-wrapper-unique .matrix-item {
                padding: 1rem 0.75rem;
            }
            #program-matrix-wrapper-unique .matrix-item h3 {
                font-size: 0.85rem;
                margin-bottom: 0.4rem; 
                align-items: flex-start;
            }
            #program-matrix-wrapper-unique .matrix-item p {
                font-size: 0.75rem;
                padding-left: 1rem; 
                line-height: 1.4; 
            }
            #program-matrix-wrapper-unique .pointer {
                margin-right: 4px; 
                font-size: 1rem;
                line-height: 1.1;
            }
        }




         /* --- Premium Announcement Bar Styles --- */
        :root {
            --banner-bg: #0f172a; 
            --banner-text: #f8fafc;
            --bar-height: 46px;
        }

        .premium-banner {
            background: var(--banner-bg);
            height: var(--bar-height);
            color: var(--banner-text);
            position: relative; /* Keeps it at the top, scrolls away normally */
            display: flex;
            align-items: center;
            overflow: hidden;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            width: 100%;
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; /* Fallback font */
        }

        /* Animated Background Shapes */
        .premium-banner::before,
        .premium-banner::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            z-index: 0;
            pointer-events: none;
            animation: floatShape 6s ease-in-out infinite alternate;
        }

        .premium-banner::before {
            width: 150px;
            height: 150px;
            top: -75px;
            left: 15%;
            background: linear-gradient(93deg, rgba(81, 53, 255, 0.15), rgba(255, 84, 85, 0.15));
        }

        .premium-banner::after {
            width: 250px;
            height: 250px;
            bottom: -150px;
            right: 10%;
            background: linear-gradient(93deg, rgba(255, 84, 85, 0.12), rgba(81, 53, 255, 0.12));
            animation-duration: 8s;
            animation-direction: alternate-reverse;
        }

        @keyframes floatShape {
            0% { transform: translateY(0) scale(1); }
            100% { transform: translateY(15px) scale(1.05); }
        }

        /* Continuous Right-to-Left Track */
        .marquee-track {
            display: inline-flex;
            white-space: nowrap;
            animation: scrollMarquee 25s linear infinite;
            position: relative; 
            z-index: 1;
        }

        .premium-banner:hover .marquee-track {
            animation-play-state: paused;
        }

        @keyframes scrollMarquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .marquee-content {
            display: inline-flex;
            align-items: center;
        }

        .offer-item {
            display: inline-flex;
            align-items: center;
            font-size: 0.85rem;
            font-weight: 400;
            letter-spacing: 0.5px;
            padding: 0 15px;
        }

        .offer-item strong {
            font-weight: 600;
            color: #ffffff;
            margin: 0 6px;
        }

        /* Elegant Star Divider */
        strong.divider {
            color: rgba(255, 255, 255, 0.3);
            font-size: 0.9rem;
            margin: 0 15px;
            user-select: none;
            font-weight: normal;
        }

        /* Gradient Promo Button */
        .promo-btn {
            background: linear-gradient(93deg, #0d9488 10.65%, #f97316 89.35%);
            color: #ffffff;
            border: none;
            padding: 4px 14px;
            margin-left: 12px;
            border-radius: 6px;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            box-shadow: 0 2px 8px rgba(81, 53, 255, 0.25);
        }

        .promo-btn:hover {
            box-shadow: 0 4px 15px rgba(255, 84, 85, 0.4);
            transform: translateY(-2px);
        }

        .promo-btn:active {
            transform: translateY(1px);
        }

         /* Elegant White Toast Notification */
        .toast {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.9);
            background: #ffffff;
            color: #1f2937;
            padding: 14px 28px;
            border-radius: 50px; /* Sleek pill shape */
            font-size: 1.05rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 1000;
            /* Premium soft, layered shadow */
            box-shadow: 0 20px 40px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .toast.show {
            opacity: 1;
            visibility: visible;
            transform: translate(-50%, -50%) scale(1);
        }

        /* Gradient Checkmark Badge */
        strong.toast-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            background: linear-gradient(93deg, #0d9488 10.65%, #f97316 89.35%);
            color: #ffffff;
            border-radius: 50%;
            font-size: 0.85rem;
            box-shadow: 0 2px 6px rgba(81, 53, 255, 0.3);
        }








              /* ========================================== */
        /* ISOLATED CSS of speakeer           */
        /* ========================================== */
        .isolated-program-module {
            --bg-dark: #0a0a0a;
            --bg-card-dark: #121214;
            --text-white: #ffffff;
            --text-black: #000000;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --gray-300: #d1d5db;
            --gray-400: #9ca3af;
            --gray-500: #6b7280;
            --gray-600: #4b5563;
            --gray-700: #374151;
            --gray-800: #1f2937;
            --gray-900: #111827;
            --gradient: linear-gradient(93deg, #0d9488 10.65%, #f97316 89.35%);

            font-family: 'Inter', sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-white);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }

        /* Scope resets to this module only */
        .isolated-program-module *,
        .isolated-program-module *::before,
        .isolated-program-module *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .isolated-program-module a {
            text-decoration: none;
        }

        .isolated-program-module .font-serif-italic {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-weight: 500;
        }

        /* ========================================== */
        /* PROGRAM DETAILS SECTION                    */
        /* ========================================== */
        .isolated-program-module .program-section {
            width: 100%;
            padding: 2.5rem 1rem;
            background: var(--gradient);
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .isolated-program-module .program-container {
            width: 100%;
            max-width: 1200px;
            display: grid;
            grid-template-columns: 7fr 5fr;
            gap: 2rem;
            align-items: stretch;
        }

        .isolated-program-module .program-image-wrap {
            position: relative;
            width: 100%;
            min-height: 340px;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
        }

        .isolated-program-module .program-image-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }

        .isolated-program-module .program-image-wrap:hover img {
            transform: scale(1.05);
        }

        .isolated-program-module .program-card {
            background-color: var(--text-white);
            border-radius: 1.5rem;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: var(--text-black);
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
        }

        .isolated-program-module .program-title {
            font-size: 1.5rem;
            font-weight: 600;
            letter-spacing: -0.025em;
            margin-bottom: 1.5rem;
        }

        .isolated-program-module .program-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            margin-bottom: 1.5rem;
        }

        .isolated-program-module .grid-item {
            padding-bottom: 1rem;
        }
        
        .isolated-program-module .grid-item.border-b { border-bottom: 1px solid var(--gray-100); }
        .isolated-program-module .grid-item.border-r { border-right: 1px solid var(--gray-100); padding-right: 1rem; }
        .isolated-program-module .grid-item.pt { padding-top: 1rem; }
        .isolated-program-module .grid-item.pl { padding-left: 1.5rem; }

        .isolated-program-module .grid-label {
            font-size: 9px;
            color: var(--gray-500);
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 6px;
        }

        .isolated-program-module .grid-value {
            font-size: 1rem;
            font-weight: 700;
            color: var(--gray-900);
            line-height: 1.3;
        }

        .isolated-program-module .grid-subtext {
            font-size: 10px;
            color: var(--gray-500);
            margin-top: 4px;
            line-height: 1.2;
            max-width: 140px;
        }

        .isolated-program-module .program-buttons {
            display: flex;
            gap: 0.75rem;
            margin-top: auto;
        }

        .isolated-program-module .btn {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-size: 13px;
            font-weight: 700;
            padding: 0.75rem 1.5rem;
            border-radius: 9999px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .isolated-program-module .btn-primary {
            background-color: #111;
            color: var(--text-white);
            border: none;
        }

        .isolated-program-module .btn-primary:hover {
            background-color: var(--text-black);
        }

        .isolated-program-module .btn-secondary {
            background-color: var(--text-white);
            color: var(--text-black);
            border: 2px solid var(--gray-200);
        }

        .isolated-program-module .btn-secondary:hover {
            background-color: #f9fafb;
        }

        .isolated-program-module .btn svg {
            width: 14px;
            height: 14px;
        }

        /* ========================================== */
        /* INDUSTRY STALWARTS SECTION                 */
        /* ========================================== */
        .isolated-program-module .stalwarts-section {
            width: 100%;
            background-color: #000000;
            color: var(--text-white);
            display: flex;
            justify-content: center;
        }

        .isolated-program-module .stalwarts-container {
            width: 100%;
            max-width: 1400px;
            padding: 4rem 1.5rem;
            overflow: hidden;
        }

        .isolated-program-module .stalwarts-headline {
            font-size: 2.6rem;
            font-weight: 300;
            letter-spacing: -0.025em;
            line-height: 1.1;
            /* margin-bottom: 4rem; */
            color: #ffffff
        }
        .isolated-program-module .stalwarts-headline2 {
            font-size: 2.2rem;
            font-weight: 300;
            letter-spacing: -0.025em;
            line-height: 1.1;
            /* margin-bottom: 4rem; */
            color: #ffffff
        }

        .isolated-program-module .stalwarts-headline strong {
            color: var(--gray-200);
        }

        .isolated-program-module .stalwarts-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            margin-bottom: 5rem;
        }

        .isolated-program-module .stalwarts-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            font-size: 1rem;
            color: var(--gray-400);
        }

        .isolated-program-module .list-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .isolated-program-module .list-icon {
            margin-top: 4px;
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background-color: var(--gray-800);
            border: 1px solid var(--gray-700);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .isolated-program-module .list-icon svg {
            width: 14px;
            height: 14px;
            color: var(--gray-300);
        }

        .isolated-program-module .list-text strong {
            color: var(--text-white);
            font-weight: 500;
        }

        .isolated-program-module .video-box {
            position: relative;
            width: 100%;
            border-radius: 1.5rem;
            overflow: hidden;
            aspect-ratio: 16 / 9;
            cursor: pointer;
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
            border: 1px solid var(--gray-800);
        }

        .isolated-program-module .video-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.7;
            transition: opacity 0.7s ease;
        }

        .isolated-program-module .video-box:hover img {
            opacity: 1;
        }

        .isolated-program-module .play-btn-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .isolated-program-module .play-circle {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: transform 0.3s ease;
        }

        .isolated-program-module .video-box:hover .play-circle {
            transform: scale(1.1);
        }

        .isolated-program-module .play-circle svg {
            width: 32px;
            height: 32px;
            color: var(--text-white);
            margin-left: 4px;
        }

        .isolated-program-module .disclaimer {
            font-size: 10px;
            color: var(--gray-600);
            margin-top: 2rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        /* ========================================== */
        /* CAROUSEL                                   */
        /* ========================================== */
        .isolated-program-module .carousel-wrapper {
            position: relative;
            width: 100%;
            overflow: hidden;
            margin-top: 5rem;
        }

        .isolated-program-module .carousel-container {
            display: flex;
            gap: 1.5rem;
            overflow-x: auto;
            width: 100%;
            padding: 1rem 0;
            cursor: grab;
            user-select: none;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE/Edge */
        }

        .isolated-program-module .carousel-container::-webkit-scrollbar {
            display: none; /* Chrome/Safari */
        }

        .isolated-program-module .carousel-container:active {
            cursor: grabbing;
        }

        .isolated-program-module .card {
            flex-shrink: 0;
            width: 280px;
            border-radius: 1rem;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            background-color: var(--bg-card-dark);
            border: 1px solid rgba(31, 41, 55, 0.5);
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
        }

        .stalwarts-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

        .isolated-program-module .card-img-container {
            height: 13rem;
            width: 100%;
        }

        .isolated-program-module .card-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            pointer-events: none;
        }

        .isolated-program-module .card-info {
            padding: 1.25rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .isolated-program-module .card-name {
            font-weight: 700;
            color: var(--text-white);
            font-size: 1.125rem;
        }

        .isolated-program-module .card-role {
            font-size: 16px;
            color: var(--gray-400);
            margin-top: 4px;
        }

        .isolated-program-module .card-company {
            margin-top: 1rem;
            margin-bottom: 0.5rem;
            font-weight: 900;
            color: var(--gray-200);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .isolated-program-module .card-footer {
            margin-top: auto;
            padding-top: 1rem;
            border-top: 1px solid var(--gray-800);
        }

        .isolated-program-module .card-topic {
            font-size: 12px;
            color: var(--gray-500);
            font-style: italic;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* ========================================== */
        /* RESPONSIVE QUERIES                         */
        /* ========================================== */
        @media (max-width: 1024px) {
            .isolated-program-module .program-container {
                grid-template-columns: 1fr;
            }
            .isolated-program-module .stalwarts-content {
                gap: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .isolated-program-module .program-section { padding: 2rem 1.5rem; }
            .isolated-program-module .program-image-wrap { min-height: 250px; }
            .isolated-program-module .program-card { padding: 1.5rem; }
            .isolated-program-module .program-title { font-size: 1.375rem; }
            
            .isolated-program-module .stalwarts-container { padding: 4rem 1.5rem; }
            .isolated-program-module .stalwarts-headline { font-size: 2.5rem; margin-bottom: 2.5rem; }
            .isolated-program-module .stalwarts-content { grid-template-columns: 1fr; }
            .isolated-program-module .stalwarts-list-wrap { order: 2; }
            .isolated-program-module .stalwarts-video-wrap { order: 1; }
            
            .isolated-program-module .program-buttons { flex-direction: column; }
            
            .isolated-program-module .disclaimer { text-align: center; }
        }

        @media (max-width: 640px) {
            .isolated-program-module .program-grid { gap: 0; }
            .isolated-program-module .grid-label { font-size: 9px; }
            .isolated-program-module .grid-value { font-size: 0.875rem; }
            .isolated-program-module .grid-item.pl { padding-left: 1rem; }
            
            .isolated-program-module .stalwarts-headline { font-size: 1.875rem; }
            .isolated-program-module .stalwarts-list { font-size: 0.875rem; }
            
            .isolated-program-module .card { width: 240px; }
            .isolated-program-module .card-img-container { height: 12rem; }
            .isolated-program-module .card-name { font-size: 1rem; }
            .isolated-program-module .card-role, 
            .isolated-program-module .card-topic { font-size: 11px; }
            .isolated-program-module .card-company { font-size: 12px; }
        }

