 /* ============== GROW CONTACT SECTION ============== */
        .grow-contact-section {
            background: white;
            position: relative;
            overflow: hidden;
        }

        /* Make input and textarea placeholder text white */

        /* Optional: make the actual text typed inside also white */
        /* .grow-input,
                                    .form-control,
                                    .form-select {
                                      color: #ffffff !important;
                                    } */

        /* Input + Select + Textarea Base */
        .grow-input {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.4);
            color: #fff;
        }

        /* Placeholder color white with opacity */
        .grow-input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        /* For better support across browsers */
        .grow-input::-webkit-input-placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .grow-input:-ms-input-placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .grow-input::-moz-placeholder {
            color: rgba(255, 255, 255, 0.7);
            opacity: 1;
        }

        .grow-input:-moz-placeholder {
            color: rgba(255, 255, 255, 0.7);
            opacity: 1;
        }

        /* Focus Style */
        .grow-input:focus {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            box-shadow: none;
        }

        .grow-info-box {
            position: relative;
            padding: 2rem;
            background: radial-gradient(circle at top left, #031023, #001F54, #000);
            border-left: 6px solid #7d7d7e;
            border-radius: 16px;
            box-shadow: 0 0 25px rgba(0, 183, 255, 0.15);
            animation: fadeInLeft 1.5s ease-in-out;
        }

        .glow-text {
            color: #c5c5c5;

        }

        .highlight {
            color: #c1c3c4;
            font-weight: 600;
        }

        .glow-icon {
            color: #d1d1d1;
            font-size: 1.3rem;
            filter: drop-shadow(0 0 5px #b6b7b7);
        }

        /* FORM CARD */
        .grow-form-card {
            background: radial-gradient(circle at top left, #031023, #001F54, #000);
            border-radius: 16px;
            box-shadow: 0 0 25px rgba(0, 183, 255, 0.1);
            backdrop-filter: blur(15px);
            animation: fadeInRight 1.5s ease-in-out;
            border-top: 6px solid #7d7d7e;
        }

        .grow-input {
            background: rgba(234, 233, 233, 0.08);
            border: 1px solid rgba(10, 27, 156, 0.3);
            color: #fff;
            border-radius: 10px;
            padding: 0.8rem;
            transition: all 0.3s ease-in-out;
        }

        .grow-input:focus {
            border-color: #00b7ff;
            box-shadow: 0 0 10px #00b7ff;
            outline: none;
        }

        /* Dropdown Styling */
        .grow-input option {
            background-color: #acacac;
            color: #292222;
        }

        .grow-btn {
            background: #c0c0c1;
            border: none;
            color: white;
            font-weight: 600;
            border-radius: 5px !important;
            transition: all 0.3s ease;

        }

        .grow-btn:hover {
            background: #496ff8;
            box-shadow: 0 0 20px #496ff8;
            transform: translateY(-2px);
        }

        /* ============== ANIMATIONS ============== */
        @keyframes fadeInLeft {
            0% {
                opacity: 0;
                transform: translateX(-50px);
            }

            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

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

            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* ================= IMPACT SECTION ================= */
        .impact-main-section {
            background: linear-gradient(135deg, #0b1a3a, #09172d 80%);
            color: #fff;
            overflow: hidden;
            position: relative;
        }

        /* TIMELINE STRUCTURE */
        .impact-timeline {
            position: relative;
            border-left: 2px solid rgba(255, 255, 255, 0.15);
            padding-left: 0.3rem;
        }

        .impact-step {
            position: relative;
            margin-bottom: 2rem;
        }

        .impact-icon {
            position: absolute;
            left: -1.6rem;
            top: 0;
            width: 2.8rem;
            height: 2.8rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid transparent;
            transition: 0.3s ease;
        }

        .impact-step:hover .impact-icon {
            transform: scale(1.1);
            box-shadow: 0 0 15px currentColor;
        }

        /* Neon color variants */
        .impact-blue {
            color: #00bfff;
            border-color: #00bfff;
        }

        .impact-green {
            color: #00ffae;
            border-color: #00ffae;
        }

        .impact-purple {
            color: #b86cff;
            border-color: #b86cff;
        }

        .impact-text {
            margin-left: 2rem;
        }

        .impact-text h5 {
            font-weight: 600;
            color: #fff;
        }

        .impact-text p {
            color: #b0b9c4;
            font-size: 0.9rem;
        }

        /* CTA BUTTON */
        .impact-btn-wrapper {
            text-align: left;
        }

        .impact-btn {
            display: inline-block;
            background: #066aff;
            color: #fff;
            padding: 0.7rem 1.5rem;
            border-radius: 5px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .impact-btn:hover {
            background: #0098cc;
            transform: translateY(-3px);
        }

        /* ================= INDUSTRY SECTION ================= */
        .biz-card {
            height: 260px;
            background-size: cover;
            background-position: center;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            transition: all 0.4s ease;
        }

        .biz-card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
        }

        .biz-overlay {
            background: rgba(0, 0, 0, 0.55);
            backdrop-filter: blur(2px);
            transition: background 0.3s ease;
        }

        .biz-card:hover .biz-overlay {
            background: rgba(0, 0, 0, 0.7);
        }

        .biz-btn {
            color: #00d4ff;
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .biz-btn:hover {
            color: #fff;
        }

        /* Background Images */
        .biz-trade {
            background-image: url('images/trade.png');
        }

        .biz-manufacturing {
            background-image: url('images/manufacturing 1.jpg');
        }

        /* Responsive Tweaks */
        @media (max-width: 768px) {
            .biz-card {
                height: 220px;
            }
        }
.grow-section {
    background-image: url("/images/back.jpeg");
    background-size: cover;        /* image full cover */
    background-position: center;   /* center align */
    background-repeat: no-repeat;  /* repeat off */

    color: #fff;
    overflow: hidden;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    /* padding: 0 5%;
    margin-top: -10vh; */
}

        .grow-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        #networkCanvas {
            width: 100%;
            height: 100%;
            display: block;
        }

        .grow-content {
            position: relative;
            z-index: 2;
            max-width: 600px;
            margin-left: 17vh;
            max-width: 70vw;
        }

        .grow-heading {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
             margin-top: 1.6rem;


        }

         .grow-text {
            font-size: 1.1rem;
    color: #d0d5e2;
    margin-bottom: 2rem;
        }

        .grow-btn {
            background: #4f6fff;
            color: #fff;
            text-decoration: none;
            padding: 12px 30px;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .grow-btn:hover {
            box-shadow: 0 0 20px rgba(127, 83, 172, 0.6);
            transform: translateY(-3px);
        }