 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     overflow-x: hidden;
     background: #f8f9fa;
 }

 /* Navbar Styles */
 .navbar {
     background: rgba(255, 255, 255, 0.98);
     backdrop-filter: blur(10px);
     box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
     padding: 15px 0;
     height: 80px;
 }

 .navbar-brand img {
     height: 96px;
     transition: transform 0.3s ease;
     width: 100px;
     margin-top: -16px;
     margin-left: -20px;
 }

 .nav-link {
     color: #333 !important;
     font-weight: 500;
     margin: 0 15px;
     position: relative;
     transition: color 0.3s ease;
 }

 .nav-link::after {
     content: '';
     position: absolute;
     width: 0;
     height: 2px;
     bottom: -5px;
     left: 50%;
     background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
     transition: all 0.3s ease;
     transform: translateX(-50%);
 }

 .nav-link:hover::after {
     width: 80%;
 }

 .btn-primary {
     background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
     border: none;
     padding: 10px 30px;
     border-radius: 50px;
     font-weight: 600;
     transition: all 0.3s ease;
 }

 .btn-primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
 }

 /* Hero Section with 6-in-1 POS Solution */
 .hero-section {
     background: linear-gradient(135deg, #002df9 0%, #5848ad 100%);
     padding: 150px 0 100px;
     position: relative;
     overflow: hidden;
     margin-top: 80px;
 }

 .hero-section::before {
     content: '';
     position: absolute;
     width: 500px;
     height: 500px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     top: -200px;
     right: -200px;
     animation: floatShape 20s infinite ease-in-out;
 }

 .hero-section::after {
     content: '';
     position: absolute;
     width: 300px;
     height: 300px;
     background: rgba(255, 255, 255, 0.08);
     border-radius: 50%;
     bottom: -100px;
     left: -100px;
     animation: floatShape 15s infinite ease-in-out reverse;
 }

 @keyframes floatShape {

     0%,
     100% {
         transform: translate(0, 0) rotate(0deg);
     }

     33% {
         transform: translate(50px, -50px) rotate(120deg);
     }

     66% {
         transform: translate(-50px, 50px) rotate(240deg);
     }
 }

 .hero-content {
     position: relative;
     z-index: 2;
     animation: fadeInUp 1s ease;
 }

 .hero-title {
     font-size: 3.5rem;
     font-weight: 800;
     color: white;
     margin-bottom: 30px;
     line-height: 1.2;
 }

 .feature-list {
     list-style: none;
     padding: 0;
     margin: 30px 0;
 }

 .feature-list li {
     font-size: 1.3rem;
     color: white;
     margin-bottom: 15px;
     padding-left: 40px;
     position: relative;
     animation: slideInLeft 0.8s ease;
     animation-fill-mode: both;
 }

 .feature-list li:nth-child(1) {
     animation-delay: 0.2s;
 }

 .feature-list li:nth-child(2) {
     animation-delay: 0.3s;
 }

 .feature-list li:nth-child(3) {
     animation-delay: 0.4s;
 }

 .feature-list li:nth-child(4) {
     animation-delay: 0.5s;
 }

 .feature-list li:nth-child(5) {
     animation-delay: 0.6s;
 }

 .feature-list li:nth-child(6) {
     animation-delay: 0.7s;
 }

 .feature-list li::before {
     content: '•';
     position: absolute;
     left: 0;
     color: #00f5f7;
     font-size: 2rem;
     line-height: 1.3rem;
 }

 .hero-image {
     position: relative;
     z-index: 2;
     animation: fadeInRight 1s ease;
 }

 .hero-image img {
     max-width: 100%;
     height: auto;
     filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
     animation: floatImage 2s ease-in-out infinite;
     border-radius: 21px;
 }

 @keyframes floatImage {

     0%,
     100% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-20px);
     }
 }

 /* SMS Pay Section - Image RIGHT, Content LEFT */
 .sms-pay-section {
     padding: 100px 0;
     background: white;
     position: relative;
     overflow: hidden;
 }

 .decorative-dots {
     position: absolute;
     width: 200px;
     height: 200px;
     background-image: radial-gradient(circle, #667eea 2px, transparent 2px);
     background-size: 20px 20px;
     opacity: 0.1;
 }

 .dots-top-right {
     top: 50px;
     right: 50px;
     animation: rotateDots 20s linear infinite;
 }

 .dots-bottom-left {
     bottom: 50px;
     left: 50px;
     animation: rotateDots 20s linear infinite reverse;
 }

 @keyframes rotateDots {
     from {
         transform: rotate(0deg);
     }

     to {
         transform: rotate(360deg);
     }
 }

 .section-title {
     font-size: 3rem;
     font-weight: 800;
     color: #667eea;
     margin-bottom: 20px;
     position: relative;
     display: inline-block;
 }

 .section-title::after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 0;
     width: 100%;
     height: 4px;
     background: linear-gradient(90deg, #667eea, #764ba2);
     border-radius: 2px;
 }

 .section-description {
     font-size: 1.3rem;
     color: #333;
     margin-bottom: 50px;
     line-height: 1.8;
 }

 .phone-mockup {
     position: relative;
     animation: phoneFloat 3s ease-in-out infinite;
 }

 @keyframes phoneFloat {

     0%,
     100% {
         transform: translateY(0px) rotate(0deg);
     }

     50% {
         transform: translateY(-15px) rotate(2deg);
     }
 }

 .phone-mockup img {
     max-width: 100%;
     height: auto;
     filter: drop-shadow(0 30px 60px rgba(102, 126, 234, 0.3));
     border-radius: 20px;
 }

 .checkmark-icon {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, #00ff88, #00cc6a);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     animation: pulse 2s ease-in-out infinite;
 }

 @keyframes pulse {

     0%,
     100% {
         transform: scale(1);
         box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
     }

     50% {
         transform: scale(1.05);
         box-shadow: 0 0 0 20px rgba(0, 255, 136, 0);
     }
 }

 /* Features Grid Section */
 .features-grid-section {
     padding: 100px 0;
     background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
 }

 .feature-card-modern {
     background: white;
     border-radius: 20px;
     padding: 50px 40px;
     text-align: center;
     transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
     position: relative;
     overflow: hidden;
     height: 100%;
     margin-bottom: 30px;
 }

 .feature-card-modern::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: linear-gradient(45deg, transparent, rgba(102, 126, 234, 0.1), transparent);
     transform: rotate(45deg);
     transition: all 0.6s ease;
 }

 .feature-card-modern:hover::before {
     left: 100%;
 }

 .feature-card-modern:hover {
     transform: translateY(-15px) scale(1.02);
     box-shadow: 0 25px 60px rgba(102, 126, 234, 0.3);
 }

 .feature-icon-large {
     width: 120px;
     height: 120px;
     margin: 0 auto 30px;
     background: linear-gradient(135deg, #667eea, #764ba2);
     border-radius: 30px;
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     transition: all 0.5s ease;
 }

 .feature-card-modern:hover .feature-icon-large {
     transform: rotateY(360deg);
     background: linear-gradient(135deg, #764ba2, #667eea);
 }

 .feature-icon-large i {
     font-size: 3.5rem;
     color: white;
 }

 .feature-card-title {
     font-size: 1.8rem;
     font-weight: 700;
     color: #333;
     margin-bottom: 20px;
 }

 .feature-card-text {
     font-size: 1.1rem;
     color: #666;
     line-height: 1.8;
 }

 .feature-badge {
     display: inline-block;
     background: linear-gradient(135deg, #00ff88, #00cc6a);
     color: white;
     padding: 8px 20px;
     border-radius: 25px;
     font-weight: 600;
     font-size: 0.9rem;
     margin-top: 20px;
     box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
 }

 /* Benefits Section */
 .benefits-section {
     padding: 100px 0;
     background: white;
 }

 .benefit-item {
     display: flex;
     align-items: center;
     margin-bottom: 40px;
     padding: 30px;
     background: linear-gradient(135deg, #f5f7fa 0%, #fff 100%);
     border-radius: 20px;
     transition: all 0.4s ease;
     border: 2px solid transparent;
 }

 .benefit-item:hover {
     border-color: #667eea;
     transform: translateX(15px);
     box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
 }

 .benefit-number {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, #667eea, #764ba2);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2rem;
     font-weight: 800;
     color: white;
     margin-right: 30px;
     flex-shrink: 0;
     box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
     transition: all 0.4s ease;
 }

 .benefit-item:hover .benefit-number {
     transform: rotate(360deg) scale(1.1);
 }

 .benefit-content h4 {
     font-size: 1.5rem;
     font-weight: 700;
     color: #333;
     margin-bottom: 10px;
 }

 .benefit-content p {
     font-size: 1.1rem;
     color: #666;
     margin: 0;
     line-height: 1.6;
 }

 /* Footer */
 .footer {
     background: #1a1a2e;
     color: white;
     padding: 60px 0 30px;
 }

 .footer h5 {
     font-size: 1.3rem;
     font-weight: 700;
     margin-bottom: 20px;
 }

 .footer ul {
     list-style: none;
     padding: 0;
 }

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

 .footer ul li a {
     color: rgba(255, 255, 255, 0.8);
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .footer ul li a:hover {
     color: white;
     transform: translateX(5px);
     display: inline-block;
 }

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

 .social-links a {
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     transition: all 0.3s ease;
 }

 .social-links a:hover {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     transform: translateY(-3px);
 }

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

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes fadeInRight {
     from {
         opacity: 0;
         transform: translateX(50px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 @keyframes slideInLeft {
     from {
         opacity: 0;
         transform: translateX(-50px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 /* Responsive */
 @media (max-width: 768px) {
     .hero-title {
         font-size: 2rem;
     }

     #oop {
         padding: 51px 0 320px;

     }

     .feature-list li {
         font-size: 1rem;
     }

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

     .section-description {
         font-size: 1.1rem;
     }

     .benefit-item {
         flex-direction: column;
         text-align: center;
     }

     .benefit-number {
         margin-right: 0;
         margin-bottom: 20px;
     }

     #navbarNav {
         background: #ffffff;
     }

     #new {
         margin-top: -20px;
     }
 }

 .animate-on-scroll {
     opacity: 0;
     transform: translateY(30px);
     transition: all 0.8s ease;
 }

 .animate-on-scroll.animated {
     opacity: 1;
     transform: translateY(0);
 }
