@charset "utf-8";
/* CSS Document */
/* बेसिक रीसेट */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

:root {
    --primary-color: #211203;
    --orange-color: #e66b00;
    --white: #ffffff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


        .product-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* ===================================================
           मुख्य प्रॉडक्ट विभाग स्टाईल
           =================================================== */
        .product-page-wrapper {
            background-color: #fcfbfa;
            padding: 40px 0 60px 0;
        }

        .product-breadcrumb {
            font-size: 13px;
            color: #777777;
            margin-bottom: 30px;
        }

        .product-breadcrumb a {
            color: #555555;
            text-decoration: none;
        }

        .product-breadcrumb span {
            color: #e66b00;
            font-weight: 600;
        }

        .product-main-row {
            display: flex;
            gap: 50px;
            align-items: flex-start;
            margin-bottom: 60px;
        }

        /* डावा कॉलम (इमेज गॅलरी) */
        .product-image-col {
            flex: 1.1;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .main-product-img {
            background-color: #ffffff;
            border: 1px solid #f1ebd9;
            border-radius: 8px;
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
        }

        .main-product-img img {
            max-width: 100%;
            height: 380px;
            object-fit: contain;
        }

        .thumb-images-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }

        .thumb-images-grid img {
            width: 100%;
            height: 90px;
            object-fit: cover;
            border: 1px solid #e2dbca;
            border-radius: 6px;
            padding: 4px;
            background: #ffffff;
            cursor: pointer;
        }

        .thumb-images-grid .active-thumb {
            border-color: #e66b00;
            box-shadow: 0 2px 8px rgba(230, 107, 0, 0.1);
        }

        /* उजवा कॉलम (माहिती) */
        .product-details-col {
            flex: 1;
        }

        .product-category-tag {
            font-size: 11px;
            color: #e66b00;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            display: block;
            margin-bottom: 5px;
        }

        .product-title {
            font-size: 34px;
            font-weight: 800;
            color: #241911;
            margin: 0 0 10px 0;
        }

        .title-underline {
            width: 50px;
            height: 3px;
            background-color: #e66b00;
            margin-bottom: 20px;
        }

        .product-description {
            font-size: 14.5px;
            color: #555555;
            margin-bottom: 25px;
        }

        /* स्पेसिफिकेशन टेबल */
        .specs-table-container h3 {
            font-size: 16px;
            font-weight: 700;
            color: #241911;
            margin-bottom: 12px;
            text-transform: uppercase;
        }

        .specs-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 30px;
            font-size: 14px;
        }

        .specs-table td {
            padding: 12px 14px;
            border-bottom: 1px solid #f1ebd9;
            color: #444444;
        }

        .specs-table tr:nth-child(even) {
            background-color: rgba(241, 235, 217, 0.2);
        }

        .btn-product-wa {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: #25D366;
            color: #ffffff;
            text-decoration: none;
            padding: 14px 30px;
            font-size: 14px;
            font-weight: 700;
            border-radius: 6px;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
            transition: all 0.3s ease;
        }

        .btn-product-wa:hover {
            background-color: #1ebd58;
            transform: translateY(-2px);
        }

        /* ===================================================
           APPLICATIONS SECTION (नवीन जोडलेला भाग)
           =================================================== */
        .apps-section {
            background-color: #ffffff;
            padding: 60px 0;
            border-top: 1px solid #f1ebd9;
        }

        .apps-section h2 {
            text-align: center;
            font-size: 28px;
            font-weight: 800;
            color: #241911;
            margin-bottom: 10px;
        }

        .apps-sub {
            text-align: center;
            color: #666666;
            font-size: 14px;
            margin-bottom: 40px;
        }

        .apps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .app-card {
            background: #ffffff;
            border: 1px solid #f1ebd9;
            border-radius: 8px;
            padding: 25px;
            transition: all 0.3s ease;
        }

        .app-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(230, 107, 0, 0.05);
            border-color: #e66b00;
        }

        .app-icon {
            font-size: 24px;
            color: #e66b00;
            margin-bottom: 15px;
        }

        .app-card h3 {
            font-size: 16px;
            font-weight: 700;
            color: #241911;
            margin-bottom: 10px;
        }

        .app-card p {
            font-size: 13px;
            color: #666666;
            line-height: 1.5;
        }

        /* ===================================================
           रिस्पॉन्सिव्ह मीडिया क्वेरीज
           =================================================== */
        @media (max-width: 992px) {
            .product-main-row {
                flex-direction: column;
                gap: 40px;
            }
            .apps-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .main-product-img img {
                height: auto;
                max-height: 350px;
            }
        }

        @media (max-width: 768px) {
            .apps-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .specs-table td {
                display: block;
                padding: 6px 10px;
            }
            .specs-table tr {
                display: block;
                padding: 10px 0;
                border-bottom: 1px solid #f1ebd9;
            }
            .specs-table td:first-child {
                border-bottom: none;
                padding-bottom: 2px;
            }
            .btn-product-wa {
                width: 100%;
                justify-content: center;
            }
        }


/* ===================================================
           INDUSTRIES SECTION
           =================================================== */
        .industries-section {
            padding: 80px 0;
            background-color: #fcfbfa;
        }

        .section-header {
            margin-bottom: 50px;
        }

        .section-tag {
            font-size: 24px;
            font-weight: 800;
            color: #ffffff;
            background-color: #241911;
            padding: 5px 15px;
            display: inline-block;
            margin-bottom: 15px;
        }

        .section-title {
            font-size: 42px;
            font-weight: 800;
            color: #241911;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 15px;
        }

        .section-underline {
            width: 60px;
            height: 4px;
            background-color: #e66b00;
            margin-bottom: 20px;
        }

        .section-desc {
            font-size: 16px;
            color: #555555;
            max-width: 700px;
        }

        /* १२ उद्योगांची ग्रिड सिस्टीम */
        .industries-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-bottom: 80px;
        }

        .industry-card {
            background-color: #ffffff;
            border: 1px solid #e2dbca;
            border-radius: 12px;
            padding: 35px 20px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0,0,0,0.01);
        }

        .industry-card:hover {
            transform: translateY(-5px);
            border-color: #e66b00;
            box-shadow: 0 12px 24px rgba(230, 107, 0, 0.08);
        }

        .industry-icon {
            font-size: 45px;
            color: #241911;
            margin-bottom: 20px;
            transition: color 0.3s;
        }

        .industry-card:hover .industry-icon {
            color: #e66b00;
        }

        .industry-card h3 {
            font-size: 15px;
            font-weight: 700;
            color: #241911;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* ===================================================
           CORE VALUES / FEATURE BAR SECTION
           =================================================== */
        .features-bar {
            background-color: #241911; /* डार्क चॉकलेटी बॅकग्राउंड इमेजप्रमाणे */
            padding: 40px 20px;
            border-radius: 0px;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            text-align: center;
        }

        .feature-item1 {
            color: #ffffff;
            padding: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .feature-icon-wrapper {
            width: 55px;
            height: 55px;
            border: 2px solid #e66b00;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 15px;
            font-size: 20px;
            color: #e66b00;
            background-color: rgba(230, 107, 0, 0.05);
        }

        .feature-item1 h4 {
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
            color: #ffffff;
        }

        .feature-item1 p {
            font-size: 11px;
            color: #cccccc;
            line-height: 1.4;
            max-width: 180px;
        }

        /* ===================================================
           मोबाईल आणि टॅब्लेट रिस्पॉन्सिव्ह डिझाईन
           =================================================== */
        @media (max-width: 1024px) {
            .industries-grid {
                grid-template-columns: repeat(3, 1fr); /* टॅब्लेटवर ३ कॉलम */
            }
            .features-bar {
                grid-template-columns: repeat(3, 1fr);
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .industries-grid {
                grid-template-columns: repeat(2, 1fr); /* लहान स्क्रीनवर २ कॉलम */
            }
            .section-title {
                font-size: 32px;
            }
            .features-bar {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .industries-grid {
                grid-template-columns: 1fr; /* मोबाईलवर १ कॉलम */
                gap: 15px;
            }
            .features-bar {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

/* ===================================================
           CONTACT HERO HEADER
           =================================================== */
        .contact-hero {
            background-color: #241911; /* डार्क चॉकलेटी ब्रँड कलर */
            color: #ffffff;
            padding: 60px 0;
            text-align: center;
            border-bottom: 4px solid #e66b00;
        }

        .contact-hero h1 {
            font-size: 40px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .contact-hero p {
            font-size: 15px;
            color: #cccccc;
        }

        /* ===================================================
           MAIN CONTACT SECTION (Two Columns)
           =================================================== */
        .contact-wrapper {
            padding: 60px 0;
            display: flex;
            gap: 50px;
        }

        /* डावा कॉलम: संपर्क माहिती */
        .contact-info-col {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .info-heading h2 {
            font-size: 28px;
            font-weight: 800;
            color: #241911;
            margin-bottom: 10px;
        }

        .info-heading .underline {
            width: 50px;
            height: 3px;
            background-color: #e66b00;
        }

        .contact-card-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-item-card {
            background: #ffffff;
            border: 1px solid #e2dbca;
            border-radius: 8px;
            padding: 20px;
            display: flex;
            gap: 20px;
            align-items: flex-start;
            transition: all 0.3s ease;
        }

        .contact-item-card:hover {
            border-color: #e66b00;
            box-shadow: 0 5px 15px rgba(230, 107, 0, 0.05);
        }

        .card-icon {
            font-size: 22px;
            color: #e66b00;
            background: rgba(230, 107, 0, 0.08);
            width: 45px;
            height: 45px;
            border-radius: 6px;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;
        }

        .card-content h3 {
            font-size: 16px;
            font-weight: 700;
            color: #241911;
            margin-bottom: 5px;
        }

        .card-content p, .card-content a {
            font-size: 14px;
            color: #555555;
            text-decoration: none;
        }

        /* उजवा कॉलम: इन्क्वायरी फॉर्म */
        .contact-form-col {
            flex: 1.2;
            background: #ffffff;
            border: 1px solid #e2dbca;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.02);
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group-full {
            grid-column: span 2;
            margin-bottom: 20px;
        }

        .form-control {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-control label {
            font-size: 13px;
            font-weight: 600;
            color: #241911;
            text-transform: uppercase;
        }

        .form-control input, .form-control textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #e2dbca;
            border-radius: 6px;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            color: #333333;
            background-color: #faf9f6;
            transition: all 0.3s ease;
        }

        .form-control input:focus, .form-control textarea:focus {
            outline: none;
            border-color: #e66b00;
            background-color: #ffffff;
            box-shadow: 0 0 0 3px rgba(230, 107, 0, 0.1);
        }

        .btn-submit {
            width: 100%;
            background-color: #e66b00;
            color: #ffffff;
            border: none;
            padding: 14px;
            font-size: 15px;
            font-weight: 700;
            border-radius: 6px;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: background 0.3s ease;
        }

        .btn-submit:hover {
            background-color: #c75c00;
        }

        /* Quick WhatsApp Connect Box */
        .quick-wa-box {
            margin-top: 25px;
            text-align: center;
            border-top: 1px dashed #e2dbca;
            padding-top: 20px;
        }

        .quick-wa-box p {
            font-size: 13px;
            color: #666666;
            margin-bottom: 10px;
        }

        .btn-form-wa {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #25D366;
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
        }

        .btn-form-wa:hover {
            text-decoration: underline;
        }

        /* ===================================================
           GOOGLE MAP SECTION
           =================================================== */
        .map-section {
            width: 100%;
            height: 400px;
            background-color: #e5e3df;
            border-top: 1px solid #e2dbca;
        }

        .map-section iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* ===================================================
           रिस्पॉन्सिव्ह मीडिया क्वेरीज
           =================================================== */
        @media (max-width: 992px) {
            .contact-wrapper {
                flex-direction: column;
                gap: 40px;
            }
        }

        @media (max-width: 600px) {
            .form-grid {
                grid-template-columns: 1fr;
            }
            .form-group-full {
                grid-column: span 1;
            }
            .contact-form-col {
                padding: 25px 20px;
            }
            .contact-hero h1 {
                font-size: 30px;
            }
        }`1