
        .video-container {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

        .video-container iframe {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 120%;
            height: 120%;
            transform: translate(-50%, -50%);
            pointer-events: none;
            /* click disable */
        }
    

    .craftsmanship-section {
            background: #f8f8f8;
        }

        .custom-card {
            padding: 10px 20px;
        }

        .custom-card img {
            width: 100%;
            height: 320px;
            object-fit: cover;
        }

        .custom-card h6 {
            font-size: 22px;
            font-weight: 500;
            margin-bottom: 10px;
            font-family: 'Playfair Display', serif;
        }

        

        /* Vertical divider for desktop */
        /* @media (min-width: 992px) {
            .col-lg-4:not(:last-child) {
                border-right: 1px solid #ddd;
            }
        } */


    
       

       
      

        .project-card img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .project-title {
            font-size: 14px;
            margin-top: 10px;
            color: #333;
        }

        .btn-custom {
            border: 1px solid #d72a16;
            color: #d72a16;
            padding: 10px 25px;
            background: transparent;
            transition: 0.3s;
        }

        .btn-custom:hover {
            background-color:#d72a16;
            color: #fff;
        }
  
