 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     background-color: #ffffff;
     color: #222222;
     overflow-x: hidden;
     line-height: 1.6;
 }

 /* Navigation */
 .navbar {
     position: fixed;
     top: 0;
     width: 100%;
     background: rgba(255, 255, 255, 0.95);
     /* Fallback for older browsers without backdrop-filter support */
     background: rgba(255, 255, 255, 0.98);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     z-index: 1000;
     padding: 15px 0;
     transition: all 0.3s ease;
     border-bottom: 1px solid rgba(30, 144, 255, 0.1);
 }

 .nav-container {
     max-width: 1400px;
     margin: 0 auto;
     padding: 0 20px;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .logo img {
     height: 80px;
     /* Adjust based on your layout */
     width: auto;
     display: block;
 }


 .nav-links {
     display: flex;
     list-style: none;
     gap: 30px;
 }

 .nav-links a {
     text-decoration: none;
     color: #222222;
     font-weight: 500;
     transition: color 0.3s ease;
     position: relative;
 }

 .nav-links a::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 0;
     height: 2px;
     background: #1e90ff;
     transition: width 0.3s ease;
 }

 .nav-links a:hover::after {
     width: 100%;
 }

 .nav-links a:hover {
     color: #1e90ff;
 }

 /* Hero Section */
 .hero {
     min-height: 60vh;
     display: flex;
     align-items: center;
     position: relative;
     background: linear-gradient(135deg, #1e90ff 0%, #00bfff 100%);
     padding: 120px 20px 80px;
     color: white;
     text-align: center;
 }

 .hero-container {
     max-width: 1400px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
     padding: 0 20px;
 }

 .hero-content {
     max-width: 600px;
 }

 .hero-description {
     font-size: 1.1rem;
     line-height: 1.7;
     color: rgba(255, 255, 255, 0.9);
     margin-bottom: 40px;
 }

 .hero-stats {
     display: flex;
     gap: 40px;
     margin-top: 40px;
 }

 .stat-item {
     text-align: center;
     color: white;
 }

 .stat-number {
     font-size: 2.5rem;
     font-weight: 700;
     line-height: 1;
     margin-bottom: 8px;
     background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.8));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     /* Fallback for older browsers */
     color: white;
 }

 .stat-label {
     font-size: 0.9rem;
     opacity: 0.8;
     font-weight: 300;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .hero-visual {
     display: flex;
     justify-content: center;
     align-items: center;
     position: relative;
 }

 .pricing-graphic {
     font-size: 8rem;
     position: relative;
     animation: float 3s ease-in-out infinite;
     filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
 }

 .hero-image {
     max-width: 400px;
     max-height: 400px;
     width: auto;
     height: auto;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
     transition: all 0.3s ease;
 }

 .hero-image:hover {
     transform: scale(1.05);
 }

 .floating-price-elements {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     pointer-events: none;
 }

 .price-bubble {
     position: absolute;
     background: rgba(255, 255, 255, 0.15);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 25px;
     padding: 10px 20px;
     font-weight: 600;
     font-size: 1rem;
     color: white;
     animation: floatPrice 4s ease-in-out infinite;
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
 }

 .price-bubble:nth-child(1) {
     top: -20px;
     left: -40px;
     animation-delay: 0s;
 }

 .price-bubble:nth-child(2) {
     top: 40%;
     right: -50px;
     animation-delay: 1s;
 }

 .price-bubble:nth-child(3) {
     bottom: -30px;
     left: 20%;
     animation-delay: 2s;
 }

 .hero-title {
     font-size: 3.5rem;
     font-weight: 700;
     margin-bottom: 20px;
     line-height: 1.2;
 }

 .hero-subtitle {
     font-size: 1.3rem;
     margin-bottom: 30px;
     font-weight: 400;
     opacity: 0.9;
 }

 /* Pricing Sections */
 .pricing-section {
     padding: 80px 20px;
     max-width: 1400px;
     margin: 0 auto;
 }

 .section-title {
     text-align: center;
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 20px;
     background: linear-gradient(135deg, #1e90ff, #00bfff);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     /* Fallback for older browsers */
     color: #1e90ff;
     position: relative;
 }

 .section-subtitle {
     text-align: center;
     font-size: 1.1rem;
     color: #666;
     margin-bottom: 60px;
 }

 .pricing-grid {
     /* Flexbox fallback for older browsers */
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     margin: -15px -15px 100px -15px;
     
     /* CSS Grid for modern browsers */
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 30px;
     margin-bottom: 100px;
 }

 .pricing-grid > .pricing-card {
     /* Flexbox fallback spacing */
     margin: 15px;
     flex: 0 1 350px;
     max-width: 450px;
 }

 .pricing-card {
     background: #ffffff;
     border-radius: 20px;
     padding: 40px 30px;
     box-shadow: 0 10px 30px rgba(30, 144, 255, 0.1);
     transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     position: relative;
     overflow: hidden;
     border: 2px solid transparent;
     /* Performance optimization */
     will-change: transform;
     contain: layout style paint;
 }

 .pricing-card:hover {
     transform: translateY(-15px) scale(1.02);
     box-shadow: 0 25px 50px rgba(30, 144, 255, 0.2);
     border-color: #1e90ff;
 }

 .pricing-card.featured {
     background: linear-gradient(135deg, #1e90ff, #00bfff) !important;
     color: white;
     transform: scale(1.05);
     border: none;
 }

 .pricing-card.featured .pricing-title,
 .pricing-card.featured .pricing-subtitle,
 .pricing-card.featured .feature-item,
 .pricing-card.featured .feature-item span {
     color: white;
 }

 .pricing-card.featured .pricing-features {
     background: transparent !important;
 }

 .pricing-card.featured .feature-item {
     background: transparent !important;
 }

 .pricing-card.featured * {
     background: transparent !important;
 }

 .pricing-card.featured {
     background: linear-gradient(135deg, #1e90ff, #00bfff) !important;
 }

 .popular-badge {
     position: absolute;
     top: 20px;
     right: -30px;
     background: #ff6b35;
     color: white;
     padding: 8px 40px;
     font-size: 0.9rem;
     font-weight: 600;
     transform: rotate(45deg);
     box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
 }

 .pricing-icon {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, #1e90ff, #00bfff);
     border-radius: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 25px;
     font-size: 2rem;
     color: white;
     transition: all 0.4s ease;
 }

 .pricing-card.featured .pricing-icon {
     background: rgba(255, 255, 255, 0.2);
     backdrop-filter: blur(10px);
 }

 .pricing-title {
     font-size: 1.8rem;
     font-weight: 700;
     text-align: center;
     margin-bottom: 10px;
     color: #222222;
 }

 .pricing-subtitle {
     font-size: 1rem;
     text-align: center;
     color: #666;
     margin-bottom: 30px;
 }

 .pricing-price {
     text-align: center;
     margin-bottom: 30px;
 }

 .price-amount {
     font-size: 3rem;
     font-weight: 700;
     color: #1e90ff;
     display: block;
 }

 .pricing-card.featured .price-amount {
     color: white;
 }

 .price-period {
     font-size: 1rem;
     color: #666;
     margin-top: 5px;
 }

 .pricing-card.featured .price-period {
     color: rgba(255, 255, 255, 0.8);
 }

 .price-toggle {
     text-align: center;
     margin-bottom: 40px;
 }

 .toggle-switch {
     display: inline-flex;
     background: #f0f8ff;
     border-radius: 50px;
     padding: 5px;
     position: relative;
     border: 2px solid #1e90ff;
 }

 .toggle-option {
     padding: 12px 24px;
     border-radius: 50px;
     cursor: pointer;
     transition: all 0.3s ease;
     font-weight: 600;
     color: #1e90ff;
     position: relative;
     z-index: 2;
 }

 .toggle-option.active {
     background: #1e90ff;
     color: white;
     box-shadow: 0 5px 15px rgba(30, 144, 255, 0.3);
 }

 .savings-badge {
     background: #ff6b35;
     color: white;
     padding: 4px 12px;
     border-radius: 20px;
     font-size: 0.8rem;
     font-weight: 600;
     margin-left: 8px;
     display: inline-block;
 }

 /* Modal Styles */
 .modal {
     display: none;
     position: fixed;
     z-index: 2000;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.8);
     backdrop-filter: blur(5px);
 }

 .modal-content {
     background: white;
     margin: 5% auto;
     padding: 0;
     border-radius: 20px;
     width: 90%;
     max-width: 600px;
     max-height: 90vh;
     overflow-y: auto;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
     animation: modalSlideIn 0.3s ease-out;
 }

 .modal-header {
     background: linear-gradient(135deg, #1e90ff, #00bfff);
     color: white;
     padding: 30px;
     border-radius: 20px 20px 0 0;
     text-align: center;
 }

 .modal-header h2 {
     font-size: 2rem;
     margin-bottom: 10px;
 }

 .modal-body {
     padding: 30px;
 }

 .payment-options {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 20px;
     margin-bottom: 30px;
 }

 .payment-option {
     border: 2px solid #e0e0e0;
     border-radius: 15px;
     padding: 20px;
     cursor: pointer;
     transition: all 0.3s ease;
     text-align: center;
 }

 .payment-option:hover {
     border-color: #1e90ff;
     box-shadow: 0 5px 20px rgba(30, 144, 255, 0.1);
 }

 .payment-option.selected {
     border-color: #1e90ff;
     background: #f0f8ff;
 }

 .payment-option h3 {
     color: #1e90ff;
     margin-bottom: 10px;
 }

 .payment-breakdown {
     background: #f8fcff;
     border-radius: 15px;
     padding: 25px;
     margin-bottom: 30px;
     border: 1px solid #e0f2ff;
 }

 .breakdown-item {
     display: flex;
     justify-content: space-between;
     margin-bottom: 15px;
     font-size: 1.1rem;
 }

 .breakdown-item.total {
     border-top: 2px solid #1e90ff;
     padding-top: 15px;
     font-weight: 700;
     color: #1e90ff;
 }

 .customer-details {
     background: #f8fcff;
     border-radius: 15px;
     padding: 25px;
     margin-bottom: 30px;
     border: 1px solid #e0f2ff;
 }

 .customer-details h3 {
     color: #1e90ff;
     margin-bottom: 20px;
     text-align: center;
 }

 .form-group {
     margin-bottom: 20px;
 }

 .form-group label {
     display: block;
     margin-bottom: 8px;
     font-weight: 600;
     color: #333;
 }

 .form-group input {
     width: 100%;
     padding: 12px 15px;
     border: 2px solid #e0e0e0;
     border-radius: 8px;
     font-size: 1rem;
     transition: border-color 0.3s ease;
 }

 .form-group input:focus {
     outline: none;
     border-color: #1e90ff;
     box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.1);
 }

 .close {
     color: rgba(255, 255, 255, 0.8);
     float: right;
     font-size: 2rem;
     font-weight: bold;
     cursor: pointer;
     line-height: 1;
 }

 .close:hover {
     color: white;
 }

 .modal-btn {
     width: 100%;
     background: linear-gradient(135deg, #1e90ff, #00bfff);
     color: white;
     border: none;
     padding: 15px 30px;
     border-radius: 50px;
     font-size: 1.1rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .modal-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 25px rgba(30, 144, 255, 0.4);
 }

 @keyframes modalSlideIn {
     from {
         opacity: 0;
         transform: translateY(-50px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .pricing-features {
     list-style: none;
     margin-bottom: 40px;
 }

 .feature-item {
     display: flex;
     align-items: center;
     gap: 15px;
     padding: 10px 0;
     color: #555;
     font-size: 1rem;
 }

 .feature-icon {
     width: 20px;
     height: 20px;
     background: #1e90ff;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 0.8rem;
     flex-shrink: 0;
 }

 .pricing-card.featured .feature-icon {
     background: rgba(255, 255, 255, 0.3);
 }

 .pricing-btn {
     width: 100%;
     background: linear-gradient(135deg, #1e90ff, #00bfff);
     color: white;
     border: none;
     padding: 15px 30px;
     border-radius: 50px;
     font-size: 1rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     text-decoration: none;
     display: block;
     text-align: center;
 }

 .pricing-card.featured .pricing-btn {
     background: rgba(255, 255, 255, 0.2);
     backdrop-filter: blur(10px);
     border: 2px solid rgba(255, 255, 255, 0.3);
 }

 .pricing-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 25px rgba(30, 144, 255, 0.4);
 }
 
 .pricing-btn {
     will-change: transform;
 }

 /* Custom Service Section */
 .custom-service {
     background: #f8fcff;
     padding: 80px 20px;
     text-align: center;
 }

 .custom-container {
     max-width: 800px;
     margin: 0 auto;
 }

 .custom-title {
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 20px;
     color: #222222;
 }

 .custom-title .highlight {
     color: #1e90ff;
 }

 .custom-description {
     font-size: 1.2rem;
     color: #666;
     margin-bottom: 40px;
 }

 .contact-btn {
     background: linear-gradient(135deg, #1e90ff, #00bfff);
     color: white;
     padding: 18px 40px;
     border: none;
     border-radius: 50px;
     font-size: 1.2rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     text-decoration: none;
     display: inline-block;
 }

 .contact-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 15px 35px rgba(30, 144, 255, 0.4);
 }

 /* WhatsApp Float */
 .whatsapp-float {
     position: fixed;
     bottom: 30px;
     right: 30px;
     z-index: 1000;
     background: linear-gradient(135deg, #25D366 0%, #1ba970 100%);
     color: white;
     width: 60px;
     height: 60px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     text-decoration: none;
     box-shadow: 0 8px 25px rgba(12, 219, 88, 0.4);
     transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     border: 3px solid rgba(255, 255, 255, 0.2);
 }

 .whatsapp-float:hover {
     transform: translateY(-3px) scale(1.05);
     box-shadow: 0 15px 35px rgba(25, 241, 105, 0.6);
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .hero {
         padding: 100px 15px 60px;
         text-align: center;
     }
     
     .hero-container {
         grid-template-columns: 1fr;
         gap: 40px;
         text-align: center;
     }
     
     .hero-content {
         order: 1;
         max-width: 100%;
     }
     
     .hero-visual {
         order: 0;
     }
     
     .hero-title {
         font-size: 2.5rem;
         line-height: 1.1;
     }
     
     .hero-subtitle {
         font-size: 1.1rem;
     }
     
     .hero-description {
         font-size: 1rem;
         margin-bottom: 30px;
     }
     
     .hero-stats {
         justify-content: center;
         gap: 30px;
         margin-top: 30px;
     }
     
     .stat-number {
         font-size: 2rem;
     }
     
     .pricing-graphic {
         font-size: 6rem;
     }
     
     .hero-image {
         max-width: 300px;
         max-height: 300px;
         width: auto;
         height: auto;
     }
     
     .price-bubble {
         font-size: 0.9rem;
         padding: 8px 15px;
     }

     .section-title {
         font-size: 2rem;
     }
     
     .pricing-section {
         padding: 60px 15px;
     }

     .pricing-grid {
         grid-template-columns: 1fr;
         gap: 20px;
         margin: -10px -10px 80px -10px;
     }
     
     .pricing-grid > .pricing-card {
         margin: 10px;
     }

     .pricing-card {
         padding: 30px 20px;
         transform: none !important;
     }
     
     .pricing-card.featured {
         transform: none !important;
         margin: 10px !important;
     }
     
     .modal-content {
         width: 95%;
         margin: 10px auto;
     }
     
     .payment-options {
         grid-template-columns: 1fr;
     }
     
     .whatsapp-float {
         bottom: 20px;
         right: 20px;
         width: 50px;
         height: 50px;
     }

     .nav-links {
         display: none;
     }
 }

 /* Animation keyframes */
 @keyframes slideInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .pricing-card {
     animation: slideInUp 0.6s ease-out;
 }

 .pricing-card:nth-child(2) {
     animation-delay: 0.1s;
 }

 .pricing-card:nth-child(3) {
     animation-delay: 0.2s;
 }

 @keyframes float {
     0%, 100% {
         transform: translateY(0px);
     }
     50% {
         transform: translateY(-20px);
     }
 }

 @keyframes floatPrice {
     0%, 100% {
         transform: translateY(0px) rotate(0deg);
         opacity: 0.7;
     }
     50% {
         transform: translateY(-15px) rotate(2deg);
         opacity: 1;
     }
 }
 /* Footer */
.footer {
    background: #222222;
    color: white;
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1e90ff;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #1e90ff;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #999;
}
/* Custom Cursor Styles */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: #1e90ff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out, width 0.3s ease, height 0.3s ease, background 0.3s ease;
    box-shadow: 0 0 20px rgba(30, 144, 255, 0.5);
}

.cursor-bubble {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(30, 144, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease-out, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
    background: rgba(30, 144, 255, 0.1);
    backdrop-filter: blur(5px);
}

/* Hide default cursor */
* {
    cursor: none !important;
}

/* Hover effects for interactive elements */
a:hover~.custom-cursor,
button:hover~.custom-cursor,
input:hover~.custom-cursor,
textarea:hover~.custom-cursor,
select:hover~.custom-cursor,
[onclick]:hover~.custom-cursor {
    width: 30px;
    height: 30px;
    background: #000000;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

a:hover~.cursor-bubble,
button:hover~.cursor-bubble,
input:hover~.cursor-bubble,
textarea:hover~.cursor-bubble,
select:hover~.cursor-bubble,
[onclick]:hover~.cursor-bubble {
    width: 60px;
    height: 60px;
    border-color: rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.1);
}

/* Mobile responsiveness */
/* Removed media query that hides custom cursor on mobile to enable bubble cursor animations on mobile */
/* @media (hover: none) and (pointer: coarse) {
    * {
        cursor: auto !important;
    }

    .custom-cursor,
    .cursor-bubble {
        display: none;
    }
} */

/* Enhanced Medium Package Card styling to match design */
.pricing-card.featured .pricing-icon {
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
}
