 {} *{} #IE-warning { display: none; position: fixed; width: 100%; height: 100%; z-index: 9999; background: white; } .IE-warning-message { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); text-align: center; } /* Custom CSS for VPN Landing Page */ * { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; } body { line-height: 1.6; color: #333; } .container { max-width: 1200px; margin: 0 auto; padding: 20px; } header { text-align: center; margin-bottom: 40px; } h1 { color: #0066cc; font-size: 2.5rem; margin-bottom: 10px; } .subtitle { color: #555; font-size: 1.2rem; max-width: 800px; margin: 0 auto; } .section { margin-bottom: 40px; } h2 { color: #333; margin-bottom: 20px; } .info-box { background-color: #f8f9fa; border-left: 4px solid #0066cc; padding: 20px; border-radius: 5px; margin-bottom: 30px; } #map-container { width: 100%; height: 500px; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); margin: 20px 0; } .feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 30px; } .feature-item { background-color: #f8f9fa; padding: 20px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); } .feature-item h3 { color: #0066cc; margin-bottom: 10px; } /* FAQ Section Styles */ .faq-section { margin-top: 40px; padding: 20px; background-color: #f9f9f9; border-radius: 8px; } .faq-section h2 { text-align: center; margin-bottom: 30px; color: #0066cc; } .faq-item { margin-bottom: 15px; border-bottom: 1px solid #eee; padding-bottom: 15px; } .faq-item:last-child { border-bottom: none; padding-bottom: 0; } .faq-question { font-weight: bold; color: #333; cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 10px 0; } .faq-question::after { content: '+'; font-size: 1.5rem; color: #0066cc; transition: transform 0.3s ease; } .faq-item.active .faq-question::after { transform: rotate(45deg); } .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; color: #555; padding-left: 10px; line-height: 1.7; } footer { text-align: center; padding: 20px 0; margin-top: 40px; border-top: 1px solid #eee; color: #666; } /* Chatbot Styles */ #chatbot-container { position: fixed; bottom: 20px; right: 20px; width: 380px; /* Increased width for better readability */ height: 0; background-color: white; border-radius: 10px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); overflow: hidden; transition: height 0.3s ease-in-out; z-index: 1000; display: flex; flex-direction: column; } #chatbot-container.visible { height: 550px; /* Increased height for better visibility */ } .chatbot-header { background-color: #0066cc; color: white; padding: 15px; display: flex; justify-content: space-between; align-items: center; } .chatbot-content { flex: 1; padding: 15px; overflow-y: auto; display: flex; flex-direction: column; } .close-button { background: none; border: none; color: white; font-size: 18px; cursor: pointer; } .message { max-width: 85%; /* Increased for better readability */ padding: 12px 16px; /* Increased padding */ margin: 6px 0; border-radius: 18px; font-size: 15px; /* Increased font size */ line-height: 1.5; } .message.bot { align-self: flex-start; background-color: #f0f0f0; color: black; } .message.user { align-self: flex-end; background-color: #0066cc; color: white; } .options-container { display: flex; flex-wrap: wrap; margin: 10px 0; } .option-button { background-color: #f0f0f0; border: 1px solid #ddd; border-radius: 18px; padding: 10px 16px; /* Increased padding */ margin: 5px; cursor: pointer; font-size: 15px; /* Increased font size */ transition: all 0.2s; } .option-button:hover { background-color: #e0e0e0; transform: scale(1.03); /* Subtle grow effect on hover */ } /* Multi-select checkbox styles */ .checkbox-container { display: flex; flex-direction: column; margin: 10px 0; max-width: 90%; background-color: #f9f9f9; border-radius: 10px; padding: 10px; align-self: flex-start; } .checkbox-option { display: flex; align-items: center; margin: 5px 0; cursor: pointer; } .checkbox-option input[type="checkbox"] { margin-right: 10px; cursor: pointer; width: 18px; height: 18px; } .checkbox-option label { cursor: pointer; font-size: 15px; } .submit-button { background-color: #0066cc; color: white; border: none; border-radius: 18px; padding: 10px 20px; margin-top: 10px; cursor: pointer; font-size: 15px; align-self: flex-end; transition: all 0.2s; } .submit-button:hover { background-color: #0055aa; transform: scale(1.03); } .recommendation-card { border: 1px solid #e0e0e0; border-radius: 12px; /* Increased roundness */ padding: 20px; /* Increased padding */ margin-top: 16px; background-color: #f9f9f9; box-shadow: 0 3px 10px rgba(0,0,0,0.05); /* Added subtle shadow */ } .recommendation-card h3 { color: #0066cc; margin-top: 0; margin-bottom: 12px; font-size: 18px; /* Increased font size */ } .cta-button { display: inline-block; background-color: #ff6600; /* Changed to orange for better visibility */ color: white; padding: 12px 24px; /* Increased padding */ text-decoration: none; border-radius: 6px; font-weight: bold; margin-top: 15px; font-size: 16px; /* Increased font size */ text-align: center; transition: all 0.3s; box-shadow: 0 4px 8px rgba(255, 102, 0, 0.2); /* Added shadow for depth */ } .cta-button:hover { background-color: #e55c00; /* Darker on hover */ transform: translateY(-2px); /* Slight lift effect */ box-shadow: 0 6px 12px rgba(255, 102, 0, 0.3); /* Enhanced shadow on hover */ } .special-offer { border: 2px dashed #ff6600; background-color: #fff9f2; border-radius: 12px; /* Increased roundness */ padding: 20px; /* Increased padding */ margin-top: 20px; position: relative; overflow: hidden; box-shadow: 0 4px 15px rgba(255, 102, 0, 0.15); /* Added shadow */ } .special-offer::before { content: "SPECIAL OFFER"; position: absolute; top: 10px; right: -30px; background-color: #ff6600; color: white; padding: 5px 40px; font-size: 12px; font-weight: bold; transform: rotate(45deg); box-shadow: 0 2px 4px rgba(0,0,0,0.2); /* Added shadow */ } .special-offer h3 { color: #ff6600; margin-top: 0; margin-bottom: 15px; font-size: 18px; /* Increased font size */ } .special-offer .discount { font-size: 28px; /* Increased font size */ font-weight: bold; color: #ff6600; margin: 15px 0; text-align: center; } .special-offer .timer { font-size: 14px; color: #666; margin-bottom: 15px; text-align: center; font-weight: bold; } .special-offer .cta-button { background-color: #ff6600; padding: 14px 28px; /* Increased padding */ font-size: 18px; /* Increased font size */ text-align: center; display: block; margin: 20px auto 5px; max-width: 280px; box-shadow: 0 6px 12px rgba(255, 102, 0, 0.25); /* Enhanced shadow */ } .special-offer .cta-button:hover { background-color: #e55c00; transform: translateY(-3px); /* Enhanced lift effect */ box-shadow: 0 8px 15px rgba(255, 102, 0, 0.35); /* Enhanced shadow on hover */ } /* Added urgency indicator */ .users-viewing { font-size: 14px; color: #666; margin-top: 10px; text-align: center; font-style: italic; } /* Added trust indicators */ .trust-indicators { display: flex; justify-content: center; margin-top: 15px; gap: 15px; } .trust-indicator { display: flex; align-items: center; font-size: 13px; color: #555; } .trust-indicator:before { content: "✓"; color: #4CAF50; font-weight: bold; margin-right: 5px; } .loading-dots { display: inline-block; } .loading-dots::after { content: "."; animation: dots 1.5s steps(5, end) infinite; } @keyframes dots { 0%, 20% { content: "."; } 40% { content: ".."; } 60% { content: "..."; } 80%, 100% { content: ""; } } /* Pulsating animation for CTA buttons */ @keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } } .pulse { animation: pulse 2s infinite; } /* Country tooltip style */ .country-tooltip { background-color: rgba(0, 0, 0, 0.7); border: none; border-radius: 3px; color: white; font-size: 12px; padding: 3px 8px; } /* Responsive styles */ @media (max-width: 768px) { h1 { font-size: 2rem; } .subtitle { font-size: 1rem; } #map-container { height: 350px; } #chatbot-container { width: 90%; right: 5%; left: 5%; } }
