/* index.php file css below  */
        :root {
            --primary: #2a4b8d;
            --primary-light: #3a6ae0;
            --secondary: #5c6ac4;
            --light: #f6f9fc;
            --dark: #202e78;
            --success: #47c1bf;
            --trustpilot: #00b67a;
        }
        
        body {
            font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
            color: #333;
            line-height: 1.6;
            
        }
        
        /* Top Header Styles */
        .top-header {
            background-color: #1a1a1a;
            color: #fff;
            padding: 8px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #333;
        }
        
        .store-notes {
            background: #f8f9fa;
            border-bottom: 1px solid #e9ecef;
            padding: 8px 0;
            font-size: 0.9rem;
            color: #495057;
        }
        
        .marquee-content {
            display: flex;
            align-items: center;
        }
        
        .marquee-content i {
            margin-right: 8px;
            color: var(--primary);
        }
        
        .top-header a {
            color: #ddd;
            text-decoration: none;
            margin-left: 15px;
            transition: color 0.3s;
        }
        
        .top-header a:hover {
            color: white;
        }
        
        .social-icons a {
            font-size: 1rem;
        }
        
        /* Sticky Navbar */
        .main-navbar {
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary);
        }
        
        /* Enhanced Navigation Styles */
        .navbar-nav .nav-link {
            font-weight: 500;
            position: relative;
        }
        
        .dropdown-menu {
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-radius: 8px;
            padding: 15px 0;
        }
        
        .dropdown-item {
            padding: 8px 20px;
            font-weight: 500;
            transition: all 0.2s;
            position: relative;
        }
        
        .dropdown-item:hover {
            background-color: rgba(34, 85, 187, 0.05);
            color: var(--primary);
            /* padding-left: 25px; */
        }
        
        .dropdown-toggle::after {
            margin-left: 5px;
        }
        
        /* Improved Megamenu Styles */
        .megamenu {
            position: absolute;
            width: 100%;
            left: 0 !important;
            right: auto !important;
            top: 100%;
            padding: 40px 0 45px;
            background: #ffffff;
            border: none;
            border-top: 3px solid var(--primary);
            border-radius: 0;
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
            margin-top: 0;
            transform: none !important;
            animation: slideDown 0.3s ease-out;
        }
        
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .megamenu .container {
            max-width: 1200px;
            width: 100%;
            padding-right: 30px;
            padding-left: 30px;
            margin-right: auto;
            margin-left: auto;
        }
        
        .megamenu .row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin: 0;
        }
        
        .megamenu .col-lg-3 {
            padding: 0;
        }
        
        .megamenu h6 {
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 1rem;
            padding-bottom: 8px;
            border-bottom: 2px solid rgba(42, 75, 141, 0.1);
        }
        
        .megamenu ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .megamenu li {
            margin-bottom: 5px;
        }
        
        .megamenu a {
            color: #555;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
            display: flex;
            align-items: center;
        }
        
        .megamenu a:hover {
            color: var(--primary);
        }
        
        .megamenu-icon {
            width: 40px;
            height: 40px;
            background: rgba(42, 75, 141, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            color: var(--primary);
            transition: all 0.3s;
        }
        
        .megamenu-feature {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding: 10px;
            border-radius: 8px;
            transition: all 0.3s;
        }
        
        .megamenu-feature:hover {
            background: rgba(42, 75, 141, 0.05);
        }
        
        .megamenu-feature:hover .megamenu-icon {
            background: var(--primary);
            color: white;
        }
        
        .megamenu-feature-content h6 {
            margin-bottom: 5px;
            border: none;
            padding: 0;
        }
        
        .megamenu-feature-content p {
            font-size: 0.8rem;
            color: #777;
            margin: 0;
        }
        
        .megamenu-highlight {
            background: linear-gradient(135deg, #f6f9fc 0%, #e9edf5 100%);
            border-radius: 10px;
            padding: 20px;
            height: 100%;
        }
        
        .megamenu-highlight h5 {
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .megamenu-highlight p {
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        /* Submenu of Submenu (Hover) */
        .dropdown-submenu {
            position: relative;
        }
        
        .dropdown-submenu > .dropdown-menu {
            top: 0;
            left: 100%;
            margin-top: -15px;
            margin-left: 0;
            border-radius: 8px;
            display: none;
            min-width: 200px;
        }
        
        .dropdown-submenu:hover > .dropdown-menu {
            display: block;
        }
        
        .dropdown-submenu > a:after {
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            content: "\f054";
            float: right;
            margin-left: 10px;
            font-size: 0.8rem;
        }
        
        .dropdown-submenu:hover > a:after {
            color: var(--primary);
        }
        
        /* Buttons */
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            padding: 10px 25px;
            font-weight: 600;
        }
        
        .btn-primary:hover {
            background-color: var(--primary-light);
            border-color: var(--primary-light);
        }
        
        .btn-outline-primary {
            color: var(--primary);
            border-color: var(--primary);
        }
        
        .btn-outline-primary:hover {
            background-color: var(--primary);
            border-color: var(--primary);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #f6f9fc 0%, #e9edf5 100%);
            padding: 100px 0;
        }
        
        .hero h1 {
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 30px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            color: var(--dark);
        }
        
        .section-title h2 {
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .feature-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
            transition: transform 0.3s;
            border-top: 4px solid var(--primary);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .how-it-works {
            background-color: var(--light);
            padding: 100px 0;
        }
        
        .step-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            height: 100%;
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin: 0 auto 20px;
        }
        
        .pricing-card {
            border: 1px solid #e1e5e9;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .pricing-header {
            background: var(--primary);
            color: white;
            padding: 25px;
            text-align: center;
        }
        
        .pricing-body {
            padding: 30px;
        }
        
        .price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark);
        }
        
        .price-period {
            color: #666;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin: 15px 0;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .client-info {
            display: flex;
            align-items: center;
        }
        
        .client-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            margin-right: 15px;
        }
        
        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .footer {
            background: #1a1a1a;
            color: #aaa;
            padding: 60px 0 0;
        }
        
        .footer h5 {
            color: white;
            margin-bottom: 20px;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #aaa;
            text-decoration: none;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .copyright {
            background: #111;
            padding: 25px 0;
        }
        
        .copyright-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .payment-icons {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .payment-icon {
            font-size: 1.8rem;
            color: #ddd;
            transition: color 0.3s;
        }
        
        .payment-icon:hover {
            color: white;
        }
        
        .platform-badge {
            background: #f1f5ff;
            border-radius: 50px;
            padding: 10px 20px;
            display: inline-flex;
            align-items: center;
            margin: 5px;
            font-weight: 500;
        }
        
        .platform-badge i {
            margin-right: 8px;
            color: var(--primary);
        }
        
        /* Trustpilot Reviews Slider Styles */
        .trustpilot-slider {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .trustpilot-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            border-bottom: 1px solid #eee;
            padding-bottom: 15px;
        }
        
        .trustpilot-logo {
            color: var(--trustpilot);
            font-size: 2rem;
            margin-right: 10px;
        }
        
        .trustpilot-rating {
            display: flex;
            align-items: center;
            margin-left: auto;
        }
        
        .trustpilot-stars {
            color: var(--trustpilot);
            margin-right: 10px;
        }
        
        .review-slider {
            position: relative;
            height: 220px;
            overflow: hidden;
        }
        
        .review-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }
        
        .review-item.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        .review-content {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.6;
            color: #444;
        }
        
        .review-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            color: #777;
        }
        
        .review-author {
            font-weight: 600;
            color: #333;
        }
        
        .review-time {
            font-style: italic;
        }
        
        .review-indicators {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ddd;
            margin: 0 5px;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .indicator.active {
            background: var(--trustpilot);
        }
        
        /* Circular Progress Back to Top Button */
        .progress-wrap {
            position: fixed;
            right: 30px;
            bottom: 30px;
            height: 60px;
            width: 60px;
            cursor: pointer;
            display: block;
            border-radius: 50px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        
        .progress-wrap.active-progress {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .progress-wrap::after {
            position: absolute;
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            content: '\f062';
            text-align: center;
            line-height: 60px;
            font-size: 1.2rem;
            color: var(--primary);
            left: 0;
            top: 0;
            height: 60px;
            width: 60px;
            cursor: pointer;
            display: block;
            z-index: 1;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        
        .progress-wrap:hover::after {
            color: var(--primary-light);
        }
        
        .progress-wrap svg path {
            fill: none;
        }
        
        .progress-wrap svg.progress-circle path {
            stroke: var(--primary);
            stroke-width: 4;
            box-sizing: border-box;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        
        /* 4 Easy Steps Section */
        .easy-steps {
            padding: 100px 0;
            background: white;
        }
        
        .step-icon {
            width: 80px;
            height: 80px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 20px;
        }
        
        /* Advantages Section */
        .advantages {
            padding: 100px 0;
            background: var(--light);
        }
        
        .advantage-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
            text-align: center;
            transition: transform 0.3s;
        }
        
        .advantage-card:hover {
            transform: translateY(-5px);
        }
        
        .advantage-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        /* FAQ Section */
        .faq-section {
            background: white;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: rgba(42, 75, 141, 0.1);
            color: var(--primary);
            font-weight: 600;
        }
        
        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(42, 75, 141, 0.25);
        }
        
        /* Blog Section */
        .blog-section {
            padding: 100px 0;
            background: var(--light);
        }
        
        .blog-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
            height: 100%;
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
        }
        
        .blog-image {
            height: 200px;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }
        
        .blog-content {
            padding: 25px;
        }
        
        .blog-meta {
            display: flex;
            font-size: 0.85rem;
            color: #666;
            margin-bottom: 10px;
        }
        
        .blog-date {
            margin-right: 15px;
        }
        
        .blog-title {
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .blog-excerpt {
            color: #666;
            margin-bottom: 15px;
        }
        
        .blog-link {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
        }
        
        .blog-link:hover {
            text-decoration: underline;
        }
        
        .hover-primary:hover {
            color: #6777ef !important;
            text-decoration: underline !important;
        }
        
        .blog-section .btn {
            margin-top: 30px;
        }
        
        /* Popup Notice */
        .notice-popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }
        
        .notice-popup.show {
            opacity: 1;
            visibility: visible;
        }
        
        .notice-content {
            background: white;
            border-radius: 10px;
            padding: 30px;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            position: relative;
            transform: translateY(20px);
            transition: transform 0.3s;
        }
        
        .notice-popup.show .notice-content {
            transform: translateY(0);
        }
        
        .notice-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            font-size: 1.2rem;
            color: #666;
            cursor: pointer;
        }
        
        .notice-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .notice-icon {
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }
        
        /* Email Form Styles */
        .email-form {
            margin-top: 20px;
        }
        
        .form-control {
            border-radius: 8px;
            padding: 12px 15px;
            border: 1px solid #ddd;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.2rem rgba(42, 75, 141, 0.25);
        }
        
        .form-label {
            font-weight: 600;
            margin-bottom: 8px;
            color: #333;
        }
        
        .form-text {
            font-size: 0.8rem;
            color: #666;
            margin-top: 5px;
        }
        
        /* NEW: Improved Megamenu Design */
        .megamenu-section {
            position: relative;
        }
        
        .megamenu-section::after {
            content: '';
            position: absolute;
            left: -7px;
            top: 0;
            height: 100%;
            width: 1px;
            background: linear-gradient(to bottom, transparent 0%, #d0d0d0 20%, #d0d0d0 80%, transparent 100%);
        }
        
        .megamenu-section:last-child::after,
        .megamenu .col-lg-3:last-child .megamenu-section::after {
            display: none;
        }
        
        .megamenu .list-unstyled {
            margin-bottom: 0;
            padding-left: 0;
            list-style: none;
        }
        
        .megamenu .list-unstyled li {
            margin-bottom: 0;
        }
        
        .megamenu-section-title {
            color: #1a1a1a;
            font-weight: 700;
            margin-bottom: 18px;
            margin-top: 0;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            padding-bottom: 12px;
            border-bottom: 2px solid rgba(42, 75, 141, 0.15);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .megamenu-section-title i {
            margin-right: 10px;
            font-size: 1.1rem;
            color: var(--primary);
            background: rgba(42, 75, 141, 0.08);
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
        }
        
        .megamenu-link {
            display: flex;
            align-items: center;
            padding: 10px 12px;
            color: #4a4a4a;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            position: relative;
            overflow: hidden;
        }
        
        .megamenu-link::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 3px;
            background: var(--primary);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }
        
        .megamenu-link:hover {
            color: var(--primary);
            background-color: rgba(42, 75, 141, 0.08);
            transform: translateX(5px);
            box-shadow: 0 2px 8px rgba(42, 75, 141, 0.1);
        }
        
        .megamenu-link:hover::before {
            transform: scaleY(1);
        }
        
        .megamenu-link i {
            margin-right: 12px;
            width: 20px;
            text-align: center;
            color: var(--primary);
            font-size: 0.9rem;
            transition: transform 0.3s ease;
        }
        
        .megamenu-link:hover i {
            transform: scale(1.1);
        }
        
        .megamenu-feature-box {
            background: linear-gradient(135deg, #f8fbff 0%, #e8f0f9 100%);
            border-radius: 12px;
            padding: 28px;
            border: 2px solid rgba(42, 75, 141, 0.15);
            box-shadow: 0 8px 24px rgba(42, 75, 141, 0.08);
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .megamenu-feature-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary) 0%, #47c1bf 100%);
        }
        
        .megamenu-feature-box:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(42, 75, 141, 0.12);
        }
        
        .megamenu-feature-box h5 {
            color: var(--primary);
            margin-bottom: 12px;
            font-size: 1.1rem;
            font-weight: 700;
            display: flex;
            align-items: center;
        }
        
        .megamenu-feature-box h5::before {
            content: '⚡';
            margin-right: 8px;
            font-size: 1.2rem;
        }
        
        .megamenu-feature-box p {
            font-size: 0.88rem;
            margin-bottom: 15px;
            color: #555;
            line-height: 1.7;
        }
        
        /* NEW: Improved Submenu Design */
        .dropdown-submenu {
            position: relative;
        }
        
        .dropdown-submenu > .dropdown-menu {
            top: 0;
            left: 100%;
            margin-top: -10px;
            margin-left: 0;
            border-radius: 8px;
            display: none;
            min-width: 220px;
            box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
            padding: 15px 0;
        }
        
        .dropdown-submenu:hover > .dropdown-menu {
            display: block;
        }
        
        .dropdown-submenu > a:after {
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            content: "\f054";
            float: right;
            margin-left: 10px;
            font-size: 0.8rem;
            transition: transform 0.3s;
        }
        
        .dropdown-submenu:hover > a:after {
            color: var(--primary);
            transform: translateX(3px);
        }
        
        .dropdown-submenu .dropdown-item {
            padding: 8px 20px;
            display: flex;
            align-items: center;
        }
        
        .dropdown-submenu .dropdown-item i {
            margin-right: 10px;
            width: 16px;
            text-align: center;
            color: var(--primary);
        }
        
        @media (max-width: 768px) {
            body {
                padding-top: 180px;
            }
            
            .hero {
                padding: 60px 0;
            }
            
            .trustpilot-slider {
                margin-top: 40px;
            }
            
            .top-header .d-flex {
                flex-direction: column;
                text-align: center;
            }
            
            .top-header .d-flex > div {
                margin-bottom: 5px;
            }
            
            .popup-slide {
                display: none !important;
            }
            
            .copyright-content {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .progress-wrap {
                right: 15px;
                bottom: 15px;
                height: 50px;
                width: 50px;
            }
            
            .progress-wrap::after {
                line-height: 50px;
                height: 50px;
                width: 50px;
            }
            
            /* Mobile Navigation Adjustments */
            .navbar-nav .dropdown-menu {
                box-shadow: none;
                border: 1px solid #eee;
                margin-top: 5px;
            }
            
            .megamenu {
                position: static !important;
                transform: none !important;
                width: 100%;
                box-shadow: none;
                padding: 0;
            }
            
            .dropdown-submenu > .dropdown-menu {
                position: static;
                margin-left: 15px;
                border: none;
                box-shadow: none;
            }
            
            .megamenu-section {
                border-right: none;
                border-bottom: 1px solid #eee;
                padding: 15px 0;
                margin-bottom: 0;
            }
            
            .megamenu-section:last-child {
                border-bottom: none;
            }
        }

/* index.php file css Above  */





/* Order.php file Css below */

/* payment method design below  */
/* Custom Payment Buttons */

#methodButtons button {
    background-color: white;
    color: black;
    border: none;
    padding: 10px 20px;
    margin: 8px;
    border-radius: 8px;
    font-weight: normal;
    font-size: 15px;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 3px 8px rgba(0, 136, 204, 0.25);
}

#methodButtons button:hover {
    background-color: rgb(0, 110, 170);
    color: white;
    box-shadow: 0 4px 10px rgba(0, 136, 204, 0.4);
    transform: translateY(-2px);
}

#methodButtons button.active {
    background-color: rgb(0, 102, 155);
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.5);
    transform: scale(1.03);
}

.wallet-address {
    margin-bottom: 20px;
}

.copy-btn {
    margin-top: 10px;
    background-color: rgb(0, 136, 204);
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.copy-btn:hover {
    background-color: rgb(0, 110, 170);
}

.qr-code-image {
    width: 160px;
    height: 160px;
    border-radius: 8px;
}

.payment-methods {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-primarysk {
    background-color: #0088cc !important;
    color: white !important;
    font-weight: 600 !important;
}

/* Page style below  */


.order-section {
    min-height: 100vh;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.order-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.package-info {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

.package-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0088cc;
    text-align: center;
    margin-bottom: 1rem;
}

.package-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 136, 204, 0.1);
    border: 1px solid rgba(0, 136, 204, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.package-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0088cc;
}

.package-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0088cc;
}

.order-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 3rem;
}

.order-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    text-align: center;
    margin-bottom: 1rem;
}

.order-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 3rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.form-group label.required::after {
    content: " *";
    color: #ef4444;
}

.form-group input {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.form-group input:focus {
    border-color: #0088cc;
    box-shadow: 0 0 0 3px rgba(0, 136, 204, 0.1);
}

.form-group input::placeholder {
    color: #9ca3af;
}

/* Custom Dropdown Styling */
.custom-dropdown {
    position: relative;
    width: 100%;
}

.dropdown-selected {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    color: #1e293b;
}

.dropdown-selected:hover,
.dropdown-selected.active {
    border-color: #0088cc;
    box-shadow: 0 0 0 3px rgba(0, 136, 204, 0.1);
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    color: #64748b;
    font-size: 0.9rem;
}

.dropdown-selected.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-options {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(0, 136, 204, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.3s ease;
}

.dropdown-options.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-option {
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 136, 204, 0.1);
    color: #1e293b;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.dropdown-option:last-child {
    border-bottom: none;
}

.dropdown-option:hover {
    background: rgba(0, 136, 204, 0.1);
    color: #0088cc;
}

.dropdown-option.selected {
    background: rgba(0, 136, 204, 0.15);
    color: #0088cc;
    font-weight: 600;
}

.dropdown-option.default {
    border-bottom: 2px solid rgba(0, 136, 204, 0.2);
    font-weight: 600;
    background: rgba(0, 136, 204, 0.05);
}

/* Custom scrollbar for dropdown */
.dropdown-options::-webkit-scrollbar {
    width: 6px;
}

.dropdown-options::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.dropdown-options::-webkit-scrollbar-thumb {
    background: rgba(0, 136, 204, 0.3);
    border-radius: 10px;
}

.dropdown-options::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 136, 204, 0.5);
}

/* Mobile responsive fixes */
@media (max-width: 768px) {

    .form-group input,
    .form-group select,
    .dropdown-selected {
        padding: 1rem 1.25rem;
        font-size: 16px;
        /* Prevents zoom on iOS */
    }

    .form-group input[type="url"] {
        word-break: break-all;
        overflow-wrap: anywhere;
        white-space: nowrap;
        text-overflow: ellipsis;
        max-width: 100%;
    }

    .dropdown-option {
        padding: 0.875rem 1.25rem;
        font-size: 16px;
    }

    .dropdown-options {
        max-height: 250px;
    }

    /* Order confirmation mobile fixes */
    .summary-value {
        word-break: break-all;
        overflow-wrap: anywhere;
        max-width: 100%;
        min-width: 0;
        flex: 1;
        text-align: right;
    }

    .summary-row {
        align-items: flex-start;
        gap: 0.75rem;
    }

    .summary-label {
        flex-shrink: 0;
        min-width: 0;
        white-space: nowrap;
    }

    .order-summary {
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {

    .form-group input,
    .form-group select,
    .dropdown-selected {
        padding: 0.875rem 1rem;
        font-size: 16px;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .help-text {
        font-size: 0.875rem;
        line-height: 1.4;
    }

    /* Enhanced mobile fixes for very small screens */
    .summary-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .summary-label {
        font-weight: 600;
        color: #374151;
        white-space: normal;
    }

    .summary-value {
        text-align: left;
        word-break: break-all;
        overflow-wrap: anywhere;
        padding-left: 1rem;
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .order-confirmation {
        padding: 1.5rem;
    }
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.custom-checkbox {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
}

.custom-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    margin-right: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.custom-checkbox input:checked~.checkmark {
    background: #0088cc;
    border-color: #0088cc;
}

.checkmark::after {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: white;
    font-size: 0.8rem;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease;
}

.custom-checkbox input:checked~.checkmark::after {
    opacity: 1;
    transform: scale(1);
}

.file-upload-section {
    display: none;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(0, 136, 204, 0.05);
    border: 2px dashed rgba(0, 136, 204, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.file-upload-section.show {
    display: block;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.file-upload-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0088cc;
    margin-bottom: 1rem;
}

.file-upload-area {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: 2px dashed #0088cc;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.file-upload-area:hover {
    background: rgba(0, 136, 204, 0.05);
    border-color: #006699;
}

.file-upload-area.dragover {
    background: rgba(0, 136, 204, 0.1);
    border-color: #006699;
    transform: scale(1.02);
}

.upload-icon {
    font-size: 2.5rem;
    color: #0088cc;
    margin-bottom: 1rem;
}

.upload-text {
    text-align: center;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

.upload-text strong {
    color: #0088cc;
    font-weight: 600;
}

.file-input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-info {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    color: #059669;
}

.file-info.show {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.help-text {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 0.5rem;
    line-height: 1.5;
}

.submit-btn {
    width: 100%;
    padding: 1.25rem 2rem;
    background: #0088cc;
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.3);
}

.submit-btn:hover {
    background: #006699;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 136, 204, 0.4);
}

.submit-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.order-confirmation {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 3rem;
    display: none;
}

.order-confirmation.show {
    display: block;
    animation: slideIn 0.5s ease-out;
}

.confirmation-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    text-align: center;
    margin-bottom: 2rem;
}

.order-summary {
    background: rgba(0, 136, 204, 0.1);
    border: 1px solid rgba(0, 136, 204, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 136, 204, 0.1);
}

.summary-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    font-weight: 700;
    font-size: 1.2rem;
    color: #0088cc;
}

.summary-label {
    color: #64748b;
    font-weight: 500;
}

.summary-value {
    color: #1e293b;
    font-weight: 600;
}

.confirmation-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.edit-btn {
    padding: 1rem 2rem;
    background: transparent;
    color: #64748b;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.edit-btn:hover {
    background: #f8fafc;
    border-color: #0088cc;
    color: #0088cc;
}

.confirm-btn {
    padding: 1rem 2rem;
    background: #0088cc;
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.3);
}

.confirm-btn:hover {
    background: #006699;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 136, 204, 0.4);
}

.payment-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 3rem;
    display: none;
}

.payment-section.show {
    display: block;
    animation: slideIn 0.5s ease-out;
}

.payment-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    text-align: center;
    margin-bottom: 1rem;
}

.payment-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 3rem;
}

.payment-amount {
    background: linear-gradient(135deg, #0088cc, #06b6d4);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.3);
}

.payment-timer {
    background: rgba(239, 68, 68, 0.9);
    color: white;
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
    animation: timerPulse 2s ease-in-out infinite;
}

@keyframes timerPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.timer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.timer-display {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Monaco', 'Consolas', monospace;
}

.timer-expired {
    background: rgba(107, 114, 128, 0.9);
    animation: none;
}

.payment-complete-btn {
    width: 100%;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    margin-bottom: 2rem;
}

.payment-complete-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

.payment-complete-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.verification-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 3rem;
    display: none;
    text-align: center;
}

.verification-section.show {
    display: block;
    animation: slideIn 0.5s ease-out;
}

.verification-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.verification-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.verification-spinner {
    width: 100px;
    height: 100px;
    border: 4px solid #e2e8f0;
    border-top: 4px solid #0088cc;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 2rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.verification-status {
    background: rgba(0, 136, 204, 0.1);
    border: 1px solid rgba(0, 136, 204, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.status-step {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #64748b;
}

.status-step.active {
    color: #0088cc;
}

.status-step.completed {
    color: #10b981;
}

.status-step i {
    font-size: 1.2rem;
}

.payment-failed-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 3rem;
    display: none;
    text-align: center;
}

.payment-failed-section.show {
    display: block;
    animation: slideIn 0.5s ease-out;
}

.failed-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #dc2626;
    margin-bottom: 1rem;
}

.failed-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.failed-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 3rem;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}

.failed-message {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.failed-message h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 1rem;
}

.failed-message p {
    color: #991b1b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.failed-message ul {
    color: #991b1b;
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
    margin: 0;
    padding-left: 1.5rem;
}

.failed-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.support-contact-btn {
    padding: 1.25rem 2rem;
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
    text-decoration: none;
}

.support-contact-btn:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(239, 68, 68, 0.4);
    color: white;
    text-decoration: none;
}

.retry-payment-btn {
    padding: 1.25rem 2rem;
    background: transparent;
    color: #64748b;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.retry-payment-btn:hover {
    background: #f8fafc;
    border-color: #0088cc;
    color: #0088cc;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

.amount-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.amount-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.amount-currency {
    font-size: 1.1rem;
    opacity: 0.9;
}

.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.wallet-address {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.wallet-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.wallet-address-text {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.9rem;
    color: #0088cc;
    word-break: break-all;
    margin-bottom: 1rem;
    user-select: all;
}

.copy-btn {
    background: #0088cc;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.copy-btn:hover {
    background: #006699;
}

.qr-code {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.qr-code-image {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    margin: 0 auto 1rem;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.payment-instructions {
    background: rgba(255, 248, 220, 0.9);
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.instructions-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.instructions-list {
    color: #78350f;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    padding-left: 1.5rem;
}

.instructions-list li {
    margin-bottom: 0.5rem;
}

.back-to-order {
    display: flex;
    justify-content: center;
}

.back-btn {
    background: transparent;
    color: #64748b;
    border: 2px solid #e2e8f0;
    padding: 1rem 2rem;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.back-btn:hover {
    background: #f8fafc;
    border-color: #0088cc;
    color: #0088cc;
}

.contact-info {
    text-align: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #0088cc;
    color: white;
    padding: 1rem 2rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-email:hover {
    background: #006699;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .order-section {
        padding: 6rem 0 2rem;
    }

    .order-container {
        padding: 0 1rem;
    }

    .order-form,
    .order-confirmation,
    .payment-section {
        padding: 2rem;
    }

    .order-title,
    .confirmation-title,
    .payment-title {
        font-size: 2rem;
    }

    .package-details {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .upload-text {
        font-size: 0.9rem;
    }

    .payment-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .confirmation-buttons,
    .failed-actions {
        flex-direction: column;
    }

    .wallet-address-text {
        font-size: 0.8rem;
    }

    .amount-value,
    .timer-display {
        font-size: 2rem;
    }

    .verification-title,
    .failed-title {
        font-size: 2rem;
    }

    .verification-spinner,
    .failed-icon {
        width: 80px;
        height: 80px;
    }

    .failed-icon {
        font-size: 2.5rem;
    }
}


/* End of order.php file style */


/* Popup-Slide Order Notification System */
.popup-slide {
    position: fixed;
    z-index: 99999;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

.popup-slide.show {
    opacity: 1;
}

.popup-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

/* Position Classes */
.popup-slide.bottom-left {
    bottom: 30px;
    left: 30px;
    transform: translateX(-400px);
}

.popup-slide.bottom-left.show {
    transform: translateX(0);
}

.popup-slide.bottom-right {
    bottom: 30px;
    right: 30px;
    transform: translateX(400px);
}

.popup-slide.bottom-right.show {
    transform: translateX(0);
}

.popup-slide.top-left {
    top: 30px;
    left: 30px;
    transform: translateX(-400px);
}

.popup-slide.top-left.show {
    transform: translateX(0);
}

.popup-slide.top-right {
    top: 30px;
    right: 30px;
    transform: translateX(400px);
}

.popup-slide.top-right.show {
    transform: translateX(0);
}

/* Middle Positions */
.popup-slide.middle-left {
    top: 50%;
    left: 30px;
    transform: translateX(-400px) translateY(-50%);
}

.popup-slide.middle-left.show {
    transform: translateX(0) translateY(-50%);
}

.popup-slide.middle-right {
    top: 50%;
    right: 30px;
    transform: translateX(400px) translateY(-50%);
}

.popup-slide.middle-right.show {
    transform: translateX(0) translateY(-50%);
}

/* Animation: Fade */
.popup-slide.fade {
    transform: translateX(0) !important;
}

.popup-slide.fade:not(.show) {
    opacity: 0;
}

/* Animation: Bounce */
.popup-slide.bounce {
    transform: translateX(0) !important;
}

.popup-slide.bounce.show {
    animation: popupBounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes popupBounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

/* Avatar */
.popup-slide .avatar {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-slide .avatar svg {
    display: block;
}

/* Content */
.popup-slide .where-buy {
    flex: 1;
    min-width: 0;
    line-height: 1.5;
}

.popup-slide .where-buy strong {
    font-weight: 600;
    font-size: 14px;
    display: block;
    margin-bottom: 2px;
}

.popup-slide .location {
    font-weight: 600;
}

.popup-slide .purchased-offer {
    font-size: 13px;
    font-weight: 400;
}

.popup-slide .product-name {
    font-size: 13px;
    font-weight: 600;
}

.popup-slide .time {
    font-size: 12px;
    font-style: italic;
    margin-right: 8px;
}

.popup-slide .verified {
    font-size: 11px;
    opacity: 0.7;
    font-style: normal;
}

/* Close Button */
.popup-slide .close-popup {
    position: absolute;
    top: 8px;
    right: 12px;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    padding: 4px;
    transition: opacity 0.2s;
    font-weight: bold;
}

.popup-slide .close-popup:hover {
    opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .popup-slide {
        font-size: 13px;
    }
    
    .popup-slide.bottom-left,
    .popup-slide.bottom-right {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
    
    .popup-slide.middle-left,
    .popup-slide.middle-right {
        top: 50%;
        left: 20px;
        right: 20px;
        transform: translateY(-50%) !important;
    }
    
    .popup-slide.top-left,
    .popup-slide.top-right {
        top: 20px;
        left: 20px;
        right: 20px;
    }
    
    .popup-content {
        gap: 10px;
    }
    
    .popup-slide .where-buy strong {
        font-size: 13px;
    }
    
    .popup-slide .purchased-offer,
    .popup-slide .product-name {
        font-size: 12px;
    }
}