  :root {
        --primary-pink: #EA0A8E;
        --dark-bg: #111827;
        --light-bg: #f9fafb;
        --yellow-color:#FFFCB2;
      }
      
      body {
        font-family: 'Inter', sans-serif;
        color: #1f2937;
        overflow-x: hidden;
      }

      .container{
        max-width: 1600px;
      }

      /* Header Styles */
      header {
        transition: all 0.3s ease;
        padding: 20px 0;
      }
      header.scrolled {
        background-color: var(--primary-pink) !important;
        padding: 12px 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      }
      header.scrolled .nav-link, 
      header.scrolled .navbar-brand {
        color: white !important;
      }
      header.scrolled .btn-demo {
        background-color: white !important;
        color: var(--primary-pink) !important;
      }

      header .white-logo{
        display: block;
       }

      header .pink-logo{
        display: none;
       }

         header.scrolled .white-logo{
            display: none;
       }

       header.scrolled .pink-logo{
            display: block;
       }

      .navbar-brand {
        font-weight: 800;
        font-style: italic;
        letter-spacing: -1px;
        color: var(--primary-pink);
        font-size: 1.5rem;
      }
      .navbar-brand span {
        font-weight: 300;
      }
      .nav-link {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1px;
        color: #4b5563;
        margin: 0 10px;
      }
      .btn-demo {
        background-color: black;
        color: white;
        font-size: 12px;
        font-weight: 700;
        padding: 10px 24px;
        border-radius: 50px;
        border: none;
        letter-spacing: 1px;
      }

      /* Hero Section */
      .hero-section {
        padding: 140px 0 80px;
        background-image:url(../img/hero-section.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
      }
      .hero-title {
        font-size: 3.5rem;
        font-weight: 800;
        line-height: 1.1;
        position: relative;
      }

      .hero-title:after{
        content: '';
        position: absolute;
        right: 12%;
        top:-50px;
        width: 150px;
        height: 150px;
        background-image: url(../img/arrow.svg);
        background-size: cover;
        background-position: center center;
      }

      .hero-subtitle {
        color: var(--primary-pink);
        font-weight: 700;
        font-size: 2.5rem;
      }
      .hero-desc {
        color: #6b7280;
        font-size: 1.1rem;
        max-width: 450px;
        margin: 25px 0;
      }
      .hero-img-container {
       /* border: 8px solid #f3f4f6;*/
        border-radius: 30px;
        overflow: hidden;
       /* box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);*/
      }

      /* Section Titles */
      .section-title {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 50px;
      }
      .section-title span {
        color: var(--primary-pink);
      }

      /* Feature Cards */
      .feature-card {
        background: white;
        border: 2px solid transparent;
        border-radius: 15px;
        padding: 15px;
        display: flex;
        align-items: center;
        gap: 15px;
        cursor: pointer;
        transition: all 0.2s ease;
        margin-bottom: 12px;
      }
      .feature-card:hover {
        border-color: #e5e7eb;
      }
      .feature-card.active {
        background-color: #fff1f2;
        border-color: var(--primary-pink);
        box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
      }
      .feature-icon-box {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background-color: #f3f4f6;
        color: #9ca3af;
        transition: all 0.2s ease;
      }
      .feature-card.active .feature-icon-box {
        background-color: var(--primary-pink);
        color: white;
      }
      .feature-text {
        font-size: 14px;
        font-weight: 700;
        color: #4b5563;
      }
      .feature-card.active .feature-text {
        color: var(--primary-pink);
      }





      /* Core POS Buttons */
      

      .why-pos{
        background-image:url(../img/why-pos.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center
      }


      .two-ways{
        background-image:url(../img/two-ways.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center
      }


      .core-pos{
        background-image:url(../img/core-pos.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center
      }

       .features{
        background-image:url(../img/power-feature.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center
      }
      
      .contact-section{
         background-image:url(../img/hero-section.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center

      }

      .footer{
        background: #F2F2F2 ;
      }
      
      
      .pos-btn {
        width: 100%;
        text-align: left;
        padding: 20px;
        border-radius: 15px;
        border: 2px solid transparent;
        background: transparent;
        transition: all 0.2s ease;
        margin-bottom: 10px;
        display: flex;
        flex-direction: column-reverse;
        background: #FFFFFF 0% 0% no-repeat padding-box;
box-shadow: 5px 3px 6px #00000003;
border: 1px solid #CCCCCC;
border-radius: 15px;
      }
      .pos-btn.active, .pos-btn:hover {
        background: white;
        border-color: var(--primary-pink);
        box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
      }
      .pos-btn-label {
        font-size: 11px;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #9ca3af;
        margin-bottom: 4px;
      }
      .pos-btn.active .pos-btn-label, .pos-btn:hover .pos-btn-title{
          color: var(--dark-bg);
        
      }
      .pos-btn-title {
        font-size: 1.1rem;
        font-weight: 500;
        color: black;
      
      }
      .pos-btn.active .pos-btn-title, .pos-btn:hover .pos-btn-title {
        
        color: var(--primary-pink);
      }

      /* Powerful Features Grid */
      .p-feature-item {
        background: white;
        border: 2px solid #f3f4f6;
        border-radius: 20px;
        
         width: 220px;
         height: 197px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        cursor: pointer;
        transition: all 0.2s ease;
      }
      .p-feature-item.active,   .p-feature-item:hover {
        background-color: #fff1f2;
        border-color: var(--primary-pink);
        box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
      }

      .p-feature-icon-holder{
        background: var(--dark-bg);
        color: var(--light-bg);
        display: flex;
        border-radius: 15px;
        justify-content: center;
        align-items: center;
        height: 80px;
        width: 80px;
        margin-bottom: 12px;
      }

      .p-feature-icon {
       
        max-height:30px ;
        
      }
      .p-feature-item.active .p-feature-icon, .p-feature-item:hover .p-feature-icon {
        color: var(--primary-pink);
      }


      .p-feature-item.active .p-feature-icon-holder,  .p-feature-item:hover .p-feature-icon-holder{
        background: var(--primary-pink);
      }

      .p-feature-title {
        font-size: 16px;
        max-width: 180px;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #0F0F0F;
        font-weight: 600;
      }
      .p-feature-item.active .p-feature-title,  .p-feature-item:hover .p-feature-title {
        color: var(--primary-pink);
      }

      /* Growth Section */
      .growth-list {
        list-style: none;
        padding: 0;
      }
      .growth-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
        font-weight: 500;
        color: #4b5563;
      }
      .growth-list li::before {
        content: "";
        width: 6px;
        height: 6px;
        background: black;
        border-radius: 50%;
      }

      /* App Showcase */
      .app-scroll {
        
         
        
        width: 100%;
      }
      .app-scroll::-webkit-scrollbar {
        display: none;
      }
      .app-card {
        flex: 0 0 280px;
        text-align: center;
      }
      .app-img-box {
        
        border-radius: 40px;
        overflow: hidden;
        margin-bottom: 20px;
       
        max-width: 376px;
      }
      .app-img-box img{
        max-width: 100%;
      }

      /* CTA Section */
      .cta-box {
        background-color: var(--dark-bg);       
        border-radius: 50px;
        padding: 80px 40px;
        position: relative;
        overflow: hidden;
        color: white;
      }
      .cta-bg-img {
        position: absolute;
        inset: 0;
        opacity: 0.8;
        object-fit: cover;
        width: 100%;
        height: 100%;
      }

      /* Form */
      .demo-form {
        background:transparent;
        padding: 40px;
        border-radius: 30px;
        max-width: 800px;
        margin: auto;
        
      }
      .form-label {
        font-size: 10px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #9ca3af;
      }
      .form-control {
        background-color: #fff;
        border: 1px solid #e5e7eb;
        padding: 12px;
        border-radius: 10px;
      }
      .form-control:focus {
        border-color: var(--primary-pink);
        box-shadow: none;
      }

      /* Utilities */
      .bg-light-gray { background-color: var(--light-bg); }
      .text-pink { color: var(--primary-pink); }
      .btn-black { 
        background-color: black; 
        color: white; 
        padding: 12px 30px; 
        border-radius: 8px; 
        font-weight: 700;
        font-size: 14px;
        border: none;
      }
      .btn-outline {
        border: 1px solid #d1d5db;
        background: white;
        padding: 12px 30px;
        border-radius: 8px;
        font-weight: 700;
        font-size: 14px;
      }

      .width-full{
        max-width: 100%;
      }

      /*-============== grow section ============= */

      .pink-ribbon{
        background-image: url(../img/pink-ribbon-bg.svg);
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        color: var(--yellow-color);
      }

      .owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled{
        display: block;
        text-align: right;
      }

      .btn-nav-arrow{
        width: 48px;
        height: 48px;
        border-radius: 100px;
        border: 0px;
        margin: 15px;
        background-image: url(../img/left.svg);
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
      }

       .btn-nav-arrow.right{
       transform: rotate(180deg);
      }

      .demo-form form.wpcf7-form p {
        margin-bottom: 0px;
      }