<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Satyanarayan Steel Industries | Premium Screw Manufacturer</title>

    <style>

        :root {

            --slate-900: #0f172a;

            --slate-800: #1e293b;

            --slate-100: #f1f5f9;

            --gold-primary: #d97706;

            --gold-hover: #b45309;

            --whatsapp: #25D366;

            --whatsapp-hover: #128C7E;

            --surface: #ffffff;

            --text-main: #334155;

            --text-muted: #64748b;

        }

 

        * {

            margin: 0;

            padding: 0;

            box-sizing: border-box;

            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

        }

 

        html {

            scroll-behavior: smooth;

        }

 

        body {

            background-color: #f8fafc;

            color: var(--text-main);

            line-height: 1.6;

            -webkit-font-smoothing: antialiased;

        }

 

        /* --- Glassmorphism Header --- */

        header {

            background: rgba(15, 23, 42, 0.95);

            backdrop-filter: blur(10px);

            -webkit-backdrop-filter: blur(10px);

            color: #fff;

            padding: 1rem 5%;

            position: sticky;

            top: 0;

            z-index: 1000;

            display: flex;

            justify-content: space-between;

            align-items: center;

            border-bottom: 1px solid rgba(255,255,255,0.1);

            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);

        }

 

        .brand-logo {

            display: flex;

            align-items: center;

            gap: 15px;

        }

 

        .logo-badge {

            background: linear-gradient(135deg, #e2e8f0, #94a3b8);

            color: var(--slate-900);

            font-weight: 900;

            padding: 8px 14px;

            border-radius: 8px;

            font-size: 1.4rem;

            letter-spacing: 2px;

            box-shadow: inset 0 2px 4px rgba(255,255,255,0.5), 0 4px 6px rgba(0,0,0,0.2);

        }

 

        .logo-text {

            font-size: 1.25rem;

            font-weight: 800;

            color: #fff;

            line-height: 1.2;

            letter-spacing: 0.5px;

        }

 

        .logo-text span {

            display: block;

            font-size: 0.75rem;

            color: var(--gold-primary);

            letter-spacing: 2px;

            font-weight: 600;

            text-transform: uppercase;

        }

 

        nav a {

            color: #cbd5e1;

            text-decoration: none;

            margin-left: 2rem;

            font-weight: 500;

            font-size: 0.95rem;

            transition: all 0.3s ease;

            position: relative;

        }

 

        nav a::after {

            content: '';

            position: absolute;

            width: 0;

            height: 2px;

            bottom: -4px;

            left: 0;

            background-color: var(--gold-primary);

            transition: width 0.3s ease;

        }

 

        nav a:hover {

            color: #fff;

        }

 

        nav a:hover::after {

            width: 100%;

        }

 

        /* --- Premium Hero Section --- */

        .hero {

            background: radial-gradient(circle at center, var(--slate-800) 0%, var(--slate-900) 100%);

            color: #fff;

            padding: 7rem 5% 6rem;

            text-align: center;

            position: relative;

            overflow: hidden;

        }

 

        .hero::before {

            content: '';

            position: absolute;

            top: 0; left: 0; right: 0; bottom: 0;

            background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjIiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiLz48L3N2Zz4=');

            opacity: 0.5;

        }

 

        .hero-content {

            position: relative;

            z-index: 1;

            max-width: 900px;

            margin: 0 auto;

        }

 

        .hero h1 {

            font-size: 3.5rem;

            margin-bottom: 1.2rem;

            font-weight: 900;

            line-height: 1.1;

            letter-spacing: -1px;

        }

 

        .hero p {

            font-size: 1.25rem;

            margin: 0 auto 2.5rem;

            color: #cbd5e1;

            font-weight: 400;

        }

 

        .badge-container {

            display: flex;

            justify-content: center;

            gap: 12px;

            flex-wrap: wrap;

            margin-bottom: 3rem;

        }

 

        .badge {

            background: rgba(255, 255, 255, 0.1);

            backdrop-filter: blur(5px);

            border: 1px solid rgba(255, 255, 255, 0.2);

            padding: 8px 20px;

            border-radius: 30px;

            font-size: 0.95rem;

            font-weight: 600;

            color: #f8fafc;

            box-shadow: 0 4px 6px rgba(0,0,0,0.1);

        }

 

        .btn {

            display: inline-block;

            background-color: var(--gold-primary);

            color: #fff;

            padding: 1rem 2.5rem;

            border-radius: 8px;

            text-decoration: none;

            font-weight: 700;

            font-size: 1.1rem;

            transition: all 0.3s ease;

            border: none;

            cursor: pointer;

            box-shadow: 0 4px 15px rgba(217, 119, 6, 0.4);

        }

 

        .btn:hover {

            background-color: var(--gold-hover);

            transform: translateY(-2px);

            box-shadow: 0 6px 20px rgba(217, 119, 6, 0.6);

        }

 

        /* --- Sections --- */

        section {

            padding: 6rem 5%;

            max-width: 1200px;

            margin: 0 auto;

        }

 

        .section-header {

            text-align: center;

            margin-bottom: 4rem;

        }

 

        .section-header h2 {

            font-size: 2.5rem;

            color: var(--slate-900);

            margin-bottom: 1rem;

            font-weight: 800;

            letter-spacing: -0.5px;

        }

 

        .section-header p {

            color: var(--text-muted);

            font-size: 1.1rem;

            max-width: 600px;

            margin: 0 auto;

        }

 

        /* --- Product Finishes --- */

        .finish-grid {

            display: grid;

            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

            gap: 2.5rem;

        }

 

        .finish-card {

            background: var(--surface);

            border-radius: 16px;

            padding: 3rem 2rem;

            text-align: center;

            box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);

            transition: transform 0.4s ease, box-shadow 0.4s ease;

            position: relative;

            overflow: hidden;

            border: 1px solid #e2e8f0;

        }

 

        .finish-card:hover {

            transform: translateY(-10px);

            box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);

        }

 

        .finish-card.bright::before {

            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 6px;

            background: linear-gradient(90deg, #94a3b8, #e2e8f0);

        }

 

        .finish-card.black::before {

            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 6px;

            background: linear-gradient(90deg, #18181b, #3f3f46);

        }

 

        .finish-card h3 {

            font-size: 1.8rem;

            color: var(--slate-900);

            margin-bottom: 1rem;

            font-weight: 700;

        }

 

        /* --- Specifications Table --- */

        .spec-container {

            background: var(--surface);

            border-radius: 16px;

            padding: 3rem;

            box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);

            border: 1px solid #e2e8f0;

        }

 

        .spec-meta {

            display: grid;

            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

            gap: 1.5rem;

            background: var(--slate-100);

            padding: 2rem;

            border-radius: 12px;

            margin-bottom: 3rem;

        }

 

        .meta-item strong {

            display: block;

            color: var(--text-muted);

            font-size: 0.8rem;

            text-transform: uppercase;

            letter-spacing: 1px;

            margin-bottom: 0.3rem;

        }

 

        .meta-item span {

            font-size: 1.15rem;

            font-weight: 700;

            color: var(--slate-900);

        }

 

        .size-grid {

            display: grid;

            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));

            gap: 2rem;

        }

 

        .gauge-block {

            border: 1px solid #e2e8f0;

            border-radius: 12px;

            overflow: hidden;

            background: #fff;

            transition: box-shadow 0.3s ease;

        }

 

        .gauge-block:hover {

            box-shadow: 0 10px 20px -5px rgba(0,0,0,0.08);

        }

 

        .gauge-header {

            background-color: var(--slate-800);

            color: #fff;

            padding: 1rem;

            font-weight: 700;

            text-align: center;

            letter-spacing: 0.5px;

        }

 

        .gauge-sizes {

            padding: 1.5rem;

            display: flex;

            flex-wrap: wrap;

            gap: 10px;

            justify-content: center;

        }

 

        .size-pill {

            background: var(--slate-100);

            border: 1px solid #cbd5e1;

            padding: 6px 12px;

            border-radius: 6px;

            font-size: 0.95rem;

            font-weight: 600;

            color: var(--slate-900);

            transition: all 0.2s;

        }

 

        .size-pill:hover {

            background: var(--slate-800);

            color: #fff;

            border-color: var(--slate-800);

        }

 

        /* --- Packaging --- */

        .packaging-section {

            display: grid;

            grid-template-columns: 1fr 1fr;

            gap: 2.5rem;

        }

 

        .pack-card {

            border-radius: 16px;

            padding: 2.5rem;

            position: relative;

            transition: transform 0.3s ease;

        }

 

        .pack-card:hover {

            transform: translateY(-5px);

        }

 

        .pack-card.current {

            background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);

            border: 1px solid #bbf7d0;

        }

 

        .pack-card.upcoming {

            background: linear-gradient(135deg, #fffbe0 0%, #fef3c7 100%);

            border: 1px solid #fde68a;

        }

 

        .pack-badge {

            font-size: 0.75rem;

            font-weight: 800;

            text-transform: uppercase;

            letter-spacing: 1px;

            padding: 6px 14px;

            border-radius: 20px;

            display: inline-block;

            margin-bottom: 1.2rem;

            box-shadow: 0 4px 6px rgba(0,0,0,0.05);

        }

 

        .pack-badge.active { background: #16a34a; color: #fff; }

        .pack-badge.soon { background: var(--gold-primary); color: #fff; }

 

        .pack-card h3 {

            font-size: 1.6rem;

            color: var(--slate-900);

            margin-bottom: 0.8rem;

        }

 

        /* --- Contact --- */

        .contact-box {

            display: grid;

            grid-template-columns: 1fr 1fr;

            gap: 4rem;

            background: var(--surface);

            padding: 4rem;

            border-radius: 16px;

            box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);

            border: 1px solid #e2e8f0;

        }

 

        .contact-details p {

            margin-bottom: 1.8rem;

            display: flex;

            flex-direction: column;

        }

 

        .contact-details label {

            font-size: 0.85rem;

            font-weight: 700;

            color: var(--text-muted);

            text-transform: uppercase;

            letter-spacing: 1px;

            margin-bottom: 0.3rem;

        }

 

        .contact-details span {

            font-size: 1.1rem;

            color: var(--slate-900);

            font-weight: 600;

            line-height: 1.5;

        }

 

        form input, form textarea {

            width: 100%;

            padding: 1rem 1.2rem;

            margin-bottom: 1.2rem;

            border: 2px solid #e2e8f0;

            border-radius: 8px;

            outline: none;

            font-size: 1rem;

            background: #f8fafc;

            transition: border-color 0.3s;

        }

 

        form input:focus, form textarea:focus {

            border-color: var(--gold-primary);

            background: #fff;

        }

 

        form button {

            width: 100%;

        }

 

        /* --- Floating WhatsApp Button --- */

        .whatsapp-float {

            position: fixed;

            width: 65px;

            height: 65px;

            bottom: 30px;

            right: 30px;

            background-color: var(--whatsapp);

            color: #FFF;

            border-radius: 50px;

            text-align: center;

            font-size: 30px;

            box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);

            z-index: 1000;

            display: flex;

            align-items: center;

            justify-content: center;

            transition: all 0.3s ease;

            text-decoration: none;

        }

 

        .whatsapp-float:hover {

            transform: scale(1.1);

            background-color: var(--whatsapp-hover);

            box-shadow: 0 8px 20px rgba(18, 140, 126, 0.5);

        }

 

        .whatsapp-float svg {

            width: 35px;

            height: 35px;

            fill: currentColor;

        }

 

        /* --- Footer --- */

        footer {

            background-color: var(--slate-900);

            color: #94a3b8;

            text-align: center;

            padding: 2.5rem 5%;

            font-size: 0.95rem;

        }

 

        @media (max-width: 900px) {

            .contact-box, .packaging-section {

                grid-template-columns: 1fr;

            }

            .contact-box { padding: 2rem; }

            .hero h1 { font-size: 2.5rem; }

            nav a { display: none; /* In a real scenario, add a hamburger menu here */ }

            .whatsapp-float {

                width: 55px; height: 55px; bottom: 20px; right: 20px;

            }

        }

    </style>

</head>

<body>

 

    <!-- Premium Header -->

    <header>

        <div class="brand-logo">

            <div class="logo-badge">SSI</div>

            <div class="logo-text">

                SATYANARAYAN STEEL INDUSTRIES

                <span>Manufacturers of Screws</span>

            </div>

        </div>

        <nav>

            <a href="#products">Finishes</a>

            <a href="#sizes">Specifications</a>

            <a href="#packaging">Packaging</a>

            <a href="#contact">Contact Us</a>

        </nav>

    </header>

 

    <!-- Premium Hero -->

    <section class="hero">

        <div class="hero-content">

            <h1>Industrial Grade Precision Fasteners</h1>

            <p>Specialized manufacturers of Stainless Steel 204Cu Grade Self-Tapping Screws. Engineered with Phillips Flat Head Countersunk design for ultimate structural reliability.</p>

            <div class="badge-container">

                <div class="badge">Grade: 204Cu SS</div>

                <div class="badge">Drive: Phillips Flat Head</div>

                <div class="badge">Finishes: Bright & Black</div>

            </div>

            <a href="#contact" class="btn">Request Bulk Quote</a>

        </div>

    </section>

 

    <!-- Finishes -->

    <section id="products">

        <div class="section-header">

            <h2>Premium Finishes</h2>

            <p>Manufactured for durability across industrial, architectural, and commercial applications.</p>

        </div>

        <div class="finish-grid">

            <div class="finish-card bright">

                <h3>Bright Finish</h3>

                <p>Highly polished, reflective stainless steel providing excellent corrosion resistance, clean aesthetics, and smooth driving performance.</p>

            </div>

            <div class="finish-card black">

                <h3>Black Finish</h3>

                <p>Matte black coating engineered for discreet applications, architectural matching, electrical fittings, and specialized hardware.</p>

            </div>

        </div>

    </section>

 

    <!-- Specifications -->

    <section id="sizes">

        <div class="section-header">

            <h2>Technical Specifications</h2>

            <p>Complete size matrix for 204Cu Grade Self-Tapping Phillips Screws.</p>

        </div>

        <div class="spec-container">

            <div class="spec-meta">

                <div class="meta-item">

                    <strong>Fastener Type</strong>

                    <span>Self Tapping</span>

                </div>

                <div class="meta-item">

                    <strong>Material Grade</strong>

                    <span>204Cu Stainless Steel</span>

                </div>

                <div class="meta-item">

                    <strong>Head Profile</strong>

                    <span>Phillips Flat / CSK</span>

                </div>

            </div>

           

            <div class="size-grid">

                <!-- 4 Gauge -->

                <div class="gauge-block">

                    <div class="gauge-header">4 Gauge Series</div>

                    <div class="gauge-sizes">

                        <span class="size-pill">4 × 13</span>

                        <span class="size-pill">4 × 16</span>

                        <span class="size-pill">4 × 19</span>

                    </div>

                </div>

                <!-- 6 Gauge -->

                <div class="gauge-block">

                    <div class="gauge-header">6 Gauge Series</div>

                    <div class="gauge-sizes">

                        <span class="size-pill">6 × 13</span>

                        <span class="size-pill">6 × 16</span>

                        <span class="size-pill">6 × 19</span>

                        <span class="size-pill">6 × 25</span>

                    </div>

                </div>

                <!-- 8 Gauge -->

                <div class="gauge-block">

                    <div class="gauge-header">8 Gauge Series</div>

                    <div class="gauge-sizes">

                        <span class="size-pill">8 × 25</span>

                        <span class="size-pill">8 × 30</span>

                        <span class="size-pill">8 × 32</span>

                        <span class="size-pill">8 × 35</span>

                        <span class="size-pill">8 × 38</span>

                        <span class="size-pill">8 × 45</span>

                        <span class="size-pill">8 × 50</span>

                        <span class="size-pill">8 × 60</span>

                    </div>

                </div>

                <!-- 10 Gauge -->

                <div class="gauge-block">

                    <div class="gauge-header">10 Gauge Series</div>

                    <div class="gauge-sizes">

                        <span class="size-pill">10 × 25</span>

                        <span class="size-pill">10 × 32</span>

                        <span class="size-pill">10 × 35</span>

                        <span class="size-pill">10 × 38</span>

                        <span class="size-pill">10 × 45</span>

                        <span class="size-pill">10 × 50</span>

                        <span class="size-pill">10 × 60</span>

                    </div>

                </div>

            </div>

        </div>

    </section>

 

    <!-- Packaging Standard -->

    <section id="packaging">

        <div class="section-header">

            <h2>Logistics & Packaging</h2>

            <p>Secure distribution methods for local and nationwide transport.</p>

        </div>

        <div class="packaging-section">

            <div class="pack-card current">

                <span class="pack-badge active">Current Standard</span>

                <h3>50 Kg Industrial Bori Pack</h3>

                <p>Heavy-duty, weather-resistant woven sacks (bori) precisely weighed to 50kg. Optimized for wholesale distributors, massive construction sites, and factory-direct supply.</p>

            </div>

            <div class="pack-card upcoming">

                <span class="pack-badge soon">Coming Soon</span>

                <h3>Premium Retail Box Packing</h3>

                <p>Custom-branded inner cartons and retail-ready packaging designed specifically for hardware store shelves and direct-to-consumer unit sales.</p>

            </div>

        </div>

    </section>

 

    <!-- Contact & Factory Details -->

    <section id="contact">

        <div class="section-header">

            <h2>Direct Manufacturing Inquiry</h2>

            <p>Reach out to our Gujarat facility for latest pricing and bulk dispatch details.</p>

        </div>

        <div class="contact-box">

            <div class="contact-details">

                <p>

                    <label>Manufacturing Facility</label>

                    <span>Dharti Apollo Industrial Park, Plot No. C-100,<br>Kadi - Kalol Rd, Gandhinagar,<br>Chhatral, Gujarat</span>

                </p>

                <p>

                    <label>Sales & Support Line</label>

                    <span>+91 97734 67009<br>+91 97277 47800</span>

                </p>

                <p>

                    <label>Electronic Mail</label>

                    <span>info@snsteelind.co.in<br>satyanarayansteelind@gmail.com</span>

                </p>

            </div>

            <form onsubmit="handleForm(event)">

                <input type="text" placeholder="Your Full Name / Company Name" required>

                <input type="email" placeholder="Professional Email Address" required>

                <input type="tel" placeholder="Mobile / Landline Number" required>

                <textarea rows="5" placeholder="Specify your requirements: (e.g. 10x50 Bright Finish - 500 Kgs)" required></textarea>

                <button type="submit" class="btn">Submit Inquiry</button>

            </form>

        </div>

    </section>

 

    <footer>

        &copy; 2026 Satyanarayan Steel Industries. Built with Precision in Gujarat, India. All rights reserved.

    </footer>

 

    <!-- Floating WhatsApp Icon -->

    <!-- Using the first provided number: 9773467009 -->

    <a href="https://wa.me/919773467009?text=Hello,%20I%20visited%20your%20website%20and%20would%20like%20to%20inquire%20about%20your%20screws." class="whatsapp-float" target="_blank" rel="noopener noreferrer" aria-label="Chat on WhatsApp">

        <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">

            <path d="M12.031 21.09c-1.637 0-3.23-.437-4.63-1.267l-.33-.195-3.44.903.92-3.355-.213-.34A9.229 9.229 0 0 1 2.8 11.956c0-5.1 4.15-9.25 9.25-9.25 2.474 0 4.798.963 6.545 2.71 1.748 1.747 2.711 4.07 2.71 6.545 0 5.101-4.15 9.25-9.25 9.25z" fill="currentColor"/>

            <path d="M12.03 2.505c-5.213 0-9.458 4.246-9.458 9.458 0 1.666.436 3.292 1.265 4.724l-1.34 4.887 4.996-1.31a9.412 9.412 0 0 0 4.536 1.155h.004c5.213 0 9.458-4.247 9.458-9.458 0-2.525-1.026-4.9-2.812-6.685A9.39 9.39 0 0 0 12.03 2.505zm0 17.29a7.842 7.842 0 0 1-3.996-1.09l-.286-.17-2.968.778.79-2.894-.187-.298a7.828 7.828 0 0 1-1.196-4.17c0-4.327 3.52-7.848 7.848-7.848 2.097 0 4.068.818 5.55 2.3 1.481 1.482 2.298 3.454 2.298 5.551 0 4.328-3.52 7.85-7.848 7.85z" fill="#FFF"/>

            <path d="M17.284 14.886c-.288-.144-1.706-.843-1.97-.94-.263-.096-.455-.144-.647.144-.192.288-.744.94-.91 1.133-.168.192-.336.216-.624.072-.288-.144-1.217-.449-2.318-1.433-.855-.765-1.432-1.71-1.6-2.002-.168-.288-.018-.444.126-.588.13-.13.288-.336.432-.504.144-.168.192-.288.288-.48.096-.192.048-.36-.024-.504-.072-.144-.647-1.56-.886-2.136-.233-.563-.47-.487-.647-.496-.168-.008-.36-.008-.552-.008-.192 0-.504.072-.768.36-.264.288-1.008.985-1.008 2.4 0 1.417 1.032 2.785 1.176 2.977.144.192 2.033 3.104 4.923 4.351.688.297 1.226.474 1.645.607.69.197 1.317.169 1.81.103.551-.074 1.706-.697 1.946-1.37.24-.673.24-1.25.168-1.37-.072-.12-.264-.192-.552-.336z" fill="#FFF"/>

        </svg>

    </a>

 

    <script>

        function handleForm(e) {

            e.preventDefault();

            alert('Your inquiry has been submitted directly to the factory! Our team will contact you shortly.');

            e.target.reset();

        }

    </script>

</body>

</html>