@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;800&display=swap');

:root {
    /* Logo Colors */
    --softzix-blue: #0b2cff;
    --softzix-red: #ff1e1e;
    
    /* Backgrounds */
    --bg-dark: #050914;
    --bg-deep: #020617;
    --card-bg: rgba(255, 255, 255, 0.03);
    
    /* Functional Colors */
    --primary-blue: #2563eb;
    --text-gray: #94a3b8;
    --border: rgba(255, 255, 255, 0.1);
    --glow-blue: rgba(11, 44, 255, 0.3);
    --glow-red: rgba(255, 30, 30, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--bg-dark);
    /* Dynamic background with Logo Blue */
    background: radial-gradient(circle at top left, var(--glow-blue), transparent 60%),
                radial-gradient(circle at bottom right, var(--glow-blue), transparent 60%) 
                var(--bg-dark);
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}


         html,body {
            overflow-x: hidden;
        }
  p{
                line-height: 1.6;
            }
.navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(10, 15, 25, 0.9);
    background: rgb(10 15 25 / 29%);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}


.nav-container{
    
    margin: auto;
    padding: 15px 8%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


       
        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            font-size: 0.95rem;
            color: white;
        }

        .nav-btn {
            background: var(--primary-dark);
            color: #fff;
            padding: 12px 25px;
            border-radius: 15px;
        }

        .menu-toggle {
            display: none;
            font-size: 1.6rem;
            cursor: pointer;
        }

        @media (max-width: 992px) {
            .menu-toggle {
                display: block;
            }

            .nav-links {
                position: absolute;
                top: 100%;

                width: 260px;
                flex-direction: column;
                gap: 18px;
                padding: 22px;
                border-radius: 22px;
                background: linear-gradient(180deg,
                        rgba(255, 255, 255, 0.12),
                        rgba(255, 255, 255, 0.04));
                backdrop-filter: blur(18px);
                border: 1px solid rgba(255, 255, 255, 0.15);
                opacity: 0;
                pointer-events: none;
                transform: translateY(-10px);
                transition: 0.35s ease;
            }
.mega-dropdown{
    text-align:center !important;
}
            .nav-links.active {
                opacity: 1;
                pointer-events: auto;
                transform: translateY(0);
                left: 50%;
        transform: translateX(-50%);
            }

            .nav-links a {
                width: 100%;
                text-align: center;
                padding: 12px;
                border-radius: 12px;

            }
            .navbar{
                     backdrop-filter: none;
            }

            .nav-links a:hover {
                background: rgba(255, 255, 255, 0.08);
            }
        }

.dropbtn i {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}




.mega-menu {
    display: none;
    position: absolute;
    top: 75%;
    left: 0;
    width: 60vw; 
     margin: 0 auto;  
    inset-inline: 0; 
        background: rgb(12 28 71);
    backdrop-filter: blur(15px); 
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 1%;
   
    
    gap: 0px;
    z-index: 1000;
        justify-content: space-evenly;
  
    grid-template-columns: repeat(4, max-content);
    
   
}

.mega-column h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.mega-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    padding: 8px 0;
    font-size: 0.95rem;
    transition: 0.3s;
}

.mega-column a:hover {
    color: #ffffff !important;
    padding-left: 10px;
}

.mega-dropdown:hover .mega-menu {
    display: grid;
  
}

@keyframes fadeInSlide {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
    
    .mega-menu {
        display: none; 
        position: relative;
        width: 100%;
        background: transparent; 
        padding: 30px 0;
        grid-template-columns: 1fr; 
        gap: 15px;
        box-shadow: none;
        backdrop-filter: none;
    }
.mega-dropdown:hover .dropbtn i {
    transform: rotate(180deg);
    color: #0b2cff;
}
    .mega-menu.open {
        display: block; 
    }

    .mega-column {
        text-align: left; 
        padding: 0 10px;
    }

    .mega-column h4 {
        font-size: 0.9rem;
        
        margin-bottom: 8px;
        padding-bottom: 5px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .mega-column a {
        padding: 6px 0 !important;
        font-size: 0.85rem !important;
        text-align: left !important;
        opacity: 0.8;
    }

    
    .dropbtn i {
        font-size: 10px;
        transition: 0.3s;
    }
}
@media (max-width: 768px) {
    .nav-links {
      
        max-height: 80vh; 
        overflow-y: auto; 
        overflow-x: hidden;
        display: flex; 
        justify-content: flex-start; 
    }

    .nav-links::-webkit-scrollbar {
       display: none; 
        width: 0 !important;
    }
    


    .mega-menu {
        width: 100%;
        display: none; 
    }
    
    .mega-menu.open {
        display: flex; 
        flex-direction: column;
        gap: 20px;
        padding-top: 10px;
         display: none !important;
    }
    .logo img{
        width:100px !important;
    }
    .contact-info h2 {
    font-size: 30px !important ;
    }
}

        .logo {
            font-size: 28px;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }

      



.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 0%;
    gap: 40px;
    align-items: center;
}


.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--teal);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 24px;
    background: rgba(11, 44, 255, 0.1);
    border: 1px solid rgba(11, 44, 255, 0.3);

}

h1 {
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.highlight {
background: linear-gradient(90deg, #fff, var(--softzix-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p { font-size: 18px; color: var(--text-gray); line-height: 1.6; margin-bottom: 40px; }

.btn-group { display: flex; gap: 16px; margin-bottom: 60px; }



.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3); }

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid #334155;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
}

.stats-row { display: flex; gap: 48px; }
.stat h3 { font-size: 32px; font-weight: 800; margin-bottom: 4px; }
.stat p { font-size: 13px; margin: 0; color: #64748b; }


.enterprise-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 32px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.enterprise-card h2 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 32px;
    font-weight: 600;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.bento-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 20px;
    transition: 0.3s;
}


.bento-item {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 24px;
    transition: 0.3s;
    z-index: 1;
}


.bento-item::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1.5px; 
    border-radius: 20px;
    background: linear-gradient(135deg, #ff1e1e, #0b2cff);
    
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;

    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
}

.bento-item:hover {
    background: rgba(16, 185, 129, 0.05);
}

.bento-item:hover::before {
    opacity: 1;
}

.label {
    color: #2563eb;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}

.bento-item p { font-size: 13px; color: #fff; margin: 0; line-height: 1.5; }

@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; padding: 100px 5%; }
    .btn-group, .stats-row { justify-content: center; }
    p { margin-left: auto; margin-right: auto; }
}


@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr; 
        text-align: center;
        padding: 100px 0% 50px 0%;
        gap: 60px;
    }

    .btn-group, .stats-row {
        justify-content: center; 
    }

    p {
        margin-left: auto;
        margin-right: auto;
        max-width: 550px;
    }

    .enterprise-card {
        max-width: 600px;
        margin: 0 auto; 
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 42px; 
        letter-spacing: -1px;
    }

    .stats-row {
        gap: 30px; 
    }

    .stat h3 {
        font-size: 26px;
    }
}

@media (max-width: 580px) {
    .bento-grid {
        grid-template-columns: 1fr; 
    }

    .btn-group {
        flex-direction: column; 
        width: 100%;
    }

    .btn-primary, .btn-secondary {
        width: 100%; 
    }

    .stats-row {
        flex-wrap: wrap; 
        justify-content: space-around;
    }

    .enterprise-card {
        padding: 25px 20px; 
    }
}

        .why-unique {
            padding: 120px 8%;
       background: radial-gradient(circle at top left, var(--glow-blue), transparent 60%),
                radial-gradient(circle at bottom right, var(--glow-blue), transparent 65%) 
                var(--bg-dark);
            /*background: radial-gradient(circle at top left, rgba(11, 44, 255, 0.15), transparent 60%) var(--bg-dark);*/
        }

        .why-header {

            margin: 0 auto 70px;
            text-align: center;
        }

        .why-badge {
            display: inline-block;
            padding: 8px 18px;
            border-radius: 50px;
            background: linear-gradient(135deg, #14b8a6, #8b5cf6);
            font-size: 0.8rem;
            margin-bottom: 18px;
                background: rgba(11, 44, 255, 0.1);
    border: 1px solid rgba(11, 44, 255, 0.3);
        }

        .why-header h2 {
            font-size: 2.4rem;
            margin-bottom: 16px;
        }

        .why-header h2 span {
              background: linear-gradient(135deg, #ff1e1e, #0b2cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
        }

        .why-header p {
            opacity: 0.8;
            line-height: 1.6;
        }

        .why-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
        }

        .why-box {
            position: relative;
            padding: 38px 34px;
               border-radius: 40px 10px 40px 10px;
            background: linear-gradient(180deg,
                    rgba(255, 255, 255, 0.08),
                    rgba(255, 255, 255, 0.02));
            border: 1px solid rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(18px);
            transition: 0.45s ease;
            overflow: hidden;
        }

        

     
        .why-icon {
         width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: 0.3s;
        }
     .why-icon i {
            font-size: 40px;
    
            -webkit-background-clip: text;

            display: inline-block;
            transition: 0.3s;
        }

        .why-box:hover .why-icon i {
            transform: scale(1.1);
            filter: drop-shadow(0 0 10px rgba(20, 184, 166, 0.5));
        }
        
        .why-box h4 {
            font-size: 1.15rem;
            margin-bottom: 12px;
        }

        .why-box p {
            font-size: 0.95rem;
            opacity: 0.85;
            line-height: 1.6;
        }

        
        .why-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
        }

        .why-box:hover .corner {
            width: 100%;
            height: 100%;
            
            border-right: 3px solid #8b5cf6;
        }

        .why-icon {
       background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(190px);
    background-image: linear-gradient(#10388cad, #06183d5c), linear-gradient(45deg, #050c1a96, #5d81bc, #050c1aba);
}

.why-box:hover {
   background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(190px);
    background-image: linear-gradient(#10388cad, #06183d5c), linear-gradient(45deg, #050c1a96, #5d81bc, #050c1aba);
    background-repeat: no-repeat;
}


        @media (max-width: 768px) {
            .why-unique {
                padding: 80px 6%;
            }

            .why-header {
                text-align: left;
            }

            .why-header h2 {
                font-size: 2rem;
            }
        }
        
        /* --- Services Section Wrapper --- */
.why-unique {
    padding: 100px 5%;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

.why-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--teal);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(16, 185, 129, 0.2);
        background: rgba(11, 44, 255, 0.1);
    border: 1px solid rgba(11, 44, 255, 0.3);
}

.why-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.why-header h2 span {
    color: var(--teal);
}

.why-header p {
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
}




.why-icon {
 color: var(--teal);
    transition: 0.3s;
}

.why-box:hover .why-icon {
    
    transform: rotateY(360deg);
}

.why-box:hover .why-icon i {
    color: white;
}


.why-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.why-box p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}


.corner {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, transparent 50%, rgba(11, 44, 255, 0.2) 50%);
    border-bottom-right-radius: 20px;
    transition: 0.3s;
}

.why-box:hover .corner {
        background: linear-gradient(135deg, transparent 50%, rgb(11 44 255 / 54%) 50%);
      width: 80px;
    height: 80px;
}



/* Responsive Fix */
@media (max-width: 768px) {
    .why-unique { padding: 60px 5%; }
    .why-cards { grid-template-columns: 1fr; }
}

        .all-bills-hub {
            padding: 140px 8%;
            /*background: linear-gradient(145deg, #0b0f1a, #1c2030);*/
            color: #fff;
            font-family: 'Plus Jakarta Sans', sans-serif;
            position: relative;
            overflow: hidden;
            background: radial-gradient(circle at top left, rgba(11, 44, 255, 0.15), transparent 60%) var(--bg-dark);
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
        }

        .hub-wrapper {
            display: flex;
            gap: 80px;
            align-items: center;
        }

        .hub-text {
            flex: 1;
            text-align: left;
        }

        .premium-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(45, 212, 191, 0.1);
            color: white;
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 1px;
            border: 1px solid rgba(45, 212, 191, 0.3);
                background: rgba(11, 44, 255, 0.1);
    border: 1px solid rgba(11, 44, 255, 0.3);
        }

        .hero-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            margin: 20px 0;
        }

        .gradient-text {
      background: linear-gradient(135deg, #ff1e1e, #0b2cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
        }

        .hero-desc {
            font-size: 1.2rem;
            color: #94a3b8;
          
            margin-bottom: 40px;
            max-width: 500px;
        }

        .perks-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin-bottom: 50px;
        }

        .perk-item {
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }

        .perk-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin-top: 6px;
            box-shadow: 0 0 12px;
        }

        .perk-dot.green {
            background: #2dd4bf;
            box-shadow: 0 0 12px #2dd4bf;
        }

        .perk-dot.blue {
            background: #3b82f6;
            box-shadow: 0 0 12px #3b82f6;
        }

        .perk-dot.purple {
            background: #8b5cf6;
            box-shadow: 0 0 12px #8b5cf6;
        }

        .perk-dot.orange {
            background: #f97316;
            box-shadow: 0 0 12px #f97316;
        }

        .perk-info strong {
            display: block;
            font-size: 1rem;
            margin-bottom: 5px;
        }

        .perk-info p {
            font-size: 0.85rem;
            color: #94a3b8;
        }

        .action-row {
            display: flex;
            align-items: center;
            gap: 25px;
            /* flex-wrap: wrap; */
        }

        .btn-primary {
            
            color:white;
            border: none;
            padding: 15px 35px;
            border-radius: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: 0.3s;
            font-size: 0.85rem;
              background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(190px);
    background-image: linear-gradient(#10388cad, #06183d5c), linear-gradient(45deg, #050c1a96, #5d81bc, #050c1aba);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(255, 255, 255, 0.25);
        }

        .trust-pill {
            background: rgba(255, 255, 255, 0.05);
            padding: 15px 18px;
                border-radius: 11px;
            font-size: 0.85rem;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

     
        .hub-visual {
            flex: 1;
            position: relative;
        }

        .floating-ui {
            position: relative;
            display: flex;
            justify-content: center;
            padding: 40px;
        }

        .central-bill-card {
            width: 380px;
            
            /*background: rgba(255, 255, 255, 0.03);*/
            border: 8px solid rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            border-radius: 32px;
            padding: 15px;
            position: relative;
            z-index: 5;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
            width: 280px;
    height: 500px;
  
    border-radius: 40px;
    position: relative;
    box-shadow: 0 0 50px rgba(16, 185, 129, 0.1);
    z-index: 2;
        }
.phone-screen {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
        .card-glow {
            position: absolute;
            top: -25px;
            right: -25px;
            width: 120px;
            height: 120px;
            background: #2dd4bf;
            filter: blur(70px);
            opacity: 0.25;
        }

        .card-head {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 30px;
        }

        .shimmer-bar {
            width: 40px;
            height: 6px;
            background: #334155;
            border-radius: 10px;
        }

        .biller {
            display: flex;
            align-items: center;
            gap: 15px;
            background: rgba(255, 255, 255, 0.03);
            padding: 15px;
            border-radius: 20px;
            margin-bottom: 12px;
        }

        .b-icon {
            font-size: 1.5rem;
        }

        .b-details span {
            display: block;
            font-weight: 600;
            font-size: 0.95rem;
        }

        .b-details small {
            color: #94a3b8;
            font-size: 0.75rem;
        }

        .b-status {
            margin-left: auto;
            color: var(--primary-blue);
            font-weight: 700;
                font-size: 13px;
        }

        .b-check {
            margin-left: auto;
            color: #8b5cf6;
        }

      
        .float-tag {
            position: absolute;
            background: rgba(45, 212, 191, 0.1);
            border: 1px solid #2dd4bf;
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            color: white;
            animation: float 4s ease-in-out infinite;
            z-index: 5;
                background: rgba(11, 44, 255, 0.1);
    border: 1px solid rgba(11, 44, 255, 0.3);
        }

        .tag-1 {
              top: 5%;
    left: 80px;
            animation-delay: 0s;
        }

        .tag-2 {
    bottom: 20%;
    right: 100px;
            animation-delay: 1s;
        }

        .tag-3 {
              top: 55%;
    right: 10px;
            animation-delay: 2s;
        }

        .tag-4 {
               top: 25%;
    left: 10px;
            animation-delay: 3s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-15px);
            }
        }

       
        @media (max-width: 1024px) {
            .hub-wrapper {
                flex-direction: column;
                text-align: center;
                gap: 50px;
            }

            .perks-grid {
                justify-items: center;
            }

            .central-bill-card {
                width: 100%;
                max-width: 350px;
            }
        }
         

        .how-it-works {
            position: relative;
            padding: 120px 5%;
            /*background: var(--bg-dark);*/
            /*background-image:*/
            /*    radial-gradient(circle at 50% -20%, #1e293b 0%, transparent 50%),*/
            /*    radial-gradient(circle at 50% 120%, #0f172a 0%, transparent 50%);*/
            color: #ffffff;
            font-family: 'Plus Jakarta Sans', sans-serif;
            overflow: hidden;
            /*background: radial-gradient(circle at top left, rgba(11, 44, 255, 0.15), transparent 60%) var(--bg-dark);*/
                background: radial-gradient(circle at top left, var(--glow-blue), transparent 50%), radial-gradient(circle at bottom right, var(--glow-blue), transparent 50%) var(--bg-dark);
        }

     

     

        .section-heading {
            text-align: center;
            margin-bottom: 100px;
        }

        .tagline {
            color: var(--primary-teal);
            text-transform: uppercase;
            letter-spacing: 5px;
            font-size: 0.8rem;
            font-weight: 800;
        }

        .section-heading h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            margin-top: 15px;
        }

        .gradient-text {
    background: linear-gradient(135deg, #ff1e1e, #0b2cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 0 15px var(--glow-color));
        }

        .process-wrapper {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            width: 100%;
        }

        .process-node {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
        }

        .visual-area {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            margin-bottom: 35px;
            position: relative;
        }

        .num-circle {
            width: 75px;
            height: 75px;
            background: #0f172a;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 800;
            color: #94a3b8;
            position: relative;
            z-index: 3;
            transition: 0.4s;
        }

        .process-node.active .num-circle {
           
            color: white;
                background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(190px);
    background-image: linear-gradient(#10388cad, #06183d5c), linear-gradient(45deg, #050c1a96, #5d81bc, #050c1aba);
        }
        .connector-line {
            position: absolute;
            height: 2px;
            width: 100%;
            background: linear-gradient(90deg, var(--primary-blue), transparent);
            left: 50%;
            z-index: 1;
            opacity: 0.3;
        }

        .process-node.active .connector-line {
            opacity: 0.8;
            background: linear-gradient(90deg, var(--primary-blue), rgba(20, 184, 166, 0.1));
        }

        .content-area h3 {
            font-size: 1.5rem;
            margin-bottom: 12px;
        }

        .content-area p {
            color: #94a3b8;
            font-size: 1rem;
            line-height: 1.6;
            max-width: 250px;
            margin: 0 auto;
        }

        
        .process-node:hover .num-circle {
            transform: scale(1.1);
            border-color: #3b82f6;
            color: #fff;
        }

    
        @media (max-width: 850px) {
            .process-wrapper {
                flex-direction: column;
                align-items: center;
                gap: 60px;
            }

            .connector-line {
                display: none;
            }

            .content-area p {
                max-width: 100%;
            }
        }
        .usp-section {
            padding: 120px 8%;
            /*background: #020617;*/
            color: #fff;
            font-family: 'Plus Jakarta Sans', sans-serif;
            position: relative;
            overflow: hidden;
              background: radial-gradient(circle at top left, var(--glow-blue), transparent 50%),
                radial-gradient(circle at bottom right, var(--glow-blue), transparent 50%) 
                var(--bg-dark);
        }

        .usp-bg-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 900px;
            height: 900px;
            background: radial-gradient(circle, rgba(45, 212, 191, 0.08) 0%, transparent 70%);
            z-index: 1;
        }


        .usp-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .usp-tag {
            background: rgba(45, 212, 191, 0.1);
            color: #2dd4bf;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .usp-header h2 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            margin: 25px 0;
            font-weight: 800;
        }

        .text-gradient {
            background: linear-gradient(to right, #2dd4bf, #3b82f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

       .usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}


.usp-card {
    position: relative;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 24px;
    padding: 2px; 
    overflow: hidden; 
    transition: transform 0.4s ease;
}

.usp-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.usp-card::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    background: conic-gradient(
        transparent, 
        transparent, 
        transparent, 
        var(--teal)
    );
    animation: rotate-beam 4s linear infinite;
    top: -25%;
    left: -25%;
}

.card-inner {
    background: #0f172a;
    border-radius: 22px;
    padding: 40px 30px;
    height: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.usp-icon-box {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon {
    font-size: 32px;
    z-index: 2;
}

.icon-pulse {
    position: absolute;
    inset: 0;
    background: var(--teal);
    border-radius: 50%;
    opacity: 0.2;
    animation: ripple 2s infinite;
}

.blue { background: #3b82f6; }
.purple { background: #a855f7; }
.orange { background: #f97316; }


@keyframes rotate-beam {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes ripple {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.8); opacity: 0; }
}


.usp-card h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.usp-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 15px;
}
        @media (max-width: 1200px) {
            .usp-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .usp-grid {
                grid-template-columns: 1fr;
            }
        }
            .marquee-reveal {
            padding: 150px 0 100px;
background: radial-gradient(circle at top left, rgba(11, 44, 255, 0.15), transparent 60%) var(--bg-dark);
            color: white;
            overflow: hidden;
            position: relative;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .infinite-text {
            position: absolute;
            top: 50%;
            transform: translateY(-50%) rotate(-5deg);
            width: 110%;
            left: -5%;
            opacity: 0.05;
            white-space: nowrap;
            pointer-events: none;
        }

        .text-track {
            display: inline-block;
            font-size: 10rem;
            font-weight: 900;
            animation: marquee 30s linear infinite;
        }

        @keyframes marquee {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }

        .marquee-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5%;
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 100px;
        }

    
        .features-grid {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(12px);
            border-radius: 20px;
            padding: 30px 25px;
            width: 250px;
            text-align: center;
            transition: transform 0.4s, box-shadow 0.4s;
        }

        .feature-card:hover {
            transform: translateY(-15px) scale(1.05);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
        }

        .icon-circle {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #14b8a6, #8b5cf6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }

        .feature-card h3 {
            font-size: 1.6rem;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .feature-card p {
            color: #cbd5e1;
            font-size: 1rem;
            line-height: 1.5;
        }

    
        .feature-hero {
            text-align: center;
            position: relative;
        }

        .feature-hero h2 {
            font-size: clamp(3rem, 7vw, 5rem);
            font-weight: 900;
            line-height: 1.1;
        }

        .gradient-text {
            background: linear-gradient(135deg, #ff1e1e, #0b2cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
        }

        .hero-sub {
            color: #a1a1aa;
            font-size: 1.2rem;
            margin-top: 15px;
            line-height: 1.5;
        }


        @media(max-width: 900px) {
            .features-grid {
                flex-direction: column;
                align-items: center;
                gap: 30px;
            }

        }

        @media (max-width:767px) {
            .tag-4 {
                top: 0%;
                left: 23px;
            }

            .tag-1,
            .tag-2 {
                display: none;
            }

            .tag-3 {
                top: 85%;
                right: 9px;
            }
            .feature-card{
                width: auto;
            }
        }
         .faq-section-visual {
            padding: 100px 8%;
            /*background: #010511;*/
            color: #fff;
            font-family: 'Plus Jakarta Sans', sans-serif;
            position: relative;
            overflow: hidden;
                background: radial-gradient(circle at bottom right, rgba(11, 44, 255, 0.15), transparent 60%) var(--bg-dark);
        }

        .faq-bg-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 1000px;
            height: 1000px;
            background: radial-gradient(circle, rgba(45, 212, 191, 0.05) 0%, transparent 70%);
            transform: translate(-50%, -50%);
            z-index: 1;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 5;
        }

        .faq-wrapper {
            display: flex;
            align-items: flex-start;
            gap: 50px;
        }

        .faq-left {
            flex: 1;
        }

        .faq-tag {
            background: rgba(45, 212, 191, 0.1);
            color: #2dd4bf;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
                 background: rgba(59, 130, 246, 0.12);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
        }

        .faq-header h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            margin: 20px 0;
        }

        .text-gradient {
            background: linear-gradient(to right, #2dd4bf, #3b82f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .faq-header p {
            color: #94a3b8;
            font-size: 1rem;
            margin-bottom: 40px;
        }

        .faq-accordion {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.02);
            border-radius: 25px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            overflow: hidden;
            transition: 0.4s;
        }

        .faq-question {
            width: 100%;
            padding: 20px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            background: transparent;
            border: none;
            color: #fff;
            text-align: left;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }

        .faq-icon {
            font-size: 1.5rem;
            transition: transform 0.3s;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 30px;
            color: #94a3b8;
            font-size: 0.95rem;
            line-height: 1.6;
            transition: max-height 0.5s ease, padding 0.5s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 15px 30px 25px 30px;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-right {
            flex: 1;
            display: flex;
           
            align-items: center;
            margin-top: 60px;
        }

        .faq-assistant {
            position: relative;
            /* width: 380px;
  height: 480px; */
        }

        
        .assistant-badge {
            position: absolute;
            top: -18px;
            left: 20px;
            background: rgba(45, 212, 191, 0.12);
            border: 1px solid rgba(45, 212, 191, 0.3);
            color: #2dd4bf;
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
            z-index: 10;
                background: rgba(59, 130, 246, 0.12);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
        }

        .assistant-badge .dot {
            width: 8px;
            height: 8px;
            background: #2dd4bf;
            border-radius: 50%;
            box-shadow: 0 0 10px #2dd4bf;
        }

        /* Main Panel */
        .assistant-panel {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 32px;
            padding: 35px 30px;
            backdrop-filter: blur(25px);
            box-shadow: 0 50px 100px rgba(0, 0, 0, 0.6);
            height: 100%;
        }

        .assistant-panel h4 {
            font-size: 1.6rem;
            margin-bottom: 6px;
        }

        .assistant-panel p {
            color: #94a3b8;
            font-size: 0.95rem;
            margin-bottom: 25px;
        }

        .assistant-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .assistant-item {
            display: flex;
            gap: 14px;
            align-items: center;
            background: rgba(255, 255, 255, 0.04);
            padding: 14px 18px;
            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            transition: 0.35s ease;
        }

        .assistant-item span {
            font-size: 1.4rem;
        }

        .assistant-item strong {
            font-size: 0.95rem;
        }

        .assistant-item small {
            font-size: 0.75rem;
            color: #94a3b8;
            display: flex;
            /* gap: 9px; */
            margin-top: 6px;
        }

        .assistant-item:hover {
            border-color: rgba(45, 212, 191, 0.4);
            background: rgba(45, 212, 191, 0.08);
            box-shadow: 0 0 25px rgba(45, 212, 191, 0.25);
        }

        .assistant-item:hover {
            transform: translateX(6px);
        }

        .assistant-float {
            position: absolute;
            padding: 10px 18px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            background: rgba(59, 130, 246, 0.12);
            color: #3b82f6;
            border: 1px solid rgba(59, 130, 246, 0.3);
            animation: assistFloat 4s ease-in-out infinite;
        }

        .f1 {
            top: 40px;
            right: -50px;
        }

        .f2 {
            bottom: 80px;
            left: -60px;
            animation-delay: 1s;
        }

        .f3 {
            bottom: -10px;
            right: 30px;
            animation-delay: 2s;
        }

        @keyframes assistFloat {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-16px);
            }
        }

        @media (max-width: 1024px) {
            .faq-wrapper {
                flex-direction: column;
                align-items: center;
            }

            .faq-right {
                margin-top: 50px;
            }
        }

        @media (max-width: 768px) {
            .faq-question {
                font-size: 1rem;
            }

            .floating-card {
                width: 100px;
                height: 45px;
                font-size: 0.9rem;
            }
            .f1 {
   
    right: -22px;
            }
        }
        .f2{
            left: -26px;
        }
        


        .contact-section {
    padding: 100px 5%;
    position: relative;
    z-index: 10;
        background: radial-gradient(circle at top left, rgba(11, 44, 255, 0.15), transparent 60%) var(--bg-dark);
}
.cc{
    padding-top:150px ;
        background: radial-gradient(circle at top left, var(--glow-blue), transparent 100%), radial-gradient(circle at bottom right, var(--glow-blue), transparent 100%) var(--bg-dark);
}
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-info h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.info-items {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.info-item i {
    font-size: 24px;
    color: var(--teal);
    width: 50px;
    height: 50px;
    background: rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
        background: rgba(59, 130, 246, 0.12);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}


.contact-form-wrapper {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.input-group {
    margin-bottom: 20px;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    transition: 0.3s;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    outline: none;
    border-color: var(--teal);
    background: rgba(16, 185, 129, 0.02);
}

.contact-form .btn-primary {
    width: 100%;
    margin-top: 10px;
}

/* --- Mobile Responsive --- */
@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .info-item {
        justify-content: center;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}
.ri-whatsapp-line {
    transition: 0.3s;
}

.info-item:hover .ri-whatsapp-line {
    color: #25D366 !important; 
    background: rgba(37, 211, 102, 0.1);
}
.info-item-link {
    text-decoration: none; 
    color: inherit; 
    display: block;
    transition: transform 0.3s ease;
}

.info-item-link:hover {
    transform: translateX(10px); 
}

.info-item h4 {
    color: #fff; 
    margin-bottom: 4px;
}

.info-item p {
    color: var(--text-gray);
    margin: 0;
}
        .footer {
            padding: 90px 8% 40px;
            /*background:
               radial-gradient(circle at top right, #1e293b, transparent 60%),
              radial-gradient(circle at bottom left, #312e81, transparent 60%);*/
            border-top: 1px solid rgba(255, 255, 255, 0.12);
                background: var(--bg-deep);

        }

   
        .footer-top {
            display: grid;
            grid-template-columns: 1.5fr repeat(2, 1fr);
            gap: 60px;
            margin-bottom: 50px;
        }

            .footer-brand h3 {
            font-size: 1.8rem;
            margin-bottom: 14px;
        }

        .footer-brand p {
            max-width: 360px;
            opacity: 0.8;
            line-height: 1.6;
        }

   
        .footer-links h4 {
            margin-bottom: 18px;
            font-size: 1rem;
        }

        .footer-links a {
            display: block;
            margin-bottom: 12px;
            font-size: 0.9rem;
            opacity: 0.75;
            text-decoration: none;
            transition: 0.3s ease;
            color: white;
        }

        .footer-links a:hover {
            opacity: 1;
            transform: translateX(6px);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            opacity: 0.6;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 25px;
        }

       
        @media (max-width: 900px) {
            .footer-top {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
        }

.policy-section {
    padding: 140px 8% 100px;
    background:
        radial-gradient(circle at top left, rgba(20,184,166,0.08), transparent 60%),
        radial-gradient(circle at bottom right, rgba(139,92,246,0.08), transparent 60%);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.policy-section h1 {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #2dd4bf, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.container-policy {
    max-width: 900px;
    margin: 0 auto;
    padding: 45px 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
}


.container-policy h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 40px 0 14px;
    color: #ffffff;
    position: relative;
    padding-left: 16px;
}

.container-policy h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: 22px;
    background: linear-gradient(180deg, #14b8a6, #8b5cf6);
    border-radius: 10px;
}

.container-policy p {
    font-size: 1rem;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 14px;
}

.container-policy p strong {
    color: #ffffff;
    font-weight: 600;
}


.container-policy ul {
    margin: 15px 0 25px 20px;
    padding-left: 10px;
}

.container-policy li {
    font-size: 0.95rem;
    color: #cbd5f5;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Contact Info */
.container-policy p:last-child {
    margin-top: 10px;
}

.container-policy a {
    color: #2dd4bf;
    text-decoration: none;
    font-weight: 600;
}

.container-policy a:hover {
    text-decoration: underline;
}



@media (max-width: 768px) {
    .policy-section {
        padding: 100px 6% 80px;
    }

    .container-policy {
        padding: 30px 25px;
    }

    .policy-section h1 {
        margin-bottom: 40px;
    }

    .container-policy h2 {
        font-size: 1.2rem;
    }

    .container-policy p,
    .container-policy li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container-policy {
        padding: 25px 18px;
    }

    .container-policy h2 {
        font-size: 1.1rem;
    }
}
/* --- Hero V4 Styling --- */
.hero-electricity-v4 {
   
    padding: 100px 8% 120px;
    position: relative;
    overflow: hidden;
        background: radial-gradient(circle at top left, var(--glow-blue), transparent 100%), radial-gradient(circle at bottom right, var(--glow-blue), transparent 100%) var(--bg-dark);
}
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

/* --- Left Side Content --- */
.status-pill {
    background: rgba(11, 44, 255, 0.1);
    border: 1px solid rgba(11, 44, 255, 0.2);
    color: #818cf8;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.pulse-dot {
    width: 8px; height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse-green 2s infinite;
}

.hero-main-text h1 {
    font-size: 50px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
    color: #fff;
}

.hero-main-text h1 span {
    background: linear-gradient(90deg, #0b2cff, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-main-text p {
    color: #94a3b8;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* --- Action Area --- */
.cta-glow {
    padding: 18px 40px;
    
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;

    transition: 0.3s;
}



.trust-icons {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    filter: grayscale(1) brightness(2);
    opacity: 0.5;
}

.trust-icons img { height: 35px; }

/* --- Right Side: Terminal Visual --- */
.hero-visual-frame {
    position: relative;
    z-index: 5;
}

.terminal-glass {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.terminal-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dots span {
    width: 8px; height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
    background: #ff5f56;
}
.dots span:nth-child(2) { background: #ffbd2e; }
.dots span:nth-child(3) { background: #27c93f; }

.input-mimic { margin-bottom: 20px; }
.input-mimic label { font-size: 0.7rem; color: #64748b; font-weight: 700; text-transform: uppercase; }
.input-mimic .bar {
    background: rgba(255,255,255,0.05);
    height: 45px;
    border-radius: 10px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    font-size: 0.9rem;
    color: #fff;
}

.payment-loading {
    border: 1px dashed #0b2cff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.scan-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #0b2cff;
    box-shadow: 0 0 15px #0b2cff;
    top: 0;
    left:0% !important;
    animation: scan 2s linear infinite;
  
  transform: translateY(-50%);
}

@keyframes scan { 
    0% { top: 0%; } 
    100% { top: 100%; } 
}

/* Orbs Background */
.glow-orb-1 {
    position: absolute;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(11, 44, 255, 0.2), transparent);
    top: -50px; right: -50px; z-index: -1;
}
.terminal-neutral .info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  color: #dbe4ff;
}

.terminal-neutral .info-row i {
  font-size: 18px;
  color: #7aa2ff;
}

.visual-progress {
  margin-top: 18px;
  text-align: center;
  font-size: 13px;
  opacity: 0.8;
}

@media (max-width: 991px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-action-area { display: flex; flex-direction: column; align-items: center; }
    .hero-visual-frame { margin-top: 50px; }
}

@media (max-width: 1200px) {
   .hero-electricity-v4 {
    padding: 0px 4% 70px;
  }
  .hero-container {
    gap: 40px;
  }

  .hero-main-text h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
  }

  .hero-main-text p {
    font-size: 1.1rem;
  }
}

@media (max-width: 991px) {
 
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .status-pill {
    margin: 0 auto 25px;
  }

  .hero-main-text h1 {
    font-size: 3rem;
  }

  .hero-main-text p {
    font-size: 1.05rem;
  }

  .hero-action-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .trust-icons {
    justify-content: center;
    margin-top: 10px;
  }

  .hero-visual-frame {
    margin-top: 60px;
  }

  .terminal-glass {
    max-width: 520px;
    margin: 0 auto;
  }
}


@media (max-width: 768px) {
 

  .hero-main-text h1 {
    font-size: 2.4rem;
  }

  .hero-main-text p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .cta-glow {
    padding: 16px 32px;
    font-size: 0.95rem;
  }

  .trust-icons img {
    height: 28px;
  }

  .terminal-glass {
    padding: 18px;
  }

  .terminal-header {
    margin-bottom: 20px;
  }

  .info-row {
    font-size: 14px;
  }
}

@media (max-width: 480px) {


  .hero-main-text h1 {
    font-size: 2.1rem;
  }

  .hero-main-text p {
    font-size: 0.95rem;
  }

  .status-pill {
    font-size: 0.75rem;
    padding: 6px 14px;
  }

  .pulse-dot {
    width: 6px;
    height: 6px;
  }

  .cta-glow {
    width: 100%;
    text-align: center;
  }

  .trust-icons {
    gap: 20px;
  }

  .terminal-glass {
    border-radius: 18px;
  }

  .terminal-header .title {
    font-size: 0.75rem;
  }
}

/* --- Modern How It Works Styling --- */
.how-it-works-modern {
    padding: 100px 8%;
       background: radial-gradient(circle at top left, var(--glow-blue), transparent 80%), radial-gradient(circle at bottom right, var(--glow-blue), transparent 86%) var(--bg-dark);
    color: #fff;
}

.header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 100px;
}

.badge-tech {
    background: rgba(11, 44, 255, 0.1);
    color: #0b2cff;
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    border: 1px solid rgba(11, 44, 255, 0.2);
}

.header-center h2 {
    font-size: 40px;
    margin: 20px 0;
}

.header-center h2 span { color: #0b2cff; }

/* Steps Layout */
.modern-steps {
    display: flex;
    flex-direction: column;
    gap: 150px; /* Large space between steps for clarity */
}

.m-step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
}

.m-step.reverse {
    flex-direction: row-reverse;
}

.m-text {
    flex: 1;
}

.m-number {
    font-size: 1.2rem;
    font-weight: 900;
    color: #0b2cff;
    margin-bottom: 20px;
}

.m-text h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.m-text p {
    color: #94a3b8;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.m-list {
    list-style: none;
    padding: 0;
}

.m-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #cbd5e1;
}

.m-list i { color: #0b2cff; }

/* Visual Side (The "Glass" part) */
.m-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.m-glass-card {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(190px);
    background-image: linear-gradient(#10388cad, #06183d5c), linear-gradient(45deg, #050c1a96, #5d81bc, #050c1aba);
}

.m-glass-card i {
    font-size: 4rem;
    color: white;
    margin-bottom: 20px;
}

.m-line {
    width: 60%;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    margin-bottom: 10px;
}

.m-line.short { width: 40%; }

/* Animations */
.pulse-ring {
    position: absolute;
    width: 100px; height: 100px;
    border: 2px solid #0b2cff;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(2); opacity: 0; }
}
/* 1. Global Floating & Glow for Glass Cards */
.m-glass-card {
    position: relative;
    overflow: hidden;
    animation: floatCard 4s ease-in-out infinite;
    transition: all 0.4s ease;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* 2. Step 1 & 4 (m-visual) - The Scanner/Radar Effect */
.m-step:nth-child(1) .m-glass-card::before,
.m-step:nth-child(4) .m-glass-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0b2cff, transparent);
    box-shadow: 0 0 15px #0b2cff;
    top: 0;
    left: 0;
    animation: scanMove 3s linear infinite;
}

@keyframes scanMove {
    0% { top: 0%; opacity: 0; }
    50% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* 3. Step 2 & 3 (m-visual reverse) - The Ripple/Pulse Effect */
.m-step:nth-child(2) .m-glass-card::after,
.m-step:nth-child(3) .m-glass-card::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(11, 44, 255, 0.5);
    border-radius: 40px; /* Matching your card radius */
    animation: pulseRipple 2s infinite;
}

@keyframes pulseRipple {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

.glow-icon {
    font-size: 4rem !important;
    color: #0b2cff;
    filter: drop-shadow(0 0 10px rgba(11, 44, 255, 0.4));
    animation: iconBreathe 3s ease-in-out infinite;
}

@keyframes iconBreathe {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(11, 44, 255, 0.4)); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 25px rgba(11, 44, 255, 0.8)); }
}


.m-glass-card:hover {
    border-color: #0b2cff;
    background: rgba(11, 44, 255, 0.08);
    color:#0b2cff;
}

.m-glass-card:hover .glow-icon {
    color: #fff;
    filter: drop-shadow(0 0 30px #0b2cff);
}
/* Responsive */
@media (max-width: 991px) {
    .m-step, .m-step.reverse {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    .m-visual { order: -1; } /* Visual stays top on mobile */
}
  /* --- Floating Animations --- */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: float 4s ease-in-out infinite;
}

.floating-delayed {
    animation: float 5s ease-in-out infinite;
    animation-delay: 1s;
}

/* --- Icon Glow Effect --- */
.glow-icon {
    filter: drop-shadow(0 0 10px rgba(11, 44, 255, 0.6));
    transition: 0.3s;
}

.m-glass-card:hover .glow-icon {
    filter: drop-shadow(0 0 20px rgba(11, 44, 255, 1));
    transform: scale(1.1);
}

/* --- Loading Bar Animation --- */
@keyframes loading {
    0% { width: 0%; opacity: 0.3; }
    50% { width: 60%; opacity: 1; }
    100% { width: 0%; opacity: 0.3; }
}

.loading-bar {
    position: relative;
    overflow: hidden;
}

.loading-bar::after {
    content: '';
    position: absolute;
    height: 100%;
    background: #0b2cff;
    animation: loading 3s infinite;
}

.loading-bar.delay::after {
    animation-delay: 1.5s;
}

/* --- Success Check Animation --- */
.success-check {
    margin-top: 15px;
    color: #00ff88;
    font-size: 2rem;
    opacity: 0;
    animation: fadeInCheck 2s infinite;
}

@keyframes fadeInCheck {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1.2); }
} 
/* --- Tech Capabilities Section --- */
.tech-capabilities {
    padding: 120px 8%;
       /*background: linear-gradient(180deg, #09102f 44%, #040b2a 100%);*/
    position: relative;
    overflow: hidden;
}

/* Vibrant Blue Orbs - Isse "Bluish" feel aayegi */
.tech-capabilities::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #0052ff 0%, transparent 70%);
    top: -10%;
    left: -10%;
    opacity: 0.3;
    filter: blur(100px);
}

.tech-capabilities::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #0040ff 0%, transparent 70%);
    bottom: -10%;
    right: -5%;
    opacity: 0.2;
    filter: blur(80px);
} 

.cap-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.cap-badge {
    background: rgba(11, 44, 255, 0.1);
    color: #0b2cff;
    padding: 6px 15px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-left: 3px solid #0b2cff;
}

.cap-header h2 {
    font-size: 3rem;
    margin-top: 25px;
    color: #fff;
    font-weight: 800;
}

.cap-header h2 span { 
background: linear-gradient(to right, #0b2cff, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;}

.cap-header p {
    color: #94a3b8;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-top: 20px;
}

/* Grid Layout */
.cap-grid {
    display: grid;
    grid-template-columns: repeat(3, 3fr);
    gap: 30px;
}

.cap-card {
    background: #0b0f1a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 45px 35px;
    border-radius: 20px;
    position: relative;
    transition: 0.4s ease;
    text-align: left;
        background: radial-gradient(circle at 50% -20%, #1e293b, #0f172a, #020617);
}

.cap-icon-wrap {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
}

.cap-icon-wrap i {
    font-size: 2.5rem;
    color: #0b2cff;
    position: relative;
    z-index: 2;
}

.cap-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 40px; height: 40px;
    background: #0b2cff;
    filter: blur(25px);
    opacity: 0.3;
}

.cap-card h4 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
}

.cap-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.cap-list {
    list-style: none;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.cap-list li {
    display: flex;
    align-items: center;
    color: #cbd5e1;
    font-size: 0.85rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.cap-list li i { color: #0b2cff; font-weight: 900; }

/* Active & Hover Effects */
.active-cap {
    border: 1px solid rgba(11, 44, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.cap-card:hover {
    transform: translateY(-10px);
    background: #0f172a;
    border-color: #0b2cff;
}
/* --- Water Hero V5 Styling --- */
.hero-water-v5 {
    padding: 100px 8% 100px;
    
    position: relative;
    overflow: hidden;
}

/* Water Theme Colors */
:root {
    --water-blue: #0077ff;
    --deep-sapphire: #003366;
    --liquid-cyan: #00d4ff;
}


.water-pill {
    background: rgba(0, 119, 255, 0.1) !important;
    border: 1px solid rgba(0, 119, 255, 0.3) !important;
   
}

.pulse-dot-blue {
    width: 8px; height: 8px;
    
    border-radius: 50%;
    animation: pulse-blue 2s infinite;
}

@keyframes pulse-blue {
    0% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 212, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0); }
}




/* --- Terminal Visual --- */
.water-theme {
    background: rgba(0, 20, 40, 0.6) !important;
    border: 1px solid rgba(0, 119, 255, 0.2) !important;
    backdrop-filter: blur(20px);
}

.info-row-water {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.icon-circle {
    width: 45px; height: 45px;
    background: rgba(0, 119, 255, 0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--liquid-cyan);
    font-size: 1.2rem;
    margin:0;
    margin-right:15px !important;
}

.info-content span { color: #fff; font-weight: 600; display: block; font-size: 0.95rem; }
.info-content small { color: #64748b; font-size: 0.8rem; }

/* Water Wave Progress */
.water-progress-container {
    margin-top: 30px;
    background: rgba(255,255,255,0.05);
    height: 60px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}

.water-wave-progress {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--water-blue);
    opacity: 0.3;
    animation: waterFlow 4s ease-in-out infinite alternate;
}

@keyframes waterFlow {
    from { transform: translateY(80%) skewY(0deg); }
    to { transform: translateY(20%) skewY(5deg); }
}

.water-progress-container p { position: relative; z-index: 2; font-size: 0.8rem; color: #fff; font-weight: 600; }
.water-orb-1 {
    position: absolute; top: -50px; right: -50px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(0, 119, 255, 0.2), transparent);
    z-index: -1; filter: blur(50px);
}
/* --- Fluid Stream Section Styling --- */
.water-stream-section {
    padding: 120px 8%;
       background: radial-gradient(circle at top left, var(--glow-blue), transparent 63%), radial-gradient(circle at bottom right, var(--glow-blue), transparent 63%) var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.stream-header {
    text-align: center;
    margin-bottom: 100px;
}

.stream-badge {
    color: #00d4ff;
    letter-spacing: 3px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.75rem;
    border-bottom: 2px solid #00d4ff;
    padding-bottom: 5px;
}

.stream-header h2 {
    font-size: 3.5rem;
    color: #fff;
    margin-top: 25px;
    font-weight: 800;
}

.stream-header h2 span {
    color: #0077ff;
    text-shadow: 0 0 30px rgba(0, 119, 255, 0.4);
}

/* Fluid Wrapper & SVG */
.fluid-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 0;
}

.stream-svg {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 200px;
    z-index: 1;
}

/* Stream Nodes */
.stream-node {
    display: flex;
    align-items: center;
    width: 50%;
    margin-bottom: 120px;
    position: relative;
    z-index: 2;
}

.stream-node.left { padding-right: 100px; text-align: right; justify-content: flex-end; }
.stream-node.right { margin-left: auto; padding-left: 100px; text-align: left; }

/* The "Water Drop" Bubble */
.node-bubble {
    position: absolute;
    width: 70px; height: 70px;
    background: #020617;
    border: 2px solid #0077ff;
    border-radius: 50% 50% 50% 0; /* Water Drop Shape */
    transform: rotate(-45deg);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 20px rgba(0, 119, 255, 0.4);
    z-index: 3;
}

.node-bubble i {
    transform: rotate(45deg); /* Fix icon rotation */
    font-size: 1.8rem;
    color: #00d4ff;
}

.left .node-bubble { right: -35px; }
.right .node-bubble { left: -35px; }

/* Text Styling */
.node-text h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.node-num {
    color: rgba(0, 212, 255, 0.2);
    font-size: 4rem;
    font-weight: 900;
    position: absolute;
    top: -40px;
    z-index: -1;
}

.left .node-num { right: 110px; }
.right .node-num { left: 110px; }

.node-text p {
    color: #94a3b8;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .stream-svg { left: 20px; transform: none; }
    .stream-node { width: 100%; padding-left: 80px !important; text-align: left !important; justify-content: flex-start !important; }
    .node-bubble { left: -15px !important; width: 50px; height: 50px; }
    .node-num { left: 80px !important; font-size: 2.5rem; top: -20px; }
    .cap-grid{
            grid-template-columns: repeat(1, 1fr);
    }
    .info-row-water{
            text-align: left !important;
    }
    .icon-circle{
            width: 33px;
    height: 33px;
        font-size: 15px !important;
        margin-right:0 !important;
    }
    .stream-header h2 {
    font-size: 30px !important;
    
    margin-bottom: 20px;
    }
    .cap-header h2 {
    font-size: 30px !important;
    }
    .header-center h2, .m-text h3 {
    font-size: 28px !important;
    }
    .m-text{
        text-align:left !important;
    }
    .cap-badge{
        font-size:12px !important;
    }
    .cap-header, .header-center {
       text-align:left !important;
    }
}
/* --- Water Flow Steps Section --- */
.water-flow-steps {
    padding: 100px 8%;
        background: radial-gradient(circle at top left, var(--glow-blue), transparent 63%), radial-gradient(circle at bottom right, var(--glow-blue), transparent 63%) var(--bg-dark);
    position: relative;
}

.streamline-container {
    max-width: 1000px;
    margin: 80px auto 0;
    position: relative;
}

/* Central Pipe Line */
.flow-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: rgba(0, 119, 255, 0.1);
    transform: translateX(-50%);
    overflow: hidden;
}

.water-pulse {
    position: absolute;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #00d4ff, transparent);
    animation: liquidFlow 3s infinite linear;
}

@keyframes liquidFlow {
    0% { top: -100px; }
    100% { top: 100%; }
}

/* Steps Styling */
.stream-step {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-bottom: 80px;
    position: relative;
}

.stream-step.reverse {
    flex-direction: row-reverse;
}

/* Icon Wrap - Floating Effect */
.step-icon-wrap {
    width: 80px;
    height: 80px;
       background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(190px);
    background-image: linear-gradient(#10388cad, #06183d5c), linear-gradient(45deg, #050c1a96, #5d81bc, #050c1aba);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    
    font-size: 2rem;
    position: relative;
    z-index: 5;
    margin: 0 50px;
    box-shadow: 0 0 30px rgba(0, 119, 255, 0.2);
}

.step-tag {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #0077ff;
    color: white;
    font-size: 0.7rem;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Content Box */
.step-content {
    flex: 1;
    background: rgba(15, 23, 42, 0.5);
    padding: 40px;
    border-radius: 25px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    transition: 0.4s;
}

.step-content:hover {
    border-color: #00d4ff;
    transform: scale(1.02);
}

.step-content h3 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.step-content p {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 20px;
}

.tech-label {
    display: inline-block;
    padding: 5px 15px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(190px);
    background-image: linear-gradient(#10388cad, #06183d5c), linear-gradient(45deg, #050c1a96, #5d81bc, #050c1aba);
    color: var(--text-gray);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Header Text */
.badge-water {
    background: rgba(0, 119, 255, 0.1);
    
    padding: 6px 15px;
    border-radius: 4px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.7rem;
}

.header-center h2 span {
    color: #0077ff;
    text-shadow: 0 0 20px rgba(0, 119, 255, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .flow-line { left: 30px; }
    .stream-step, .stream-step.reverse { flex-direction: column; text-align: left; }
    .step-icon-wrap { margin: 0 20px 0 0; width: 60px; height: 60px; min-width: 60px; }
    .step-content { padding: 25px;     margin-top: 20px;}
}
/* --- Portal Experience Styling --- */
.portal-experience {
    padding: 150px 0;
    
    position: relative;
    overflow: hidden;
}

/* Moving Water Ripple Background */
.water-portal-bg {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    z-index: 1;
}

.ripple-circle {
    position: absolute;
    top: 50%; left: 50%;
    width: 100px; height: 100px;
    border: 1px solid rgba(0, 119, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: rippleExpand 6s infinite linear;
}

.delay-1 { animation-delay: 2s; }
.delay-2 { animation-delay: 4s; }

@keyframes rippleExpand {
    0% { width: 0; height: 0; opacity: 1; }
    100% { width: 1500px; height: 1500px; opacity: 0; }
}

/* Portal Panes */
.portal-wrap {
    display: flex;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 5;
    flex-wrap: wrap;
}

.portal-pane {
    width: 350px;
    height: 500px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px 100px 20px 20px; /* Unique Capsule Shape */
    padding: 60px 40px;
    position: relative;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.shift-down { margin-top: 100px; } /* Asymmetric Look */

.portal-pane:hover {
    transform: translateY(-30px);
    border-color: #00d4ff;
    background: rgba(0, 119, 255, 0.05);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}

.pane-number {
    position: absolute;
    top: 40px; right: 40px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
}

.pane-icon {
    font-size: 3.5rem;
    color: #00d4ff;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.5));
}

.pane-content h2 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.pane-content h2 span {
    color: #0077ff;
    display: block;
}

.pane-content p {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 1rem;
}

.pane-glass-glow {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 50%;
    background: linear-gradient(to top, rgba(0, 119, 255, 0.1), transparent);
    pointer-events: none;
}

/* Mobile Fix */
@media (max-width: 991px) {
    .portal-wrap { flex-direction: column; align-items: center; margin:20px; }
    .shift-down { margin-top: 0; }
    .portal-pane { width: 100%; max-width: 400px; height: auto;      padding: 60px 20px !important; }
}
/* --- Mechanical Tech Section --- */
.mechanical-tech {
    padding: 140px 8%;
   
    position: relative;
    overflow: hidden;
}

.tech-canvas-bg {
    position: absolute;
    width: 100%; height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 119, 255, 0.05) 0%, transparent 40%);
    top: 0; left: 0;
}

.mech-header { text-align: center; margin-bottom: 120px; }
.mech-label {  letter-spacing: 5px; font-weight: 800; font-size: 0.7rem; text-transform: uppercase; color:#2563eb !important; }
.mech-header h2 { font-size: clamp(2.5rem, 5vw, 4rem); color: #fff; font-weight: 900; margin-top: 15px; }
.mech-header h2 span { color: transparent; -webkit-text-stroke: 1px #2563eb; }

/* Engine Wrap Layout */
.mech-engine-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 40px;
}

.mech-part {
    position: relative;
    flex: 1;
    z-index: 5;
}

.part-number {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: -50px; left: -20px;
}

.part-body {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 40px;
    border-radius: 0 40px 0 40px; /* Sharp Industrial Shape */
    transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.mech-part:hover .part-body {
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.03);
    transform: translateY(-10px);
}

.part-icon { font-size: 3rem; color: #00d4ff; margin-bottom: 25px; }
.part-info h4 { color: #fff; font-size: 1.6rem; margin-bottom: 15px; font-weight: 800; }
.part-info p { color: #94a3b8; font-size: 0.95rem; line-height: 1.6; }

/* The Magnetic Arm (Connecting Line) */
.magnetic-arm {
    position: absolute;
    top: 50%; right: -40px;
    width: 40px; height: 1px;
    background: rgba(0, 212, 255, 0.3);
    z-index: 1;
}

.shift-up { transform: translateY(-50px); }

/* Mobile View */
@media (max-width: 991px) {
    .mech-engine-wrap { flex-direction: column; }
    .shift-up { transform: translateY(0); }
    .magnetic-arm { display: none; }
}
/* --- Gas Hero Section --- */
.hero-gas-v4 {
    padding: 120px 8%;
   
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.gas-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

/* Badge Styling */
.gas-status-badge {
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 8px 18px;
    border-radius: 50px;
    ;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.gas-pulse-icon {
    width: 8px; height: 8px;
   
    border-radius: 50%;
    box-shadow: 0 0 10px #00d4ff;
    animation: gasPulse 2s infinite;
}

.hero-main-text h1 {
    font-size: 4rem; color: #fff; font-weight: 900; line-height: 1.1;
}



/* Control Panel Visual */
.gas-visual-frame {
    position: relative;
    z-index: 10;
}

.control-panel-glass {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
    overflow: hidden;
}

.panel-top-bar {
    background: rgba(255,255,255,0.05);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sensor-lights { display: flex; gap: 8px; }
.s-light { width: 8px; height: 8px; border-radius: 50%; background: #222; }
.s-light.active {  box-shadow: 0 0 10px #00d4ff; }
.panel-id { font-size: 0.65rem; color: #94a3b8; font-weight: 800; letter-spacing: 1px; }

.panel-content-grid {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.telemetry-card {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 15px;
}

.tel-header { font-size: 0.6rem; color: #00d4ff; font-weight: 900; margin-bottom: 10px; }
.tel-row { display: flex; justify-content: space-between; font-size: 0.75rem; margin-bottom: 5px; }
.tel-row .label { color: #64748b; }
.tel-row .value { color: #fff; font-weight: 700; }
.tel-row .value.cyan { color: #00d4ff; }

.g-feat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    color: #fff;
    font-size: 0.9rem;
}

.g-feat-icon {     color: var(--primary-blue); font-size: 1.2rem; }

.wave-display {
    background: rgba(0,0,0,0.4);
    height: 60px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wave-line {
    position: absolute;
    width: 200%; height: 2px;
    background: linear-gradient(90deg, transparent, #2563eb, transparent);
    animation: gasWave 3s infinite linear;
}

.status-msg { font-size: 0.6rem;  font-weight: 800; z-index: 5; letter-spacing: 2px; }

/* Decorative Background Glows */
.gas-glow-blue {
    position: absolute;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(0, 119, 255, 0.2), transparent 70%);
    top: -50px; right: -50px; z-index: -1;
}

/* Animations */
@keyframes gasPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(1.2); } }
@keyframes gasWave { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

/* Mobile View */
@media (max-width: 991px) {
    .gas-container { grid-template-columns: 1fr; text-align: center; }
    .gas-status-badge { justify-content: center; }
    .hero-main-text h1 { font-size: 3rem; }
}
@media (max-width: 520px) {
 .hero-main-text h1 {         font-size: 26px;
        line-height: 1.4;
     }
     .hero-main-text{
         text-align:left !important;
     }
     .hero-water-v5{
         padding-top:0 !important;
     }
     .water-progress-container p {
   margin-top:20px;
    font-size: 12px !important;
     }
     .status-msg{
             margin-top: 15px;
     }
     .mech-header{
         text-align:left !important;
     }
     .mech-header h2{
              font-size: 28px !important; 
    
    margin-bottom: 15px;
     }
     .scetion-heading{
         text-align:left !important;
     }
     .section-heading h2 {
    font-size: 28px !important;
     }
}
@media (max-width: 400px) {
.terminal-neutral .info-row {
    
    font-size: 11px !important;
}
}
/* --- Hero DTH v8 Section --- */
.hero-dth-v8 {
    padding: 100px 8%;
       background: radial-gradient(circle at top left, var(--glow-blue), transparent 100%), radial-gradient(circle at bottom right, var(--glow-blue), transparent 100%) var(--bg-dark);
    min-height: 85vh;
    display: flex; align-items: center;
    position: relative; overflow: hidden;
}

.hero-container {
    display: grid; grid-template-columns: 1.1fr 0.9fr;
    gap: 60px; align-items: center; width: 100%;
}

/* Status Pill */
.dth-pill-v8 {
    background: rgba(0, 212, 255, 0.08) !important;
    border: 1px solid rgba(0, 212, 255, 0.2) !important;
    
    padding: 8px 16px; border-radius: 50px; display: inline-flex;
    align-items: center; gap: 10px; font-weight: 700; font-size: 0.8rem;
    margin-bottom: 25px;
}

.dot-online { width: 8px; height: 8px; background: #00ffaa; border-radius: 50%; box-shadow: 0 0 10px #00ffaa; animation: pulse 2s infinite; }

/* Right Terminal Design */
.tech-terminal-v8 {
    
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
    overflow: hidden;
    position: relative; z-index: 10;
}

.t-v8-header {
    background: rgba(255,255,255,0.03);
    padding: 12px 15px;
    display: flex; align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.t-v8-dots { display: flex; gap: 6px; flex: 1; }
.t-v8-dots span { width: 8px; height: 8px; border-radius: 50%; background: #999; }
.t-v8-title { font-size: 0.65rem; color: #64748b; font-weight: 800; letter-spacing: 1px; }
.t-v8-ping { font-size: 0.6rem; color: #00ffaa; margin-left: 15px; background: rgba(0,255,170,0.1); padding: 2px 6px; border-radius: 4px; }

.t-v8-body { padding: 25px; }

.t-v8-row { display: flex; justify-content: space-between; margin-bottom: 20px; }
.t-v8-label { font-size: 0.7rem; color: #94a3b8; font-weight: 700; }
.t-v8-value.cyan { color: #2563eb; font-size: 0.75rem; font-weight: 800; }

/* Signal Bars */
.t-v8-signal-box { background: rgba(0,0,0,0.2); padding: 15px; border-radius: 8px; margin-bottom: 20px; }
.signal-text { font-size: 0.6rem; color: #999; font-weight: 800; margin-bottom: 8px; }
.signal-bar-wrap { display: flex; gap: 4px; }
.s-bar { height: 4px; flex: 1; background: #222; border-radius: 10px; }
.s-bar.active { background: #2563eb; box-shadow: 0 0 10px rgba(0,212,255,0.4); }

/* Operator List */
.t-v8-operators { display: flex; flex-direction: column; gap: 10px; }
.op-item { 
    display: flex; align-items: center; gap: 12px; 
    background: rgba(255,255,255,0.02); padding: 10px 15px; 
    border-radius: 8px; color: #fff; font-size: 0.85rem;
}
.op-item i { color: #2563eb; }
.op-check { margin-left: auto; color: #00ffaa; font-size: 1rem; }

.t-v8-footer {
    margin-top: 25px; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 15px;
    font-size: 0.65rem; color: #64748b; font-family: monospace; position: relative;
}
.footer-scan {
    position: absolute; top: 0; left: 0; width: 0%; height: 1px; background:#2563eb;
    animation: scanLine 2s infinite linear;
}

/* Background Glows */
.glow-v8-1 { position: absolute; top: -50px; right: -50px; width: 250px; height: 250px; background: radial-gradient(circle, rgba(0, 119, 255, 0.2), transparent 70%); }

@keyframes scanLine { 0% { width: 0%; left: 0; } 100% { width: 100%; left: 0; } }

/* Mobile */
@media (max-width: 991px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
}