/* Auth Modals (Glassmorphism) */
.modal { position: fixed; inset: 0; display: none; z-index: 1000; }
.modal.show { display: block; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(10, 10, 18, 0.35); backdrop-filter: blur(6px); }
.modal-dialog { position: relative; margin: 7vh auto; width: min(92%, 520px);
    background: #c200f06b;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    color: #fff; border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.25);
    overflow: hidden; border: 1px solid rgba(255,255,255,0.22);
}
.modal-header { padding: 20px 24px 0; }
.modal-header h3 { margin: 0; font-size: 22px; letter-spacing: .2px; }
.modal-header p { margin: 6px 0 12px; color: #e6e6f0; opacity: .85; font-size: 14px; }
.modal-close { position: absolute; top: 10px; right: 12px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.22); color: #fff; border-radius: 10px; width: 36px; height: 36px; font-size: 22px; line-height: 1; cursor: pointer; opacity: 0.9; -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); }
.modal-close:hover { transform: scale(1.04); box-shadow: 0 6px 18px rgba(194,0,240,0.25); }
.modal-form { padding: 0 24px 22px; }
.modal-form .field { position: relative; margin: 14px 0; }
.modal-form .field input { width: 100%; padding: 14px 12px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.28); background: rgba(255,255,255,0.12); color: #fff; outline: none; transition: border-color .2s, background .2s, box-shadow .2s; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.modal-form .field input:focus { border-color: #C200F0; background: rgba(255,255,255,0.18); box-shadow: 0 0 0 4px rgba(194,0,240,0.18); }
.modal-form .field label { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: #f0eaff; opacity: .88; font-size: 13px; pointer-events: none; transition: all .15s ease; background: transparent; padding: 0 6px; }
.modal-form .field input:not(:placeholder-shown) + label,
.modal-form .field input:focus + label { top: -9px; font-size: 11px; color: #f6e9ff; background: rgba(255,255,255,0.08); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border-radius: 6px; }
.modal-submit { width: 100%; margin-top: 8px; border-radius: 14px; position: relative; overflow: hidden; }
.modal-submit { background: linear-gradient(135deg, #6B00B6 0%, #C200F0 45%, #FF004C 100%); border: 0; }
.modal-submit::before { content: ""; position: absolute; inset: -2px; background: radial-gradient(120px 60px at var(--mx,50%) -20%, rgba(255,255,255,0.45), transparent 40%); opacity: 0; transition: opacity .2s; }
.modal-submit:hover::before { opacity: 1; }
.modal-submit:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(255,0,76,0.25), 0 6px 16px rgba(194,0,240,0.22); }
.modal-switch { margin: 12px 0 0; font-size: 13px; color: #f0eaff; text-align: center; opacity: .9; }
.modal-switch a { color: #ffd1ff; text-decoration: underline; }

/* Creative buttons in modals: subtle magnetic effect */
.modal-submit.magnetic { will-change: transform; transition: transform .18s ease; }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 15px; /* Standardized paragraph size */
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
    scroll-behavior: smooth;
    overflow-x: hidden;
    /* Enhanced mobile performance */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Typography Standards */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 1rem 0;
    color: inherit;
}

p, div, span, li, td, th, label, input, textarea, select, button {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

/* Mobile-first responsive enhancements */
@media (max-width: 768px) {
    body {
        /* Optimize for mobile touch */
        touch-action: manipulation;
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
    
    /* Ensure all interactive elements are touch-friendly */
    button, .btn, a, input, select, textarea {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Improve mobile scrolling */
    * {
        -webkit-overflow-scrolling: touch;
    }
}

/* Delight: gradient headings utility */
.gradient-heading {
    background: linear-gradient(135deg, #C200F0 0%, #FF004C 50%, #C6FF00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Subtle parallax container helper */
.parallax-wrap { perspective: 800px; transform-style: preserve-3d; }

/* Magnetic button effect */
.magnetic {
    position: relative;
    will-change: transform;
    transition: transform 0.12s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation bar */
.navbar {
    background: #6B00B6;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scrolled navigation state -> make two floating bars */
.navbar.scrolled {
    background: transparent;
    box-shadow: none;
    margin: 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Offset in-page anchor scrolling to clear the fixed navbar */
[id] {
    scroll-margin-top: 90px;
}

@media (max-width: 768px) {
    [id] {
        scroll-margin-top: 80px;
    }
}

.navbar.scrolled .nav-container {
    padding: 0 10px;
}

/* Left and right wrappers become floating bars when scrolled */
.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.navbar.scrolled .nav-left,
.navbar.scrolled .nav-right {
    background: #e9edf7;
    border-radius: 12px;
    padding: 10px 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    backdrop-filter: saturate(1.2) blur(2px);
    margin-top:10px;
}

.navbar.scrolled .nav-left { margin-left: 20px; }
.navbar.scrolled .nav-right { margin-right: 20px; }

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
}

/* Navigation divider */
.nav-divider {
    width: 0.5px;
    height: 32px;
    background: rgb(255, 255, 255);
    margin: 0 8px;
    transition: all 0.4s ease;
}

.navbar.scrolled .nav-divider {
    background: rgba(0, 0, 0, 0.15);
    height: 28px;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: all 0.4s ease;
}

.navbar.scrolled .logo-img { height: 35px; }

/* Logo switching on scroll */
.logo-scrolled {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar.scrolled .logo-default {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar.scrolled .logo-scrolled {
    display: block;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.logo-text {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: color 0.4s ease;
}

.navbar.scrolled .logo-text { color: #1a1a1a; }

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Navigation items */
.nav-item {
    position: relative;
}

.dropdown-toggle {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.navbar.scrolled .dropdown-toggle { color: #1a1a1a; }

.dropdown-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .dropdown-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.dropdown-toggle i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Enhanced Dropdown menus */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    list-style: none;
    padding: 12px 0;
    margin-top: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 16px;
    height: 16px;
    background: #ffffff;
    transform: rotate(45deg);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.dropdown-menu li {
    margin: 4px 12px;
    border-radius: 12px;
    overflow: hidden;
}

.dropdown-menu li:last-child {
    margin-bottom: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.dropdown-menu a:hover::before {
    left: 100%;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #007bff;
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
}

.dropdown-menu a i:first-child {
    font-size: 18px;
    color: #007bff;
    transition: all 0.3s ease;
    min-width: 20px;
}

.dropdown-menu a:hover i:first-child {
    transform: scale(1.2);
    color: #0056b3;
}

.dropdown-menu a span {
    flex: 1;
    font-weight: 500;
}

.dropdown-menu a .arrow-right {
    font-size: 16px;
    color: #6c757d;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.dropdown-menu a:hover .arrow-right {
    transform: translateX(4px);
    color: #007bff;
    opacity: 1;
}

/* Reuse dropdown hover sweep effect for right-side nav buttons, footer button, and social links */
.nav-right .btn,
.footer .newsletter-btn,
.footer .social-link {
    position: relative;
    overflow: hidden;
}

.nav-right .btn::before,
.footer .newsletter-btn::before,
.footer .social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.1), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.nav-right .btn:hover::before,
.footer .newsletter-btn:hover::before,
.footer .social-link:hover::before {
    left: 100%;
}

/* Add the same translateX hover motion from dropdowns */
.nav-right .btn:hover {
    transform: translateX(8px) translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
}

.footer .newsletter-btn:hover {
    transform: translateX(8px) translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
}

.footer .social-link:hover {
    transform: translateX(8px) translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
}

/* Right side buttons -> new variants */
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    padding: 10px 18px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-primary {
    background: #E2004C;
    color: #ffffff;
}

.btn-primary:hover {
    background: #E2004C;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.navbar.scrolled .btn-primary {
    background: #f8f9fa;
    color: #1a1a1a;
    border: 1px solid #e9ecef;
}

.navbar.scrolled .btn-primary:hover {
    background: #e9ecef;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background: #6c757d;
    color: #ffffff;
}

.btn-secondary:hover {
    background: #545b62;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.navbar.scrolled .btn-secondary {
    background: #f8f9fa;
    color: #1a1a1a;
    border: 1px solid #e9ecef;
}

.navbar.scrolled .btn-secondary:hover {
    background: #e9ecef;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-ghost { background: transparent; color: #f5f5f5; }
.btn-ghost:hover { background: rgba(255,255,255,0.12); }

.btn-outline { background: transparent; color: #f5f5f5; border: 1px solid rgba(255,255,255,0.25); }
.btn-outline:hover { background: rgba(255,255,255,0.08); }

.btn-cta { background: linear-gradient(90deg, #E2004C, #e2004b49); color: #ffffff; box-shadow: 0 8px 20px rgba(29,78,216,0.35); position: relative; }
.btn-cta::after { content:''; position:absolute; inset:0; border-radius: 10px; box-shadow: inset 0 0 0 2px rgba(255,255,255,0.65); pointer-events:none; }
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(29,78,216,0.45); }

/* When scrolled, dark text/buttons inside light bar */
.navbar.scrolled .btn-ghost { color: #111; }
.navbar.scrolled .btn-ghost:hover { background: rgba(0,0,0,0.05); }

.navbar.scrolled .btn-outline { color: #111; border-color: rgba(17,17,17,0.15); background: rgba(255,255,255,0.6); }
.navbar.scrolled .btn-outline:hover { background: rgba(255,255,255,0.8); }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar.scrolled .mobile-menu-toggle span {
    background: #ffffff;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #6B00B6;
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-logo-img {
    height: 35px;
    width: auto;
}

/* Mobile logo switching on scroll */
.mobile-logo-img.logo-scrolled {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar.scrolled .mobile-logo-img.logo-default {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar.scrolled .mobile-logo-img.logo-scrolled {
    display: block;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.mobile-logo span {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

.mobile-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.mobile-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-nav-content {
    padding: 20px;
}

.mobile-nav-section {
    margin-bottom: 30px;
}

.mobile-nav-section h3 {
    color: #892CDC;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(139, 92, 246, 0.3);
}

.mobile-nav-links {
    list-style: none;
}

.mobile-nav-links li {
    margin-bottom: 8px;
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
    background-color: rgba(139, 92, 246, 0.2);
    color: #892CDC;
    transform: translateX(8px);
}

.mobile-nav-links a i {
    font-size: 18px;
    color: #892CDC;
    min-width: 20px;
}

.mobile-nav-actions {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-btn {
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.mobile-btn-primary {
    background: linear-gradient(45deg, #892CDC, #C084FC);
    color: #ffffff;
}

.mobile-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.mobile-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.mobile-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Main Content */
.main-content {
    padding-top: 70px;
}

/* Navigation section ends here */

/* Hero section starts from here */

/* Mobile-First Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 80px 5% 40px;
    background-color: #6B00B6;
    color: white;
    position: relative;
    overflow: hidden;
    text-align: center;
    gap: 30px;
}

/* Hero parallax layers */
.hero .bg-shape { transform: translateY(-50%) scale(1.02); }
.hero.parallax-active .bg-shape { will-change: transform; }
.hero.parallax-active .hero-video { will-change: transform; }

.hero-content {
    flex: 1;
    z-index: 2;
    max-width: 100%;
    width: 100%;
}

.hero-content h1 {
    font-size: clamp(1.8rem, 6vw, 2rem);
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content h1 span {
    color: #C6FF00; /* Highlighted text */
}

.hero-content p {
    font-size: 15px;
    line-height: 1.6;
    max-width: 100%;
    opacity: 0.95;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.hero-images {
    flex: 1;
    position: relative;
    height: 350px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    width: 120%;
    height: auto;
    object-fit: cover;
    right: 0;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
    opacity: 0.8;
    max-width: 100%;
}

.hero-video {
    position: absolute;
    width: 320px;
    height: auto;
    right: 10%;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    /* border-radius: 15px;
    object-fit: cover; */
    /* max-width: 90%; */
    display: block;
    will-change: transform;
    backface-visibility: hidden;
    max-width: 90vw;
}

/* Tablet Layout */
@media (min-width: 768px) {
    .hero {
        padding: 100px 6% 50px;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
    }
    
    .hero-content p {
        font-size: clamp(15px, 2.5vw, 16px);
        max-width: 600px;
        margin: 0 auto 25px;
    }
    
    .hero-images {
        height: 450px;
        min-height: 400px;
    }
    
    .hero-video {
        width: 320px;
        right: 10%;
        left: auto;
        transform: translateY(-50%);
        z-index: 3;
    }
}

/* Desktop Layout */
@media (min-width: 1024px) {
    .hero {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        padding: 120px 8% 60px;
        gap: 60px;
    }
    
    .hero-content {
        flex: 1 1 45%;
        max-width: 600px;
        padding-right: 20px;
    }
    
    .hero-content h1 {
        font-size: clamp(2rem, 4vw, 2.5rem);
        margin-bottom: 25px;
    }
    
    .hero-content p {
        font-size: clamp(15px, 1.5vw, 16px);
        text-align: left;
        margin-bottom: 30px;
    }
    
    .hero-images {
        flex: 1 1 55%;
        height: 100vh;
        min-height: 500px;
        position: relative;
    }
    
    .bg-shape {
        width: 100%;
        right: 0;
        left: auto;
        transform: translateY(-50%);
        max-width: 90%;
    }
    
    .hero-video {
        width: 380px;
        right: 15%;
        left: auto;
        transform: translateY(-50%);
        z-index: 3;
    }
}

/* Large Desktop */
@media (min-width: 1400px) {
    .hero {
        padding: 140px 10% 80px;
        gap: 80px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .hero-video {
        width: 420px;
        right: 15%;
        left: auto;
        z-index: 3;
    }
}

/* Enhanced Mobile Optimizations for Hero */
@media (max-width: 480px) {
    .hero {
        padding: 80px 4% 40px;
        gap: 25px;
        min-height: 100vh;
        justify-content: center;
    }
    
    .hero-content {
        order: 1;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: clamp(1.6rem, 6vw, 1.8rem);
        margin-bottom: 18px;
        line-height: 1.3;
        text-align: center;
    }
    
    .hero-content p {
        font-size: clamp(14px, 3.5vw, 15px);
        margin-bottom: 25px;
        line-height: 1.6;
        text-align: center;
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-images {
        order: 2;
        height: 320px;
        min-height: 280px;
        width: 100%;
        position: relative;
        margin-top: 10px;
    }
    
    .bg-shape {
        width: 110%;
        right: -5%;
        opacity: 0.85;
        object-fit: contain;
    }
    
    .hero-video {
        width: 240px;
        right: 50%;
        left: auto;
        transform: translate(50%, -50%);
        z-index: 3;
        border-radius: 12px;
    }
}

@media (max-width: 375px) {
    .hero {
        padding: 70px 3% 35px;
        gap: 20px;
        min-height: 100vh;
    }
    
    .hero-content h1 {
        font-size: clamp(1.4rem, 5.5vw, 1.6rem);
        margin-bottom: 16px;
        line-height: 1.25;
    }
    
    .hero-content p {
        font-size: clamp(13px, 3.2vw, 14px);
        margin-bottom: 22px;
        line-height: 1.55;
        max-width: 98%;
    }
    
    .hero-images {
        height: 300px;
        min-height: 260px;
        margin-top: 8px;
    }
    
    .bg-shape {
        width: 105%;
        right: -2.5%;
        opacity: 0.8;
    }
    
    .hero-video {
        width: 220px;
        transform: translate(50%, -50%);
        border-radius: 10px;
    }
}

@media (max-width: 320px) {
    .hero {
        padding: 60px 2% 30px;
        gap: 18px;
        min-height: 100vh;
    }
    
    .hero-content h1 {
        font-size: clamp(1.3rem, 5vw, 1.5rem);
        margin-bottom: 14px;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: clamp(12px, 3vw, 13px);
        margin-bottom: 20px;
        line-height: 1.5;
        max-width: 100%;
    }
    
    .hero-images {
        height: 280px;
        min-height: 240px;
        margin-top: 5px;
    }
    
    .bg-shape {
        width: 100%;
        right: 0;
        opacity: 0.75;
    }
    
    .hero-video {
        width: 200px;
        transform: translate(50%, -50%);
        border-radius: 8px;
    }
}

/* Additional mobile-first improvements */
@media (max-width: 600px) {
    .hero {
        text-align: center;
    }
    
    .hero-content h1 span {
        display: inline-block;
        animation: pulse 2s ease-in-out infinite;
    }
    
    @keyframes pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.05); }
    }
    
    .hero-video {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .hero-video:hover {
        transform: translate(50%, -50%) scale(1.02);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
}

/* Hero logo backdrop styles */
.hero-logo-backdrop {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1; /* Above background but below content */
  pointer-events: none;
  user-select: none;
  opacity: 0.08; /* Subtle backdrop effect */
  width: 35vw; /* Responsive size */
  max-width: 400px;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: blur(0.5px); /* Slight blur for backdrop effect */
}

.hero-logo-backdrop img {
  width: 100%;
  height: auto;
  display: block;
}

/* Mobile adjustments for hero logo backdrop */
@media (max-width: 768px) {
  .hero-logo-backdrop {
    width: 50vw;
    max-width: 250px;
    min-width: 150px;
    opacity: 0.06; /* More subtle on mobile */
  }
}

@media (max-width: 480px) {
  .hero-logo-backdrop {
    width: 60vw;
    max-width: 200px;
    min-width: 120px;
    opacity: 0.05; /* Very subtle on small screens */
  }
}

/* Hero section ends here */

/* Second Section Starts from here */

.about-section {
    background-color: transparent; /* Changed from #E2004C to transparent */
    padding: 0px 8%;
    position: relative;
    overflow: hidden;
    color: white;
    min-height: 300px; /* Ensures enough height for content */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* Top Decorative Shape */
.top-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 420px;
    z-index: 0;
}

/* Left Image */
.about-image {
    flex: 1 1 40%;
    text-align: center;
    z-index: 1;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.about-image img {
    width: 130%;
    height: auto;
}

/* Right Content */
.about-content {
    flex: 1 1 50%;
    color: white;
    z-index: 1;
}

.about-content h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #6B00B6; /* Lighter text for better contrast */
}

.about-content .underline {
    height: 4px;
    width: 150px;
    background: linear-gradient(to right, #C200F0, #FF004C);
    border-radius: 50px;
    margin-bottom: 20px;
    position: relative;
}

.about-content .underline::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: linear-gradient(45deg, #C200F0, #FF004C);
    border-radius: 2px;
}

.about-text {
    background-color: #6B00B6;
    padding: 20px 25px;
    border-radius: 40px 2px 2px 2px;
}

.about-text p {
    font-size: 15px;
    margin-bottom: 15px;
    color: #ffffff; /* Lighter text for better contrast */
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    text-align: justify;
}

/* Responsive */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        text-align: center;
        padding: 20px;

    }

    .about-image {
        order: 1;
        margin-bottom: 20px;

    }

    .about-content {
        order: 2;
        text-align: center;
        flex: 1 1 100%;

    }

    .underline {
        width: 300px;
        margin: 20px auto;

    }

    .about-text {
        text-align: left;
    }
}


/* Second Section Ends here */

/* Third Section Starts from here */

.platform-features {
    padding: 60px 8%;
    /* background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%); */
    position: relative;
    overflow: hidden;
}

/* Professional background decorative elements */
.platform-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(194, 0, 240, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 76, 0.03) 0%, transparent 50%),
        linear-gradient(45deg, transparent 48%, rgba(93, 0, 182, 0.02) 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(194, 0, 240, 0.02) 50%, transparent 52%);
    background-size: 300px 300px, 400px 400px, 60px 60px, 60px 60px;
    z-index: 0;
}

.platform-features::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, #C200F0, #FF004C);
    border-radius: 50%;
    opacity: 0.04;
    z-index: 0;
    filter: blur(40px);
}

/* Additional geometric elements */
.platform-features .geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.platform-features .geometric-bg::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(194, 0, 240, 0.1);
    border-radius: 20px;
    transform: rotate(45deg);
}

.platform-features .geometric-bg::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 8%;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 0, 76, 0.1);
    border-radius: 50%;
}

/* Floating dots pattern */
.platform-features .floating-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.platform-features .floating-dots::before {
    content: '';
    position: absolute;
    top: 25%;
    left: 15%;
    width: 6px;
    height: 6px;
    background: linear-gradient(45deg, #C200F0, #FF004C);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-dot 8s ease-in-out infinite;
}

.platform-features .floating-dots::after {
    content: '';
    position: absolute;
    top: 65%;
    right: 20%;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #5D00B6, #C200F0);
    border-radius: 50%;
    opacity: 0.4;
    animation: float-dot 6s ease-in-out infinite reverse;
}

@keyframes float-dot {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-10px) translateX(5px); }
    50% { transform: translateY(-5px) translateX(-5px); }
    75% { transform: translateY(5px) translateX(10px); }
}

.features-header {
    text-align: left;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.features-header h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #5D00B6;
    margin-bottom: 15px;
}

.features-header .underline {
    height: 4px;
    width: 160px;
    background: linear-gradient(to right, #C200F0, #FF004C);
    border-radius: 50px;
    margin: 0;
    position: relative;
}

.features-header .underline::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: linear-gradient(45deg, #C200F0, #FF004C);
    border-radius: 2px;
}

/* Simple grid layout */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Clean feature cards */
.feature-card {
    background: transparent;
    border: none;
    box-shadow: none;
    transition: none;
    position: relative;
    height: auto;
    display: block;
}

.feature-card::before,
.feature-card::after {
    display: none;
}

.feature-card:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.feature-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: none;
    position: static;
    object-fit: contain;
}

.feature-card:hover img {
    transform: none;
}

/* Responsive design */
@media (max-width: 1200px) {
    .platform-features {
        padding: 50px 6%;
    }
    
    .features-header h2 {
        font-size: 2.2rem;
    }
    
    .features-grid {
        gap: 25px;
    }
}

@media (max-width: 900px) {
    .platform-features {
        padding: 40px 5%;
    }
    
    .features-header h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .platform-features {
        padding: 30px 4%;
    }
    
    .features-header h2 {
        font-size: 1.8rem;
    }
    
    .features-header .underline {
        width: 120px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .platform-features {
        padding: 25px 3%;
    }
    
    .features-header h2 {
        font-size: 1.6rem;
    }
    
    .features-grid {
        gap: 15px;
    }
}

/* Third Section Ends here */

/* Fourth Section Starts from here */

.platform-roles {
    padding: 80px 8%;
    /* background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 50%, #e8f5e8 100%); */
    position: relative;
    overflow: hidden;
}

/* Background decorative elements */
.platform-roles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(194, 0, 240, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 0, 76, 0.02) 0%, transparent 50%);
    background-size: 400px 400px, 300px 300px;
    z-index: 0;
}

.roles-header {
    text-align: left;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.roles-header h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.roles-header .underline {
    height: 4px;
    width: 200px;
    background: linear-gradient(to right, #C200F0, #FF004C);
    border-radius: 50px;
    margin: 0;
    position: relative;
}

.roles-header .underline::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: linear-gradient(45deg, #C200F0, #FF004C);
    border-radius: 2px;
}

/* Roles description section */
.roles-description {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.description-content {
    background: #1A2A80;
    padding: 40px;
    border-radius: 1px 100px 1px 1px;
    color: white;
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
}

.description-content p {
    font-size: 15px;
    color: #ffffff; /* Lighter text for better contrast */
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    text-align: justify;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.description-content strong {
    color: #ffd700;
    font-weight: 700;
}

.description-image {
    flex: 1;
    text-align: center;
}

.description-image img {
    max-width: 60%;
    height: auto;
    border-radius: 10px;
}

/* Roles cards section */
.roles-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.role-card {
    background: transparent;
    border: none;
    box-shadow: none;
    transition: none;
    position: relative;
    height: auto;
    display: block;
    text-align: center;
}

.role-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: none;
    position: static;
    object-fit: contain;
    border-radius: 10px;
}

/* Responsive design */
@media (max-width: 1200px) {
    .platform-roles {
        padding: 60px 6%;
    }
    
    .roles-header h2 {
        font-size: 2.4rem;
    }
    
    .description-content {
        padding: 30px;
        gap: 30px;
    }
    
    .description-content p {
        font-size: 1rem;
    }
}

@media (max-width: 900px) {
    .platform-roles {
        padding: 50px 5%;
    }
    
    .roles-header h2 {
        font-size: 2.2rem;
    }
    
    .description-content {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }
    
    .roles-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .platform-roles {
        padding: 40px 4%;
    }
    
    .roles-header h2 {
        font-size: 2rem;
    }
    
    .roles-header .underline {
        width: 150px;
    }
    
    .description-content {
        padding: 25px;
    }
    
    .description-content p {
        font-size: 0.95rem;
    }
    
    .roles-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .platform-roles {
        padding: 30px 3%;
    }
    
    .roles-header h2 {
        font-size: 1.8rem;
    }
    
    .description-content {
        padding: 20px;
    }
    
    .description-content p {
        font-size: 0.9rem;
    }
}

/* Fourth Section Ends here */

/* New Two-Column Layout Section */
.two-column-layout {
    padding: 80px 8%;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.two-column-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* Vertical gradient separator line */
.two-column-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #007bff, #e83e8c);
    transform: translateX(-50%);
    z-index: 1;
}

/* Left Column Styles */
.left-column {
    position: relative;
    z-index: 2;
}

.section-main-title {
    font-size: 2rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.2;
}

.steps-list {
    display: flex;
    flex-direction: column;
    /* gap: 30px; */
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.step-item:not(.active) .step-number {
    background: #e9ecef;
    color: #6c757d;
}

.step-item.active .step-number {
    background: #000;
    color: #fff;
    transform: scale(1.1);
}

.step-text {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
    line-height: 1.5;
    padding-top: 8px;
}

.step-item.active .step-text {
    font-weight: 600;
    color: #000;
}

/* Right Column Styles */
.right-column {
    position: relative;
    z-index: 2;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.image-item {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #007bff;
}

.image-heading {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.image-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.image-item:hover img {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .two-column-layout {
        padding: 60px 6%;
    }
    
    .two-column-container {
        gap: 60px;
    }
    
    .section-main-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 900px) {
    .two-column-layout {
        padding: 50px 5%;
    }
    
    .two-column-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .two-column-container::before {
        display: none;
    }
    
    .section-main-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .steps-list {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .two-column-layout {
        padding: 40px 4%;
    }
    
    .section-main-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .steps-list {
        gap: 25px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .step-text {
        font-size: 1rem;
    }
    
    .image-grid {
        gap: 20px;
    }
    
    .image-item {
        padding: 15px;
    }
    
    .image-heading {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
}

@media (max-width: 600px) {
    .two-column-layout {
        padding: 30px 3%;
    }
    
    .section-main-title {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }
    
    .steps-list {
        gap: 20px;
    }
    
    .step-item {
        gap: 15px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .step-text {
        font-size: 0.95rem;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .image-item {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .two-column-layout {
        padding: 25px 2%;
    }
    
    .section-main-title {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .steps-list {
        gap: 18px;
    }
    
    .step-item {
        gap: 12px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .step-text {
        font-size: 0.9rem;
    }
    
    .image-item {
        padding: 10px;
    }
    
    .image-heading {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
}

/* Fifth Section Starts from here */

.problem-solution {
    padding: 80px 8%;
    background: url('../Images/VcBg.png') center center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

/* subtle floating blobs */
.problem-solution::before,
.problem-solution::after {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.12;
    z-index: 0;
    pointer-events: none;
}

.problem-solution::before {
    top: -180px;
    left: -140px;
    background: radial-gradient(circle at 30% 30%, #C200F0 0%, transparent 60%);
}

.problem-solution::after {
    bottom: -220px;
    right: -160px;
    background: radial-gradient(circle at 70% 70%, #FF004C 0%, transparent 60%);
}

/* Top right corner logo */
.ps-logo {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
}

.ps-logo img {
    width: 60px;
    height: auto;
    opacity: 0.8;
}

/* Main container */
.ps-container {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    position: relative;
    z-index: 2;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

/* center decorative divider between columns */
.ps-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(198,255,0,0.35) 35%, rgba(255,0,76,0.35) 65%, rgba(255,255,255,0) 100%);
    filter: blur(0.2px);
    opacity: 0.6;
    pointer-events: none;
}

/* Problem and Solution sections */
.problem-section,
.ps-container .solution-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255,255,255,0.25);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(14px) saturate(120%);
    -webkit-backdrop-filter: blur(14px) saturate(120%);
}

/* Vertical titles */
.ps-title {
    position: absolute;
    left: -38px;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 10px;
    z-index: 5;
    line-height: 1;
}

.problem-section .ps-title {
    color: #E2004C;
    text-shadow: 1px 1px 2px rgba(220, 38, 38, 0.1);
}

.ps-container .solution-section .ps-title {
    color: #16a34a;
    text-shadow: 1px 1px 2px rgba(22, 163, 74, 0.1);
}



/* Illustrations */
.ps-illustration {
    text-align: center;
    margin-bottom: 30px;
    flex-shrink: 0;
}

.ps-illustration img {
    max-width: 200px;
    height: auto;
    border-radius: 15px;
}

/* Content items */
.ps-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    counter-reset: psitem;
}

/* subtle timeline line inside each column */
.ps-content::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, rgba(99,102,241,0.15), rgba(99,102,241,0));
}

.ps-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.12));
    padding: 20px 20px 20px 56px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255,255,255,0.25);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(10px) saturate(120%);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    counter-increment: psitem;
}

.ps-item:hover {
    transform: translateY(-3px) rotateX(0.6deg) rotateY(-0.6deg);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

/* numbered badge */
.ps-item::before {
    content: counter(psitem);
    position: absolute;
    left: 12px;
    top: 18px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 800;
    color: #000000;
    /* background: linear-gradient(135deg, #6B00B6, #C200F0); */
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 6px 16px rgba(107, 0, 182, 0.25);
}

.ps-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
    line-height: 1.3;
}

.ps-item p {
    font-size: 15px;
    color: #000000;
    line-height: 1.5;
    margin: 0;
}

/* Responsive design */
@media (max-width: 1200px) {
    .problem-solution {
        padding: 60px 6%;
    }
    
    .ps-container {
        gap: 30px;
    }
    
    .problem-section,
    .ps-container .solution-section {
        padding: 35px 25px;
        min-height: 550px;
    }
    
    .ps-title {
        font-size: 2.4rem;
        left: -20px;
        letter-spacing: 3px;
    }
    
    .ps-illustration img {
        max-width: 180px;
    }
}

@media (max-width: 900px) {
    .problem-solution {
        padding: 50px 5%;
    }
    
    .ps-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .ps-container::before { display: none; }
    
    .problem-section,
    .ps-container .solution-section {
        padding: 30px 25px;
        min-height: auto;
    }
    
    .ps-title {
        position: static;
        writing-mode: horizontal-tb;
        text-align: center;
        margin-bottom: 20px;
        font-size: 2.2rem;
        transform: none;
        left: auto;
        letter-spacing: 2px;
    }
    
    .ps-illustration {
        margin-bottom: 25px;
    }
    
    .ps-illustration img {
        max-width: 160px;
    }
    
    /* Improve mobile spacing for list and timeline */
    .ps-content::before {
        left: 16px;
    }
    .ps-item {
        padding: 16px 16px 16px 48px;
    }
    .ps-item::before {
        left: 10px;
        top: 16px;
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .problem-solution {
        padding: 40px 4%;
    }
    
    .ps-logo {
        top: 20px;
        right: 20px;
    }
    
    .ps-logo img {
        width: 50px;
    }
    
    .problem-section,
    .ps-container .solution-section {
        padding: 25px 20px;
    }
    
    .ps-title {
        font-size: 2rem;
        margin-bottom: 15px;
        letter-spacing: 1px;
    }
    
    .ps-illustration img {
        max-width: 140px;
    }
    
    .ps-item {
        padding: 14px 14px 14px 44px;
    }
    
    .ps-item h3 {
        font-size: 1rem;
    }
    
    .ps-item p {
        font-size: 0.9rem;
    }
    
    .ps-content::before {
        left: 14px;
    }
    .ps-item::before {
        left: 8px;
        top: 14px;
        width: 26px;
        height: 26px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .problem-solution {
        padding: 30px 3%;
    }
    
    .ps-logo {
        top: 15px;
        right: 15px;
    }
    
    .ps-logo img {
        width: 40px;
    }
    
    .problem-section,
    .ps-container .solution-section {
        padding: 20px 15px;
    }
    
    .ps-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
        letter-spacing: 1px;
    }
    
    .ps-illustration img {
        max-width: 120px;
    }
    
    .ps-item {
        padding: 12px 12px 12px 40px;
    }
    
    .ps-item h3 {
        font-size: 0.95rem;
    }
    
    .ps-item p {
        font-size: 0.85rem;
    }
    
    .ps-content::before {
        left: 12px;
    }
    .ps-item::before {
        left: 6px;
        top: 12px;
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
}

/* Creative Solution Preview Element */
.solution-preview {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    width: 350px;
}

.solution-preview-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.ps-illustration-creative {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(194, 0, 240, 0.1) 0%, rgba(255, 0, 76, 0.1) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(194, 0, 240, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.ps-illustration-creative:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 35px 70px rgba(194, 0, 240, 0.25);
}

.ps-illustration-creative img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.1) contrast(1.1);
}

.solution-text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
    border-radius: 20px;
    backdrop-filter: blur(14px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255,255,255,0.25);
    width: 100%;
    text-align: center;
}

.magic-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.magic-sparkles i {
    position: absolute;
    color: #fff;
    font-size: 12px;
    animation: sparkle 2s infinite;
}

.spark-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.spark-2 {
    top: 30%;
    right: 25%;
    animation-delay: 0.5s;
}

.spark-3 {
    bottom: 30%;
    left: 30%;
    animation-delay: 1s;
}

.spark-4 {
    bottom: 25%;
    right: 20%;
    animation-delay: 1.5s;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.preview-text {
    color: #333;
    margin-bottom: 0;
    z-index: 2;
}

.preview-text h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #C200F0 0%, #FF004C 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.preview-text p {
    font-size: 0.9rem;
    opacity: 0.8;
    color: #555;
    line-height: 1.5;
}

.solution-redirect-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(90deg, #E2004C, #e2004b49);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(29,78,216,0.35);
}

.solution-redirect-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    box-shadow: inset 0 0 0 2px rgba(255,255,255,0.65);
    pointer-events: none;
}

.solution-redirect-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(29,78,216,0.45);
}

.solution-redirect-btn .btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.solution-redirect-btn:hover .btn-glow {
    left: 100%;
}

.solution-redirect-btn i {
    transition: transform 0.3s ease;
}

.solution-redirect-btn:hover i {
    transform: translateX(4px);
}

/* Responsive styles for creative element */
@media (max-width: 1200px) {
    .solution-preview {
        width: 300px;
        min-height: 550px;
    }
    
    .ps-illustration-creative {
        width: 250px;
        height: 250px;
    }
    
    .solution-text-content {
        padding: 18px;
    }
}

@media (max-width: 900px) {
    .ps-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .solution-preview {
        width: 100%;
        min-height: auto;
        margin: 20px 0;
        order: 2;
    }
    
    .problem-section {
        order: 1;
    }
    
    .ps-illustration-creative {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }
    
    .solution-text-content {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .ps-illustration-creative {
        width: 240px;
        height: 240px;
    }
    
    .preview-text h3 {
        font-size: 1.2rem;
    }
    
    .preview-text p {
        font-size: 0.8rem;
    }
    
    .solution-redirect-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .solution-text-content {
        padding: 16px;
        max-width: 350px;
    }
    
    .solution-preview-content {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .ps-illustration-creative {
        width: 200px;
        height: 200px;
    }
    
    .preview-text h3 {
        font-size: 1.1rem;
    }
    
    .solution-redirect-btn {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
    
    .solution-text-content {
        padding: 14px;
        max-width: 300px;
    }
    
    .solution-preview-content {
        gap: 15px;
    }
}

/* Fifth Section Ends here */

/* Sixth Section Starts from here */

.business-model {
    padding: 80px 8%;
    /* background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%); */
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Background decorative elements */
.business-model::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(194, 0, 240, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 76, 0.03) 0%, transparent 50%);
    background-size: 400px 400px, 300px 300px;
    z-index: 0;
}

.bm-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.bm-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #6B00B6;
    margin-bottom: 20px;
    /* line-height: 1.2; */
}

.bm-header .underline {
    height: 4px;
    width: 200px;
    background: linear-gradient(to right, #C200F0, #FF004C);
    border-radius: 50px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bm-header .diamond {
    /* width: 12px; */
    height: 12px;
    background: linear-gradient(45deg, #C200F0, #FF004C);
    border-radius: 2px;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

/* Image viewer */
.image-viewer {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 1500px;
    height: 500px;
    /* border-radius: 20px;
    box-shadow: 0 20px 60px rgba(107, 0, 182, 0.15);
    overflow: hidden;
    background: white; */
}

.image-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: rotateX(90deg) translateY(100%);
    transition: all 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    backface-visibility: hidden;
}

.image-slide.active {
    opacity: 1;
    transform: rotateX(0deg) translateY(0%);
}

.image-slide.exit {
    opacity: 0;
    transform: rotateX(-90deg) translateY(-100%);
}

.image-slide img {
    max-width: 80%;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.image-slide:hover img {
    transform: scale(1.05);
}

/* Responsive design */
@media (max-width: 1200px) {
    .business-model {
        padding: 60px 6%;
    }
    
    .bm-header h2 {
        font-size: 2.4rem;
    }
    
    .image-container {
        height: 450px;
    }
}

@media (max-width: 900px) {
    .business-model {
        padding: 50px 5%;
    }
    
    .bm-header h2 {
        font-size: 2.2rem;
    }
    
    .image-container {
        height: 400px;
    }
    
    .image-slide img {
        max-width: 85%;
    }
}

@media (max-width: 768px) {
    .business-model {
        padding: 40px 4%;
    }
    
    .bm-header h2 {
        font-size: 2rem;
    }
    
    .bm-header .underline {
        width: 150px;
    }
    
    .image-container {
        height: 350px;
        border-radius: 15px;
    }
    
    .image-slide img {
        max-width: 90%;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .business-model {
        padding: 30px 3%;
    }
    
    .bm-header h2 {
        font-size: 1.8rem;
    }
    
    .image-container {
        height: 300px;
        border-radius: 10px;
    }
    
    .image-slide img {
        max-width: 100%;
        border-radius: 8px;
    }
}

/* Sixth Section Ends here */

/* Seventh Section Starts here */
.ctd1-section {
    margin-top: 5rem;
     display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 8%;
  background: url("Images/VcBg.png") no-repeat center center/cover; /* Background image */
  position: relative;
  min-height: 150vh;
  color: #222;
  flex-wrap: wrap;
}

.ctd1-container {
    width: 200%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ctd1-img {
    margin-top: -30rem;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.ctd1-img:hover {
    transform: scale(1.02);
}

/* Responsive design for ninth section */
@media (max-width: 900px) {
    .ctd1-section {
        padding: 60px 5%;
    }
    
}

@media (max-width: 768px) {
    .ctd1-section {
        padding: 50px 4%;
    }
}

@media (max-width: 480px) {
    .ctd1-section {
        padding: 40px 3%;
    }
}

/* Seventh Section Ends here */

/* Eighth Section Starts here */

/* Vision Section */
.vision {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 8%;
  background: url("Images/C84.png") no-repeat center center/cover; /* Background image */
  position: relative;
  min-height: 100vh;
  color: #222;
  flex-wrap: wrap;
}

/* Left Content */
.vision-content {
    margin-bottom: 30px;
  flex: 1 1 55%;
  z-index: 2;
}

.vision-content h2 {
  font-size: 2rem;
  color: #5A0EBE;
  margin-bottom: 10px;
}

.underline {
    height: 4px;
    width: 150px;
    background: linear-gradient(to right, #C200F0, #FF004C);
    border-radius: 50px;
    margin-top: 10px; /* Space between heading and decorative line */
    margin-bottom: 24px; /* Space between decorative line and paragraph */
    position: relative;
}

.vision-content .underline::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: linear-gradient(45deg, #C200F0, #FF004C);
    border-radius: 2px;
}

.vision-box {
  padding: 60px;
  border-radius: 12px;
  margin-bottom: 25px;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
}

.vision-box.pink {
    margin-top: 90px;
  background: #E50064;
  color: #fff;
    font-weight: 600;
    box-shadow: 0px 20px 40px rgba(0,0,0,0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    animation: float 4s ease-in-out infinite;
    cursor: pointer;
    border-radius: 40px 0px 0px 0px;
}

.vision-box.green {
  background: #C6FF00;
  color: #111;
  font-weight: 600;
  box-shadow: 0px 20px 40px rgba(0,0,0,0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    animation: float 4s ease-in-out infinite;
    cursor: pointer;
    border-radius: 10px 10px 10px 10px;

}

/* Right GIF */
.vision-image {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vision-gif {
  max-width: 250px;
  height: auto;
  animation: float 4s ease-in-out infinite;
}

/* Floating Animation for GIF */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Responsive */
@media (max-width: 900px) {
  .vision {
    flex-direction: column;
    text-align: center;
    padding: 50px 5%;
  }

  .vision-image {
    margin-top: 40px;
  }

  .vision-gif {
    max-width: 250px;
  }
}


/* Eighth Section Ends here */

/* Ninth Section - Click the Deal */
.ctd-section {
    position: relative;
    overflow: hidden;
    padding-bottom: 100px; /* Space for section logo */
}

.ctd-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ctd-img {
    max-width: 100%;
    height: auto;
    /* border-radius: 20px; */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.ctd-img:hover {
    transform: scale(1.02);
}

/* Responsive design for ninth section */
@media (max-width: 900px) {
    .ctd-section {
        padding: 60px 5% 120px 5%; /* Increased bottom padding for logo space */
    }
    
    .section-logo {
        bottom: 15px; /* Maintain visibility */
    }
    
    .logo-circle {
        width: 100px;
        height: 100px;
    }
    
    .bottom-logo {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    .ctd-section {
        padding: 50px 4% 110px 4%; /* Increased bottom padding */
    }
    
    .section-logo {
        bottom: 15px; /* Maintain visibility */
    }
    
    .logo-circle {
        width: 90px;
        height: 90px;
    }
    
    .bottom-logo {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .ctd-section {
        padding: 40px 3% 100px 3%; /* Increased bottom padding */
    }
    
    .section-logo {
        bottom: 10px; /* Maintain visibility on small screens */
    }
    
    .logo-circle {
        width: 80px;
        height: 80px;
    }
    
    .bottom-logo {
        width: 60px;
        height: 60px;
    }
    
    .logo-connector {
        height: 30px;
        top: -30px;
    }
}

/* 10th Section Ends here */



/* Section Wrapper */
.customer-app {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 8% 100px 8%;  /* Added bottom padding for logo space */
  background: transparent;
  /* Transparent background */
  gap: 50px;
  flex-wrap: wrap;
  position: relative;  /* Added for absolute positioning of logo */
}

/* Left Side */
.customer-left {
  flex: 1 1 45%;
}

.section-title {
  font-size: 2rem;
  color: #5A0EBE;
  margin-bottom: 10px;
}

.underline {
    height: 4px;
    width: 150px;
    background: linear-gradient(to right, #C200F0, #FF004C);
    border-radius: 50px;
    margin-top: 10px; /* Space between heading and decorative line */
    margin-bottom: 24px; /* Space between decorative line and paragraph */
    position: relative;
}

.underline::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: linear-gradient(45deg, #C200F0, #FF004C);
    border-radius: 2px;
}


.customer-img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Right Side */
.customer-right {
  flex: 1 1 50%;
}

.customer-text {
  background: #C40050;
  padding: 50px;
  border-radius: 50px 0px 0px 0px;
  color: white;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
}

.customer-text .highlight {
  color: #C6FF00;
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 900px) {
  .customer-app {
    flex-direction: column;
    text-align: center;
    padding: 60px 5%;
  }

  .title-underline {
    justify-content: center;
  }

  .customer-right {
    margin-top: 30px;
  }
}

/* Section Logo Positioning */
.section-logo {
  position: absolute;
  bottom: 20px; /* Changed from 0 to 20px to keep logo visible */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
}

/* Arc Container */
.arc-container {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 150px;
  pointer-events: none;
  z-index: 1;
}

.logo-circle {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #3E00A4, #3E00A4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 0 20px rgba(255, 255, 255, 0.6),
    0 0 40px rgba(101, 94, 117, 0.3),
    inset 0 0 20px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.logo-circle::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #c8b5f8, #e7c6f9, #c8b5f8);
  border-radius: 50%;
  z-index: -1;
  animation: logoGlow 3s ease-in-out infinite alternate;
}

.bottom-logo {
  width: 100px;
  height:100px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  z-index: 2;
}

.logo-connector {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, #c8b5f8);
  opacity: 0.7;
}

/* Logo glow animation */
@keyframes logoGlow {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* Arc animations */
@keyframes arcPulse {
  0%, 100% {
    opacity: 0.6;
    transform: rotate(0deg) scale(1);
  }
  50% {
    opacity: 0.9;
    transform: rotate(0deg) scale(1.02);
  }
}

@keyframes arcDotFloat {
  0%, 100% {
    transform: translateY(0px);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-8px);
    opacity: 1;
  }
}

@keyframes arcParticleFloat {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-4px) translateX(2px);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-2px) translateX(-2px);
    opacity: 0.9;
  }
}

/* Mobile adjustments for Customer App section */
@media (max-width: 600px) {
  .customer-app {
    padding: 40px 5% 70px 5%;
    gap: 24px;
  }

  .section-title {
    font-size: 2rem;
  }

  .customer-text {
    padding: 24px;
    font-size: 15px;
    border-radius: 30px 0 0 0;
  }

  /* Place the logo naturally below content on small screens */
  .section-logo {
    position: static;
    left: auto;
    bottom: auto;
    transform: none;
    margin: 20px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Mobile arc adjustments */
  .arc-container {
    width: 200px;
    height: 100px;
    bottom: 30px;
  }

  .arc-line-1 {
    width: 180px;
    height: 90px;
    left: 10px;
    top: 5px;
  }

  .arc-line-2 {
    width: 200px;
    height: 100px;
    left: 0px;
    top: 0px;
  }

  .arc-line-3 {
    width: 160px;
    height: 80px;
    left: 20px;
    top: 10px;
  }

  .arc-dot {
    width: 4px;
    height: 4px;
  }

  .arc-particle {
    width: 2px;
    height: 2px;
  }

  .logo-circle {
    width: 88px;
    height: 88px;
  }

  .bottom-logo {
    width: 68px;
    height: 68px;
  }

  .logo-connector {
    display: none;
  }
}

/* Tenth Section Ends here */



/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

/*Customer screen sections ends here  */

/* 13th Section Starts from here */

.Retailer-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 8%;
  background: transparent;  /* Transparent background */
  gap: 50px;
  flex-wrap: wrap;
}

/* Left Side */
.Retailer-left {
  flex: 1 1 45%;
}

.Retailer-img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Right Side */
.Retailer-right {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.Retailer-text {
  background: #C40050;
  padding: 50px;
  border-radius: 50px 0px 0px 0px;
  color: white;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
}

.Retailer-text .highlight {
  color: #C6FF00;
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 900px) {
  .Retailer-section {
    flex-direction: column;
    text-align: center;
    padding: 60px 5%;
  }

  .Retailer-right {
    margin-top: 30px;
  }
}

/* 13th Section Ends here */

/*  */

/*  */

/* Admin App section starts from here */

.customer-app1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 8% 100px 8%;  /* Added bottom padding for logo space */
  background: transparent;
  /* Transparent background */
  gap: 50px;
  flex-wrap: wrap;
  position: relative;  /* Added for absolute positioning of logo */
}

/* Left Side */
.customer-left1 {
  flex: 1 1 45%;
}

.section-title1 {
  font-size: 2rem;
  color: #5A0EBE;
  margin-bottom: 10px;
}

.underline1 {
    height: 4px;
    width: 150px;
    background: linear-gradient(to right, #C200F0, #FF004C);
    border-radius: 50px;
    margin-bottom: 20px;
    position: relative;
}

.underline1::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: linear-gradient(45deg, #C200F0, #FF004C);
    border-radius: 2px;
}


.customer-img1 {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Right Side */
.customer-right1 {
  flex: 1 1 50%;
}

.customer-text1 {
  background: #C40050;
  padding: 50px;
  border-radius: 50px 0px 0px 0px;
  color: white;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
}

.customer-text1 .highlight1 {
  color: #C6FF00;
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 900px) {
  .customer-app1 {
    flex-direction: column;
    text-align: center;
    padding: 60px 5% 120px 5%; /* Added bottom padding for logo space */
  }

  .title-underline1 {
    justify-content: center;
  }

  .customer-right1 {
    margin-top: 30px;
  }
}


/* Admin App section ends here  */
/*  */



/*  */


/* 16th Section Starts from here */

.future-expansion {
  position: relative;
  background: url("Images/C82.png") no-repeat center center/cover;
  height: 500px; /* Adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 40px 20px;
}

.future-overlay {
  max-width: 900px;
}

.future-expansion .section-title {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 700;
  text-align: center;
}

.future-expansion .underline {
  height: 4px;
  width: 150px;
  background: linear-gradient(to right, #C200F0, #FF004C);
  border-radius: 50px;
  margin: 0 auto 20px auto;
  position: relative;
}

.future-expansion .underline::after {
  content: '';
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: linear-gradient(45deg, #C200F0, #FF004C);
  border-radius: 2px;
}

.future-content {
  margin-top: 30px;
  text-align: center;
}

.future-text {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 30px;
}

.future-learn-more-btn {
  font-size: 15px;
  padding: 12px 30px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
  .future-expansion {
    height: auto;
    padding: 60px 20px;
  }

  .future-expansion .section-title {
    font-size: 2rem;
  }

  .future-expansion .underline {
    width: 120px;
    margin: 0 auto 20px auto;
  }

  .future-content {
    margin-top: 25px;
  }

  .future-text {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .future-learn-more-btn {
    font-size: 14px;
    padding: 10px 25px;
  }
}


/* 16th Section Ends here */

/* Loading spinner animation */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Contact Section */
.contact-section {
  padding: 80px 8%;
  background: #ffffff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.contact-container {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.contact-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.contact-subtitle {
  color: #555;
  font-size: 1rem;
  margin-bottom: 26px;
}

.contact-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 28px;
}

/* Enhanced contact layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
}

.contact-info {
  background: radial-gradient(1200px 400px at -10% -20%, rgba(107,0,182,0.06), transparent 60%),
              radial-gradient(800px 300px at 120% 120%, rgba(198,255,0,0.06), transparent 60%);
  border: 1px solid rgba(107,0,182,0.12);
  border-radius: 14px;
  padding: 20px;
  text-align: left;
}

.info-header h3 { font-size: 1.15rem; margin: 8px 0 6px; }
.info-header p { color: #555; font-size: 0.95rem; }

.badge.glow {
  display: inline-block;
  font-size: 0.8rem;
  color: #3b1b5f;
  background: rgba(107,0,182,0.08);
  border: 1px solid rgba(107,0,182,0.18);
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(107,0,182,0.06);
}

.info-list { list-style: none; margin: 16px 0 12px; padding: 0; }
.info-list li { display: flex; align-items: center; gap: 10px; padding: 6px 0; color: #333; }
.info-dot { width: 8px; height: 8px; border-radius: 50%; background: #6B00B6; box-shadow: 0 0 0 3px rgba(107,0,182,0.12); }

.mini-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
.mini-card { background: #f8f7fb; border: 1px solid rgba(0,0,0,0.06); border-radius: 10px; padding: 10px; font-size: 0.85rem; display: flex; flex-direction: column; gap: 2px; }
.mini-card strong { color: #6B00B6; font-weight: 700; font-size: 0.85rem; }

/* Floating label fields */
.field { position: relative; }
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 14px;
  border-radius: 10px;
  border: 1.5px solid #e6e6eb;
  background: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.08s ease;
}

.field textarea { resize: vertical; min-height: 120px; }

.field label {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  background: #fff;
  padding: 0 6px;
  color: #666;
  pointer-events: none;
  transition: all 0.18s ease;
}

.field.select-field label { top: 0; transform: translateY(-50%) scale(0.92); color: #6B00B6; }

.field:focus-within label,
.field input:not(:placeholder-shown) + label,
.field textarea:not(:placeholder-shown) + label {
  top: 0;
  transform: translateY(-50%) scale(0.92);
  color: #6B00B6;
}

.field:focus-within input,
.field:focus-within textarea,
.field:focus-within select {
  border-color: #6B00B6;
  box-shadow: 0 0 0 4px rgba(107,0,182,0.08);
}

.textarea-field { position: relative; }
.char-counter { position: absolute; bottom: 8px; right: 10px; font-size: 12px; color: #777; }

/* Chips */
.chips-group { margin: 6px 0 4px; }
.chips-label { display: inline-block; margin-bottom: 8px; font-size: 0.9rem; color: #333; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #e6e6eb;
  background: #fff;
  color: #333;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

input[type="checkbox"]:checked + .chip {
  border-color: #6B00B6;
  background: rgba(107,0,182,0.08);
  color: #3b1b5f;
  box-shadow: 0 0 0 4px rgba(107,0,182,0.08);
}

/* Button shimmer */
.contact-submit { position: relative; overflow: hidden; }
.contact-submit::after {
  content: '';
  position: absolute;
  top: 0; left: -120%; height: 100%; width: 100%;
  background: linear-gradient(90deg, transparent, rgba(198,255,0,0.35), transparent);
  transition: left 0.5s ease;
}
.contact-submit:hover::after { left: 120%; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  text-align: left;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #111;
  margin-bottom: 8px;
}

.form-group .optional { color: #777; font-weight: 500; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  font-size: 14px;
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
  background: #fff;
}

.contact-submit {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #434242;
  border-radius: 12px;
  padding: 14px 18px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, rgb(226, 0, 76), rgba(226, 0, 75, 0.435));
  box-shadow: 0 10px 24px rgba(102, 126, 234, 0.25);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.contact-submit:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 30px rgba(102, 126, 234, 0.35);
}

.contact-submit:active { transform: scale(0.99); }

.contact-confirmation {
  margin-top: 12px;
  color: #0f5132;
  background: #d1e7dd;
  border: 1px solid #badbcc;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .contact-section { padding: 60px 5%; }
  .contact-title { font-size: 2rem; }
  .contact-card { padding: 22px; }
}

@media (max-width: 480px) {
  .contact-section { padding: 40px 4%; }
  .contact-title { font-size: 2rem; }
  .contact-card { padding: 18px; }
}

/* 17th Section Starts from here */

.thankyou-section {
  background: #f4e9fc; /* Light purple background */
  text-align: center;
  padding: 60px 20px;
}

.thankyou-title {
  font-size: 2rem;
  font-weight: 700;
  color: #5A0EBE;
  margin-bottom: 30px;
}

/* Card */
.thankyou-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  padding: 50px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

/* Left Decorative Image */
.thankyou-left-img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  object-fit: contain;
  opacity: 0.8;
}

/* Text */
.thankyou-text {
  font-size: 1.2rem;
  line-height: 1.8;
  font-weight: 500;
  color: #5A0EBE;
  margin: 0 auto 40px;
  max-width: 700px;
  position: relative;
  z-index: 2;
}

/* Connect with Us */
.thankyou-connect {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  background: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 2px 4px 10px rgba(0,0,0,0.1);
  position: absolute;
  bottom: -25px;
  right: 40px;
}

.thankyou-connect span {
  color: #003366;
  font-weight: 600;
}

.social-icons {
  height: 30px;
  width: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .thankyou-card {
    padding: 30px;
  }

  .thankyou-text {
    font-size: 1rem;
  }

  .thankyou-connect {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 20px auto 0;
    justify-content: center;
  }
}


/* 17th Section Ends here */

/* Footer Styles */


.admin-app {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 80px 8%;
	background: #f2e9ff;
	gap: 50px;
	flex-wrap: wrap;
}

.admin-left {
	flex: 1 1 50%;
}

.admin-text {
	background: #5A0EBE;
	padding: 40px;
	border-radius: 50px 0px 0px 0px;
	color: white;
	font-size: 15px;
	line-height: 1.6;
	font-weight: 500;
}

.admin-text .highlight {
	color: #C6FF00;
	font-weight: 700;
}

.admin-right {
	flex: 1 1 45%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.admin-img {
	max-width: 100%;
	height: auto;
	display: block;
}

@media (max-width: 900px) {
	.admin-app {
		flex-direction: column;
		text-align: left;
		padding: 60px 5%;
	}

	.admin-right {
		margin-top: 30px;
	}
}

/* Footer */
.footer {
    background: #6B00B6;
    color: #ffffff;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #892CDC, #C084FC, #FCD34D);
}

/* Footer decorative art */
.footer-top { position: relative; }

.footer-top .container { position: relative; z-index: 1; }

.footer-art {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(45vw, 780px);
	pointer-events: none;
	opacity: 0;
	transform: translateY(20px) scale(0.98);
	transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
	background: radial-gradient(120% 120% at 70% 20%, rgba(72, 91, 241, 0.25) 0%, rgba(72, 91, 241, 0.08) 40%, transparent 65%);
	mask-image: linear-gradient(to left, rgba(0,0,0,1), rgba(0,0,0,0.6), transparent);
	z-index: 0;
}

.footer-art-glow {
	position: absolute;
	top: 10%;
	right: 5%;
	width: 75%;
	height: 70%;
	filter: blur(40px);
	background: radial-gradient(circle at 50% 50%, rgba(64, 88, 243, 0.55), rgba(64,88,243,0.15) 60%, transparent 70%);
	opacity: 0.7;
}

.footer-art-img {
	position: absolute;
	top: 50%;
	right: 0;
	width: 92%;
	max-width: 820px;
	opacity: 0.22;
	filter: drop-shadow(0 20px 60px rgba(64,88,243,0.35)) saturate(1.1);
	transform: translateY(var(--ty, -50%)) translateX(var(--tx, 0)) scale(var(--s, 1));
	transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.6s ease;
}

/* Reveal on hover */
.footer:hover .footer-art { opacity: 1; transform: translateY(0) scale(1); }
.footer:hover .footer-art-img { opacity: 0.28; }

/* Targeted hover from the left section using parent container */
.footer-content:hover ~ .footer-art { opacity: 1; transform: translateY(0) scale(1); }

/* Logo hover specifically triggers stronger focus */
#footerLogoImg:hover ~ .footer-art-img,
.footer:hover .footer-art-img { opacity: 0.28; transform: translateZ(0) scale(1.02); }

.footer-top {
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: auto;
    height: 60px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #892CDC;
    transform: translateY(-3px);
}

.social-link i {
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #892CDC;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.9rem;
}

.newsletter-input::placeholder {
    color: #cccccc;
}

.newsletter-input:focus {
    outline: none;
    border-color: #892CDC;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    padding: 12px 16px;
    background: #892CDC;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #A855F7;
    transform: translateY(-2px);
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #cccccc;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #892CDC;
}

/* Askly chat widget */
.askly-toggle {
    position: fixed;
    right: 22px;
    bottom: 92px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6B00B6, #C200F0);
    color: #fff;
    box-shadow: 0 12px 30px rgba(107,0,182,0.35);
    cursor: pointer;
    z-index: 1000;
}
.askly-toggle:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(107,0,182,0.45); }

.askly-widget {
    position: fixed;
    right: 22px;
    bottom: 160px;
    width: min(360px, 92vw);
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
}
.askly-widget.open { display: flex; animation: asklyIn 220ms ease; }
@keyframes asklyIn { from { transform: translateY(10px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.askly-header { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; background: linear-gradient(135deg, #6B00B6, #C200F0); color: #fff; }
.askly-title { font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }
.askly-close { background: transparent; border: none; color: #fff; font-size: 18px; cursor: pointer; }
.askly-body { padding: 12px; max-height: 280px; overflow: auto; background: #f8f5ff; }
.askly-message { background: #fff; border-radius: 12px; padding: 10px 12px; margin: 8px 0; box-shadow: 0 3px 8px rgba(0,0,0,0.06); font-size: 14px; }
.askly-bot { background: #ece7ff; }
.askly-user { background: #d6ffe0; align-self: flex-end; }
.askly-input { display: flex; gap: 8px; padding: 10px; border-top: 1px solid #eee; background: #fff; }
.askly-input input { flex: 1; border: 1px solid #e6e6e6; border-radius: 10px; padding: 10px 12px; font-size: 14px; }
.askly-input button { border: none; background: #6B00B6; color: #fff; padding: 10px 12px; border-radius: 10px; cursor: pointer; }

/* Confetti container (overlay) */
.confetti-canvas { position: fixed; inset: 0; pointer-events: none; z-index: 999; display: none; }
.confetti-canvas.show { display: block; }

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #892CDC, #C084FC);
    border: 1px solid rgb(255, 255, 255);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.scroll-to-top.show {
    display: flex;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #892CDC, #C084FC);
    border-radius: 6px;
    border: 2px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #A855F7, #D946EF);
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 1024px) {
    .navbar.scrolled .nav-left { margin-left: 12px; margin-top: 20px;}
    .navbar.scrolled .nav-right { margin-right: 12px; }
    .container { padding: 0 30px; }
    .welcome-title { font-size: 3rem; }
    .features-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
    .testimonials-slider { grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
    
    /* Enhanced navigation for tablets */
    .dropdown-menu {
        min-width: 200px;
        padding: 8px;
    }
    
    .dropdown-menu li a {
        padding: 10px 12px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    /* Navigation improvements */
    .nav-container { 
        padding: 0 15px; 
        height: 65px; /* Slightly smaller for mobile */
    }
    .desktop-nav { display: none; }
    .mobile-menu-toggle { 
        display: flex; 
        z-index: 1001;
        padding: 8px;
        border-radius: 6px;
        transition: background-color 0.3s ease;
    }
    .mobile-menu-toggle:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    .nav-right { display: none; }
    
    /* Logo adjustments */
    .logo-img {
        height: 35px;
        width: auto;
    }
    
    /* Mobile navigation menu improvements */
    .mobile-nav {
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    
    .mobile-nav-content {
        padding: 20px;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .mobile-nav-section {
        margin-bottom: 25px;
    }
    
    .mobile-nav-section h3 {
        font-size: 16px;
        margin-bottom: 12px;
        color: #C6FF00;
        font-weight: 600;
    }
    
    .mobile-nav-links a {
        padding: 14px 16px;
        border-radius: 10px;
        font-size: 15px;
        transition: all 0.3s ease;
    }
    
    .mobile-nav-actions {
        margin-top: 30px;
        gap: 12px;
    }
    
    .mobile-btn {
        padding: 14px 20px;
        font-size: 15px;
        border-radius: 10px;
    }
    
    /* General responsive improvements */
    .welcome-title { font-size: 2rem; }
    .welcome-subtitle { font-size: 15px; }
    .welcome-buttons { flex-direction: column; align-items: center; }
    .welcome-btn { width: 100%; max-width: 280px; justify-content: center; }
    .features-grid { grid-template-columns: 1fr; gap: 30px; }
    .testimonials-slider { grid-template-columns: 1fr; gap: 30px; }
    .footer-content { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .footer-bottom-content { flex-direction: column; text-align: center; }
    .newsletter-form { flex-direction: column; }
    .section-title { font-size: 2rem; }
    .footer-art { display: none; }
}

@media (max-width: 480px) {
    /* Navigation for small phones */
    .nav-container { 
        padding: 0 12px; 
        height: 60px;
    }
    .logo-img {
        height: 30px;
    }
    .logo-text { display: none; }
    
    /* Mobile menu improvements for small screens */
    .mobile-nav-content {
        padding: 15px;
    }
    
    .mobile-nav-section h3 {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .mobile-nav-links a {
        padding: 12px 14px;
        font-size: 15px;
    }
    
    .mobile-nav-links a i {
        font-size: 16px;
    }
    
    .mobile-btn {
        padding: 12px 18px;
        font-size: 15px;
    }
    
    /* Navigation divider adjustments */
    .nav-divider {
        display: none;
    }
    
    /* General improvements */
    .welcome { padding: 60px 0; }
    .welcome-title { font-size: 2rem; }
    .welcome-subtitle { font-size: 15px; }
    .welcome-btn { padding: 14px 24px; font-size: 15px; }
    .features { padding: 60px 0; }
    .feature-card { padding: 30px 20px; }
    .testimonials { padding: 60px 0; }
    .testimonial-card { padding: 30px 20px; }
    .footer-top { padding: 60px 0 30px; }
    .social-links { justify-content: center; }
    .scroll-to-top { bottom: 20px; left: 20px; width: 45px; height: 45px; }
    .section-title { font-size: 2rem; }
}

@media (max-width: 375px) {
    /* Small phone optimizations */
    .nav-container { 
        padding: 0 10px; 
        height: 58px;
    }
    
    .mobile-menu-toggle {
        padding: 6px;
    }
    
    .mobile-menu-toggle span {
        height: 2px;
        width: 20px;
    }
    
    .mobile-nav-content {
        padding: 12px;
    }
    
    .mobile-nav-links a {
        padding: 10px 12px;
        font-size: 15px;
    }
    
    .mobile-btn {
        padding: 10px 16px;
        font-size: 15px;
    }
}

@media (max-width: 360px) {
    .container { padding: 0 15px; }
    
    /* Extra small navigation adjustments */
    .nav-container { 
        padding: 0 8px; 
    }
    
    .logo-img {
        height: 28px;
    }
    
    .welcome-title { font-size: 2rem; }
    .welcome-subtitle { font-size: 15px; }
    .welcome-btn { padding: 12px 20px; font-size: 15px; }
    .feature-card { padding: 25px 15px; }
    .testimonial-card { padding: 25px 15px; }
    .section-title { font-size: 2rem; }
}

/* Footer logo creative hover effects */
/* .footer-logo { position: relative; display: inline-flex; align-items: center; justify-content: center; }
.footer-logo::before { content: ''; position: absolute; inset: -10px; border-radius: 14px; background: radial-gradient(35% 35% at 30% 30%, rgba(139,92,246,0.55), rgba(59,130,246,0.5) 60%, transparent 70%); filter: blur(14px); opacity: 0; transform: scale(0.9); transition: opacity 0.35s ease, transform 0.6s cubic-bezier(0.2,0.8,0.2,1); pointer-events: none; }
.footer-logo::after { content: ''; position: absolute; inset: -2px; border-radius: 12px; background: conic-gradient(from 0deg, #93C5FD, #A78BFA, #60A5FA, #93C5FD); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; padding: 2px; opacity: 0; transition: opacity 0.35s ease; pointer-events: none; }
.footer-logo:hover::before { opacity: 1; transform: scale(1.05); }
.footer-logo:hover::after { opacity: 0.9; animation: spin 2.8s linear infinite; } */

.footer-logo-img { transition: transform 0.35s ease, filter 0.35s ease; }
.footer-logo:hover .footer-logo-img { transform: scale(1.06); filter: drop-shadow(0 0 14px rgba(139,92,246,0.65)) drop-shadow(0 0 26px rgba(59,130,246,0.45)); }

/* Sparkles around the logo */
.footer-logo .sparkle { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: radial-gradient(circle, #fff 0%, rgba(255,255,255,0.2) 60%, transparent 70%); filter: drop-shadow(0 0 8px #93C5FD); pointer-events: none; animation: sparkle 800ms ease-out forwards; }

/* Ripple ring */
.footer-logo .ring { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%) scale(0.8); width: 10px; height: 10px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.45); mix-blend-mode: screen; pointer-events: none; animation: ring 900ms ease-out forwards; }

@keyframes sparkle { from { transform: translate(0,0) scale(0.6); opacity: 1; } to { transform: translate(var(--dx,0), var(--dy,-22px)) scale(0); opacity: 0; } }
@keyframes ring { from { opacity: 0.7; transform: translate(-50%, -50%) scale(0.8);} to { opacity: 0; transform: translate(-50%, -50%) scale(2.4);} }
@keyframes spin { to { transform: rotate(360deg); } }

/* Intensify right art while hovering the footer logo */
.footer.logo-hovering .footer-art { opacity: 1; transform: translateY(0) scale(1.02); }
.footer.logo-hovering .footer-art-img { opacity: 0.35; filter: drop-shadow(0 28px 80px rgba(64,88,243,0.5)) saturate(1.2); }

/* Footer logo switching on scroll */
.footer-logo-img.logo-scrolled {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.scrolled .footer-logo-img.logo-default {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.scrolled .footer-logo-img.logo-scrolled {
    display: block;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* ===== CHATBOT STYLES ===== */

.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Chatbot Toggle Button */
.chatbot-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #6B00B6 0%, #C200F0 100%);
    border: 1px solid rgb(255, 255, 255);
    border-radius: 50px;
    padding: 12px 20px;
    color: white;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(107, 0, 182, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    animation: subtleFloat 3s ease-in-out infinite, breathingGlow 4s ease-in-out infinite;
}

/* Decorative hover effects */
.chatbot-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.chatbot-toggle::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #C6FF00, #FF004C, #C200F0, #6B00B6, #C6FF00);
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
}

/* Floating particles */
.chatbot-toggle .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #C6FF00;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    z-index: 2;
}

.chatbot-toggle .particle:nth-child(1) { top: 20%; left: 10%; }
.chatbot-toggle .particle:nth-child(2) { top: 60%; right: 15%; }
.chatbot-toggle .particle:nth-child(3) { bottom: 30%; left: 20%; }
.chatbot-toggle .particle:nth-child(4) { top: 40%; right: 25%; }

/* Hover animations */
.chatbot-toggle:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(107, 0, 182, 0.4),
        0 0 20px rgba(198, 255, 0, 0.3),
        0 0 40px rgba(194, 0, 240, 0.2);
}

.chatbot-toggle:hover::before {
    left: 100%;
}

.chatbot-toggle:hover::after {
    opacity: 1;
}

.chatbot-toggle:hover .particle {
    animation: particleFloat 1.5s ease-out forwards;
}

.chatbot-toggle:hover .chatbot-icon {
    animation: iconPulse 0.6s ease-in-out;
}

.chatbot-toggle:hover .chatbot-label {
    animation: labelGlow 0.6s ease-in-out;
}

.chatbot-toggle:active {
    transform: translateY(-1px) scale(1.02);
}

/* Keyframe animations */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-20px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-40px) scale(0);
    }
}



@keyframes labelGlow {
    0%, 100% { 
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }
    50% { 
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 25px rgba(198, 255, 0, 0.6);
    }
}

/* Ripple effect */
@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

/* Sparkle effect */
@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
}

/* Subtle floating animation */
@keyframes subtleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2px);
    }
}

/* Breathing glow effect */
@keyframes breathingGlow {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(107, 0, 182, 0.3);
    }
    50% {
        box-shadow: 0 8px 24px rgba(107, 0, 182, 0.4), 0 0 15px rgba(198, 255, 0, 0.2);
    }
}



.chatbot-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.chatbot-label {
    font-weight: 600;
}

/* Chatbot Window */
.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(107, 0, 182, 0.1);
}

.chatbot-window.active {
    display: flex;
    animation: chatbotSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Chatbot Header */
.chatbot-header {
    background: linear-gradient(135deg, #6B00B6 0%, #C200F0 100%);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.chatbot-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-header-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.chatbot-header-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.chatbot-header-info p {
    font-size: 12px;
    opacity: 0.9;
    margin: 0;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Chatbot Messages */
.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.message {
    display: flex;
    flex-direction: column;
    max-width: 80%;
}

.bot-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
}

.message-content {
    padding: 12px 16px;
    border-radius: 18px;
    position: relative;
}

.bot-message .message-content {
    background: #f8f9fa;
    color: #333;
    border-bottom-left-radius: 4px;
}

.user-message .message-content {
    background: linear-gradient(135deg, #6B00B6 0%, #C200F0 100%);
    color: white;
    border-bottom-right-radius: 4px;
}

.message-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.message-time {
    font-size: 11px;
    color: #999;
    margin-top: 4px;
    align-self: flex-end;
}

.user-message .message-time {
    align-self: flex-start;
}

/* Chatbot Input */
.chatbot-input-container {
    padding: 16px 20px;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
}

.chatbot-input-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border-radius: 25px;
    padding: 4px;
    border: 1px solid #e0e0e0;
    transition: border-color 0.2s ease;
}

.chatbot-input-wrapper:focus-within {
    border-color: #6B00B6;
    box-shadow: 0 0 0 3px rgba(107, 0, 182, 0.1);
}

.chatbot-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 16px;
    font-size: 14px;
    background: transparent;
    color: #333;
}

.chatbot-input::placeholder {
    color: #999;
}

.chatbot-send {
    background: linear-gradient(135deg, #6B00B6 0%, #C200F0 100%);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.chatbot-send:hover {
    transform: scale(1.05);
}

.chatbot-send:active {
    transform: scale(0.95);
}

.chatbot-send i {
    font-size: 16px;
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 18px;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    max-width: 80%;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: #999;
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile Responsive for Chatbot */
@media (max-width: 768px) {
    .chatbot-container {
        bottom: 15px;
        right: 15px;
    }
    
    .chatbot-window {
        width: calc(100vw - 30px);
        height: 60vh;
        bottom: 70px;
        right: 0;
        border-radius: 16px;
    }
    
    .chatbot-toggle {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .chatbot-icon {
        width: 20px;
        height: 20px;
    }
    
    .chatbot-messages {
        padding: 16px;
    }
    
    .chatbot-input-container {
        padding: 12px 16px;
    }
    
    .message {
        max-width: 85%;
    }
}

@media (max-width: 480px) {
    .chatbot-window {
        width: calc(100vw - 20px);
        height: 70vh;
        bottom: 65px;
        right: 10px;
    }
    
    .chatbot-toggle {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .chatbot-label {
        display: none;
    }
    
    .chatbot-messages {
        padding: 12px;
    }
    
    .chatbot-input-container {
        padding: 10px 12px;
    }
    
    .message {
        max-width: 90%;
    }
    
    .message-content {
        padding: 10px 14px;
    }
    
    .message-content p {
        font-size: 13px;
    }
}

/* Dark mode support for Chatbot */
@media (prefers-color-scheme: dark) {
    .chatbot-window {
        background: #1a1a1a;
        border-color: rgba(107, 0, 182, 0.2);
    }
    
    .bot-message .message-content {
        background: #2a2a2a;
        color: #e0e0e0;
    }
    
    .chatbot-input-container {
        background: #1a1a1a;
        border-top-color: #333;
    }
    
    .chatbot-input-wrapper {
        background: #2a2a2a;
        border-color: #444;
    }
    
    .chatbot-input {
        color: #e0e0e0;
    }
    
    .chatbot-input::placeholder {
        color: #888;
    }
    
    .typing-indicator {
        background: #2a2a2a;
    }
    
    .typing-dot {
        background: #666;
    }
}

/* Solution Section */
.solution-section {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.solution-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
    position: relative;
}

/* Left Column - Solution Steps */
.solution-steps {
    padding-right: 60px;
}

.solution-heading {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 80px;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

/* Solution badge */
.solution-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0 24px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(62, 0, 164, 0.06);
    color: #3E00A4;
    font-weight: 600;
}
.solution-badge .pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #C40050;
    box-shadow: 0 0 0 0 rgba(196, 0, 80, 0.6);
    animation: pulseDot 1.8s infinite;
}
@keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(196, 0, 80, 0.6); }
    70% { box-shadow: 0 0 0 12px rgba(196, 0, 80, 0); }
    100% { box-shadow: 0 0 0 0 rgba(196, 0, 80, 0); }
}

/* Highlights */
.solution-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
    margin-top: 20px;
    padding-left: 0;
    list-style: none;
}
.solution-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.03);
    transform: translateY(8px);
    opacity: 0;
}
.solution-highlight i { color: #16a34a; }
.solution-section.animated .solution-highlight {
    animation: highlightIn 600ms ease forwards;
}
.solution-section.animated .solution-highlight:nth-child(1) { animation-delay: 120ms; }
.solution-section.animated .solution-highlight:nth-child(2) { animation-delay: 220ms; }
.solution-section.animated .solution-highlight:nth-child(3) { animation-delay: 320ms; }
.solution-section.animated .solution-highlight:nth-child(4) { animation-delay: 420ms; }

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

.steps-list {
    position: relative;
}

.steps-list::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 60px;
    bottom: 0;
    width: 2px;
    background: #3E00A4;
    z-index: 1;
}

.step-item {
    position: relative;
    display: flex;
    margin-bottom: 80px;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #3E00A4;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 32px;
    position: relative;  
}

.step-number span {
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
}

.step-content {
    flex: 1;
    padding-top: 8px;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #3E00A4;
    line-height: 1.2;
}

.step-description {
    font-size: 15px;
    color: #000000;
    line-height: 1.5;
    font-weight: 400;
}

/* Active step highlighting */
.step-item.active .step-number {
    background: #3E00A4;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
    transform: scale(1.05);
}

.step-item.active .step-title {
    color: #C40050;
}

.step-item.active .step-description {
    color: #000000;
}

/* Right Column - Sticky Videos */
.solution-videos {
    position: relative;
}

.videos-sticky-wrapper {
    position: sticky;
    top: 120px;
    width: 100%;
    height: 650px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Video Cards Row */
.video-cards-row {
    display: flex;
    gap: 16px;
    flex: 2;
}

/* Individual Video Card */
.video-card {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    background: white;
    position: relative;
    transition: all 0.6s ease-in-out;
    border: 1px solid #f0f0f0;
    opacity: 0.7;
    transform: scale(0.95);
}

.video-card.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
    border-color: #4A90E2;
}

/* Responsive Video Cards */
@media (max-width: 1200px) {
    .video-cards-row {
        gap: 12px;
    }
}

@media (max-width: 900px) {
    .video-cards-row {
        flex-direction: column;
        gap: 16px;
    }
    
    .video-card {
        height: 200px;
    }
}

@media (max-width: 600px) {
    .videos-sticky-wrapper {
        height: auto;
        position: relative;
        top: 0;
    }
    
    .video-card {
        height: 180px;
    }
}

/* Main Video Card (legacy support) */
.main-video-card {
    flex: 2;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.6s ease-in-out;
    border: 1px solid #f0f0f0;
}

.video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.6s ease-in-out;
    display: block;
    /* border: 4px solid #000000; */
    
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.video-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.video-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.dot.active {
    background: #4A90E2;
    transform: scale(1.2);
}

/* Benefits Card */
.benefits-card {
    flex: 1;
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.benefits-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    /* margin-bottom: 16px; */
    padding: 0;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-icon {
    color: #3E00A4;
    font-size: 2rem;
    margin-right: 12px;
    font-weight: bold;
}

.benefit-text {
    color: #000;
    font-size: 15px;
    font-weight: 400;
}

/* Hover effects */
.step-item:hover .step-number {
    transform: scale(1.08);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.3);
}

.main-video-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
}

.benefits-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
    .solution-container {
        gap: 60px;
    }
    
    .solution-heading {
        font-size: 2rem;
        margin-bottom: 50px;
    }
    
    .videos-sticky-wrapper {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .solution-section {
        padding: 60px 20px;
    }
    
    .solution-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .solution-steps {
        padding-right: 0;
    }
    
    .solution-heading {
        font-size: 2rem;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .videos-sticky-wrapper {
        position: relative;
        top: auto;
        height: 400px;
        flex-direction: row;
        gap: 16px;
    }
    
    .video-card {
        flex: 1;
    }
    
    .step-item {
        margin-bottom: 40px;
    }
    
    .steps-list::before {
        left: 20px;
        top: 70px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        margin-right: 20px;
    }
    
    .step-number span {
        font-size: 1rem;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
    
    .step-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .solution-section {
        padding: 40px 16px;
    }
    
    .solution-container {
        gap: 40px;
    }
    
    .solution-heading {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .videos-sticky-wrapper {
        height: 300px;
        gap: 12px;
    }
    
    .step-item {
        margin-bottom: 30px;
    }
    
    .steps-list::before {
        left: 16px;
        top: 60px;
    }
    
    .step-number {
        width: 36px;
        height: 36px;
        margin-right: 16px;
    }
    
    .step-number span {
        font-size: 0.9rem;
    }
    
    .step-title {
        font-size: 1.1rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .video-label {
        font-size: 0.8rem;
        padding: 6px 12px;
        bottom: 12px;
        left: 12px;
    }
}

/* CTD watermark — centered backdrop logo */
.ctd-watermark {
  position: fixed;               /* stays in place while scrolling */
  top: 50%;                      /* vertically center */
  left: 50%;                     /* horizontally center */
  transform: translate(-50%, -50%); /* perfect centering */
  z-index: 0;                    /* behind interactive content; ensure content has z-index > 0 if needed */
  pointer-events: none;          /* allows clicks through watermark */
  user-select: none;             /* prevent accidental text selection */
  opacity: 0.08;                 /* decreased opacity for more subtle backdrop */
  mix-blend-mode: normal;        /* change to 'multiply' if you want logo to blend differently */
  filter: blur(.2px);            /* tiny blur to soften edges; optional */
  width: 40vw;                   /* larger responsive size on desktop */
  max-width: 600px;              /* bigger maximum size on large screens */
  min-width: 250px;              /* larger minimum size on medium screens */
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center center;
}

/* Ensure the image fills the wrapper while preserving aspect ratio */
.ctd-watermark img {
  width: 100%;
  height: auto;
  display: block;
}

/* Mobile adjustments: reduce size and opacity on small devices while keeping it centered */
@media (max-width: 640px) {
  .ctd-watermark {
    width: 60vw;                /* larger relative size on mobile */
    max-width: 300px;           /* reasonable maximum for mobile */
    min-width: 200px;           /* maintain minimum visibility */
    opacity: 0.05;              /* even more subtle on mobile */
  }
}

/* If your site uses a dark background and the watermark becomes invisible, use this variant:
.ctd-watermark--light img { filter: brightness(2) saturate(.6); opacity: .06; }
*/

/* Overrides: Remove glassmorphism from solution preview icon and match problem icon size */
.ps-illustration-creative {
    background: transparent !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ps-illustration-creative img {
    width: auto !important;
    height: auto !important;
    max-width: 200px !important; /* match .ps-illustration img */
    object-fit: contain !important;
    border-radius: 15px;
}

/* ===================== SOLUTION SECTION ===================== */
/* Modern responsive section with two-column layout */

.solution-section {
    padding: 120px 0;
    /* background: #ffffff; */
    position: relative;
    overflow: visible; /* Allow divider to extend beyond section bounds */
    margin-top: 0; /* Ensure no extra margin affects positioning */
}

.solution-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 80vh;
}

/* Left Side: Text Content */
.solution-text {
    padding-right: 40px;
}

.solution-heading {
    font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

/* Tighten spacing only for Solution section heading and its underline */
.solution-text .solution-heading {
    margin-bottom: 10px;
}

.solution-text .underline {
    margin: 12px 0 24px 0;
}

.solution-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.step-item:nth-child(1) {
    animation-delay: 0.2s;
}

.step-item:nth-child(2) {
    animation-delay: 0.4s;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    position: relative;
    transition: all 0.3s ease;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.step-item:hover .step-number::before {
    opacity: 1;
}

.step-item:hover .step-number {
    background: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.2);
}

.step-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.step-content p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    font-weight: 400;
}

/* Right Side: Videos */
.solution-videos {
    padding-left: 40px;
}

.videos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 450px;
    margin: 0 auto;
}

.video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: fadeInScale 0.8s ease forwards;
}

.video-card:nth-child(1) {
    animation-delay: 0.6s;
}

.video-card:nth-child(2) {
    animation-delay: 0.8s;
}

.video-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.15);
}

.video-player {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: all 0.4s ease;
    aspect-ratio: 16/9;
}

.video-card:hover .video-player {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-family: 'Inter', sans-serif;
}

.video-placeholder i {
    font-size: 3rem;
    margin-bottom: 12px;
    opacity: 0.8;
}

.video-placeholder span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Subtle divider line */
.solution-divider {
    position: absolute;
    top: -140px; /* Extend above the solution section to touch the logo */
    left: 50%;
    transform: translateX(-50%);
    width: 2px; /* Made slightly thicker for better visibility */
    height: calc(100% + 140px); /* Extend the full height plus the offset */
    background: linear-gradient(to bottom, 
        #c8b5f8 0%, /* Start with logo connector color */
        rgba(198, 181, 248, 0.8) 10%,
        rgb(82, 5, 123) 30%, 
        rgb(0, 0, 0) 50%, 
        rgb(137, 44, 220) 70%, 
        rgba(137, 44, 220, 0.6) 90%,
        transparent 100%
    );
    opacity: 0.7;
    z-index: 5; /* Ensure it appears above other elements */
}

/* Responsive Design for Solution Divider */
@media (max-width: 900px) {
    .solution-divider {
        top: -120px; /* Adjust for smaller screens */
        height: calc(100% + 120px);
        width: 1px; /* Thinner on mobile */
    }
}

@media (max-width: 768px) {
    .solution-divider {
        top: -110px; /* Further adjust for mobile */
        height: calc(100% + 110px);
    }
}

@media (max-width: 480px) {
    .solution-divider {
        top: -100px; /* Smallest screens */
        height: calc(100% + 100px);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .solution-container {
        gap: 60px;
        padding: 0 30px;
    }
    
    .solution-text {
        padding-right: 20px;
    }
    
    .solution-videos {
        padding-left: 20px;
    }
    
    .solution-heading {
        font-size: 2rem;
    }
}

@media (max-width: 968px) {
    .solution-container {
        grid-template-columns: 1fr;
        gap: 80px;
        padding: 0 20px;
    }
    
    .solution-text {
        padding-right: 0;
        text-align: center;
    }
    
    .solution-videos {
        padding-left: 0;
    }
    
    .solution-heading {
        font-size: 2rem;
        margin-bottom: 50px;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 380px;
        margin: 0 auto;
    }
    
    .video-player {
        height: 240px;
        aspect-ratio: 16/9;
    }
    
    .solution-divider {
        top: 45%;
        left: 50%;
        width: 60%;
        height: 1px;
        background: linear-gradient(to right, 
            transparent 0%, 
            rgba(107, 114, 128, 0.2) 20%, 
            rgba(107, 114, 128, 0.4) 50%, 
            rgba(107, 114, 128, 0.2) 80%, 
            transparent 100%
        );
    }
}

@media (max-width: 640px) {
    .solution-section {
        padding: 80px 0;
    }
    
    .solution-container {
        gap: 60px;
        padding: 0 16px;
    }
    
    .solution-heading {
        font-size: 2rem;
    }
    
    .step-item {
        gap: 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
    }
    
    .step-content p {
        font-size: 15px;
    }
    
    .video-player {
        height: 180px;
        aspect-ratio: 16/9;
    }
    
    .videos-grid {
        max-width: 280px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .step-number {
        background: #ffffff;
        border: 2px solid #000000;
    }
    
    .video-card {
        border: 2px solid #000000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .solution-heading,
    .step-item,
    .video-card {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .video-card:hover {
        transform: none;
    }
    
    .step-item:hover .step-number {
        transform: none;
    }
}