diff --git a/index.html b/index.html
index 399fadf..0dcf388 100644
--- a/index.html
+++ b/index.html
@@ -199,7 +199,126 @@ body {
font-family: 'Courier New', Courier, monospace; /* Monospace font for all text */
}
+/* Pricing Modal styles */
+.pricing-modal {
+ display: none; /* Hidden by default */
+ position: fixed;
+ z-index: 2000; /* Higher than video modal for stacking */
+ left: 0;
+ top: 0;
+ width: 100%;
+ height: 100%;
+ overflow: auto;
+ background-color: rgba(0, 0, 0, 0.4); /* Black with opacity */
+}
+.pricing-modal-content {
+ background-color: #fefefe;
+ margin: 15% auto;
+ padding: 20px;
+ border: 1px solid #888;
+ width: 80%;
+ box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
+ border-radius: 5px;
+}
+
+.pricing-modal-header {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+}
+
+.pricing-modal-title {
+ font-size: 2em;
+}
+
+.pricing-modal-close {
+ color: #aaaaaa;
+ font-size: 28px;
+ font-weight: bold;
+ cursor: pointer;
+}
+
+.pricing-modal-close:hover,
+.pricing-modal-close:focus {
+ color: #000;
+ text-decoration: none;
+ cursor: pointer;
+}
+
+.pricing-modal-body { padding: 2px 16px; }
+
+.pricing-modal-footer {
+ display: flex;
+ justify-content: flex-end;
+ padding: 10px 0;
+}
+
+.pricing-modal-close-btn {
+ background-color: #f44336;
+ color: white;
+ padding: 10px 20px;
+ border: none;
+ border-radius: 5px;
+ cursor: pointer
+
+}
+
+.comparison-container {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ margin-top: 20px;
+}
+
+.comparison-section, .vs-container {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ margin-right: 20px;
+}
+
+.comparison-image {
+ width: 300px; /* Adjust the size as needed */
+ height: auto;
+}
+
+.vs-container {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+
+.vs {
+ font-size: 2em; /* Large text size */
+ font-weight: bold; /* Bold text */
+ color: #ff6347; /* Text color, choose what fits your design */
+ margin: 0 20px;
+}
+
+.watermelon {
+ font-size: 4em; /* Larger size for emphasis */
+}
+
+.price-text {
+ font-size: 1.5em; /* Adjust as needed */
+ margin-top: 10px; /* Space between the image/icon and the price */
+ font-weight: bold;
+}
+
+
+.vs {
+ font-size: 2em; /* Large text size */
+ font-weight: bold; /* Bold text */
+ color: #ff6347; /* Text color, choose what fits your design */
+ margin-right: 20px;
+}
+
+.watermelon {
+ font-size: 4em; /* Larger size for emphasis */
+ text-align: right;
+}
@@ -218,6 +337,40 @@ body {
+
+
+