/*.container {*/
/*         width:100%;*/
/*            max-width: 1200px;*/
/*            height: 560px;*/
/*            margin: 0 auto;*/
/*            display: flex;*/
/*            align-items: center;*/
/*            gap: 40px;*/
            
/*     background-position: center left;*/
/*     background-size: 65% auto;*/
/*     background-repeat: no-repeat;*/
/*            padding: 40px;*/
/*            border-radius: 10px;*/
/*            flex-wrap: wrap;*/
            /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
/*        }*/

   .container {
       width:100%;
            max-width: 1200px;
            height: 560px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 40px;
            /*background-image: url('https://graniteworldindia.in/wp-content/uploads/2025/02/sidekix-media-iQYdCr4EpE-unsplash-scaled-900x588-1.jpg');*/
     background-position: center left;
     background-size: 65% auto;
     background-repeat: no-repeat;
            padding: 40px;
            border-radius: 10px;
            flex-wrap: wrap;
            /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
        }

        .image-container {
            max-width: 65%;
            flex: 1;
        }

        .image-container img {
            width: 100%;
            height: auto;
            object-fit: cover;
           
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .content {
            max-width: 33%;
            flex: 1;
            position: relative;
            display: flex;
    flex-direction: column;
    align-items: flex-start;
        }

        .content h2 {
            font-family: "DM Sans", Sans-serif;
    font-size: 42px;
    font-weight: 600;
    color: #000000;
            font-size: 28px;
            text-transform: uppercase;
            position: relative;
            display: inline-block;
            background: rgb(255 255 255 / 84%);
            padding: 30px;
            box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
            margin-left: -119px;
        }

        .content p {
            font-size: 20px;
            color: #333;
            margin-top: 15px;
            line-height: 1.6;
            font-family: "DM Sans", Sans-serif;
        }

        .btn {
            display: inline-block;
            margin-top: 20px;
            padding: 12px 20px;
            background: black;
            color: white;
            text-decoration: none;
            font-size: 16px;
            border-radius: 5px;
            transition: background 0.3s ease;
        }

        .btn:hover {
            background: #333;
        }
        
        .buy-now-btn {
                background: #000;
                color: #fff;
                padding: 12px 20px;
                font-size: 18px;
                border: none;
                border-radius: 5px;
                cursor: pointer;
                margin-top: 20px;
                transition: background 0.3s ease;
            }
            .buy-now-btn:hover {
                background: #333;
            }
            .buy-form {
                display: none;
                margin-top: 20px;
                padding: 15px;
                border: 1px solid #ddd;
                border-radius: 5px;
                background: #f9f9f9;
            }
            .buy-form input {
                width: 100%;
                padding: 10px;
                margin: 5px 0;
                border: 1px solid #ccc;
                border-radius: 5px;
                font-size: 16px;
            }
            .submit-btn {
                width: 100%;
                padding: 10px;
                background: #28a745;
                color: #fff;
                font-size: 16px;
                border: none;
                border-radius: 5px;
                cursor: pointer;
                transition: background 0.3s ease;
            }
            .submit-btn:hover {
                background: #218838;
            }

        /* Responsive */
        @media (max-width: 768px) {
            .container {
            
     background-size: 100% auto;
     background-position: top center;
     height: 780px;
            /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
        }
            .image-container {
            max-width: 100%;
            
            }
            .content {
            max-width: 100%;
            
        }
            .container {
                flex-direction: column;
                text-align: center;
            }

            .content h2 {
                display: block;
                margin: 0 auto;
            }
        }