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

    .hero-container {
   overflow: hidden;      position: relative;
    }

    .hero-container .hero-section {
        position: absolute; /* by default absolute */
        top: 0;
        left: 0;
        width: 100%;
        /*height: 100vh;*/
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        transition: background 0.8s ease;
        z-index: 1;
    }

    /* Fixed while scrolling inside container */
    .hero-container .hero-section.fixed {
        position: fixed;
        top: auto; /* header ke niche */
    }

    /* Stop at end of container */
    .hero-container .hero-section.stopped {
        position: absolute;
        top: auto;
        bottom: 0;
    }

    /* Background themes */
    .hero-container .theme-blue {
       background: linear-gradient(180deg, #009EF7 0%, #005D91 100%);
    }

    .hero-container .theme-orange {
      background: linear-gradient(180deg, #FEC07F 0%, #98734C 100%);
    }

    .hero-container .theme-green {
     background: linear-gradient(180deg, #CBE8D5 0%, rgba(132, 152, 138, 0.80) 100%);
    }

    .hero-container .hero-content {
        max-width: 1200px;
        padding: 0 20px;
        position: relative;
        z-index: 2;
        width: 100%;
    }

    .hero-container .hero-title {
        font-size: 4rem;
        font-weight: 800;
        margin-top: 2rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .hero-container .hero-title .dark-text {
        color: #1E1E2D;
        font-family: "Montserrat", Sans-serif;
        font-size: 60px;
        font-weight: 700;
        line-height: 109%;
    }

    .hero-container .hero-title .light-text {
         color: #FFF;
         font-family: "Montserrat", Sans-serif;
         font-size: 60px;
         font-weight: 700;
         line-height: 109%;
    }

    .hero-container .hero-subtitle {
        margin-bottom: 2rem;
        max-width: 780px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
        color: #FFF;
        text-align: center;
        font-family: Inter;
        font-size: 20px;
        font-weight: 500;
    }

    .hero-container .hero-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 2.5rem;
    }

    .hero-container .hero-buttons .btn {
        padding: 1rem 2rem;
        font-size: 14px;
        font-family: Inter;
        font-weight: 600;
        border: none;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .hero-container .btn-primary {
        background: #1E1E2D;
        color: white;
    }

    .hero-container .btn-secondary {
        color: #1E1E2D;
        background: white;
    }

    .hero-container .hero-buttons .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    /* Card Container */
    .hero-container .card-container {
        position: relative;
        width: 100%;
        max-width: 1200px;
        height: 500px;
        margin: auto;
    }

    .hero-container .product-card {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 24px;
        padding: 2rem;
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .hero-container .product-card.active {
        opacity: 1;
        transform: translateY(0);
        z-index: 1000;
    }

    .hero-container .card-content {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 0;
        align-items: center;
        height: 100%;
    }

    .hero-container .card-text {
        text-align: left;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: flex-start;
    }

    .hero-container .card-title {
        font-size: 35px;
        font-weight: 700;
        color: white;
        margin-bottom: 1rem;
        font-family: inter;
    }

    .hero-container .card-description {
       font-size: 16px;
       color: rgba(255, 255, 255, 0.9);
       line-height: 1.6;
       margin-bottom: 1rem;
       font-family: inter;
       font-weight: 400;
    }

    .hero-container .card-btn {
        background: rgba(255, 255, 255, 0.2);
        color: white;
        padding: 1rem 2rem;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 12px;
        font-size: 18px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        width: fit-content;
        text-decoration: none;
    }

    .hero-container .card-btn:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateX(5px);
        cursor: pointer;
    }

    .hero-container .card-visual {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-container .card-visual img{
        width: 100% ;
    }
   .hero-container .laptop-mockup {
        width: 100%;
        max-width: 500px;
        height: auto;
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
        transition: transform 0.3s ease;
    }

    .hero-container .laptop-mockup:hover {
        transform: scale(1.02);
    }

    /* Floating shapes */
    .hero-container .floating-shapes {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        overflow: hidden;
        background-image: url(https://webledger.in/wp-content/uploads/2025/07/Group-1000006037.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

    /* Progress indicator */
    .hero-container .progress-indicator {
        position: fixed;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 100;
        display: none;
    }

    .hero-container .progress-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        margin: 10px 0;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .hero-container .progress-dot.active {
        background: white;
        transform: scale(1.3);
        
    }

    /* Content after hero */
    .hero-container .content-section {
        position: relative;
        z-index: 10;
        background: white;
        min-height: 100vh;
        padding: 4rem 2rem;
    }

    .hero-container .content-section h2 {
        text-align: center;
        font-size: 2.5rem;
        color: #1F2937;
        margin-bottom: 2rem;
    }

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

        .hero-container .card-content {
            grid-template-columns: 1fr;
            text-align: center;
        }
        .hero-container .card-content > div:first-child { order: 2; }
        .hero-container .card-content > div:last-child { order: 1; }

        .hero-container .card-title { font-size: 2rem; }
        .hero-container .card-text { text-align: center; align-items: center; }
        .hero-container .progress-indicator { display: none; }
    }
    
            @media (max-width: 480px) {
            .hero-container .hero-buttons {
                flex-direction: row;
                align-items: center;
                
            }

            .hero-container .hero-buttons .btn {
    
                max-width: 300px;
            }
        }
       @media (max-width: 1024px) {
           .hero-container .hero-title .dark-text , .hero-container .hero-title .light-text {
                  font-size: 55px;
           }
           .hero-container .card-title{
            font-size: 30px
           }    
           .hero-container .card-description{
            font-size: 15px
           }
           .hero-container .card-btn{
            font-size: 16px
           }
           /*.hero-container .hero-section{*/
           /* height: 110vh;*/
           /*}*/
        }
        @media (max-width: 768px) {
           .hero-container .hero-title .dark-text , .hero-container .hero-title .light-text {
                  font-size: 45px;
           }
           .hero-container .hero-subtitle{
            font-size: 18px;
            margin-bottom: 1.5rem;
           }
          .hero-container .hero-buttons{
            margin-bottom:2rem;
           }
           .hero-container .hero-title{
            margin-top: 1.5rem;
           }
           .hero-container .hero-buttons .btn{
            padding: 0.8rem 2rem;
           }
           .hero-container .product-card{
                padding: 1rem;
           }
           .hero-container.card-visual img {
                width: 80%;
            }
            .hero-container .card-text{
              margin-top: 15px;
            }
          
        }
        @media (max-width: 425px) {
           /*.hero-container .hero-section {*/
           /* height: 117vh;*/
           /* }*/
           .hero-container .hero-title .dark-text , .hero-container .hero-title .light-text {
                  font-size: 30px;
           }
           .hero-container .hero-subtitle{
            font-size: 16px;
            margin-bottom: 1.5rem;
           }
           .hero-container .hero-buttons .btn {
              font-size: 10px;
              padding: 10px 15px;
            }
            .hero-container .card-btn{
            font-size: 13px;
            padding: 8px 20px;
           }
           .hero-container .card-title {
            font-size: 24px;
           }
        }
