
    .video-banner{
        position: relative;
        height: 100vh;
        overflow: hidden;
    }

    .banner-video{
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        transform: translate(-50%, -50%);
        object-fit: cover;
        z-index: 1;
    }

    .video-overlay{
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.45);
        z-index: 2;
    }

    .banner-content{
        position: relative;
        z-index: 3;
    }

    .banner-title{
        font-size: 90px;
        color: white;
        font-weight: 700;
    }

    @media(max-width:768px){
        .banner-title{
            font-size: 48px;
        }
    }
     
    /* Google Font */
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

    /* Section background */
    .concept-section{
        background:#faf7f2;
    }

    /* Card */

    .concept-box{
        display:flex;
        flex-direction:column;
        height:100%;
        padding:25px;
    }

    /* Hover */

    .concept-box:hover{
        transform:translateY(-10px);
        box-shadow:0 20px 40px rgba(0,0,0,0.12);
    }

    /* Title color */

    .text-orange{
        color:#b87a3a; /* premium tea gold */
    }

    /* Paragraph */

    .text-light-gray{
        color: #666 !important;
        font-size:15px;
        line-height:1.8;
    }

    /* Number */

    .fs-60{
        font-size:58px;
        font-weight:700;
        font-style:italic;
        color:#c48a47;
    }

    /* Image */

    .concept-box img{
        width:100%;
        height:220px;
        object-fit:cover;
        border-radius:10px;
    }

    .concept-box p{
        flex-grow:1;
    }

    /* Image hover */

    .concept-box:hover img{
        transform:scale(1.06);
        box-shadow:0 15px 35px rgba(0,0,0,0.15);
    }

    /* Title */

    .concept-box h5{
        font-size:17px;
        font-weight:600;
        letter-spacing:1px;
        color:#3e2f23;
    }

    /* Mobile */

    @media(max-width:768px){
        .fs-60{
            font-size:45px;
        }
    }
        .tea-philosophy-section{
        padding:100px 0;
        background:#faf7f2;
        font-family:'Poppins',sans-serif;
        }

        .tea-subtitle{
            color:#c57a2b;
            font-weight:600;
            letter-spacing:2px;
            text-transform:uppercase;
            font-size:14px;
        }

        .tea-title{
            font-size:38px;
            font-weight:700;
            margin-top:10px;
            color:#2b2b2b;
        }

        .tea-desc{
            color:#666;
            font-size:16px;
            margin-top:10px;
        }

        .tea-card{
            background:#fff;
            padding:40px 30px;
            border-radius:10px;
            text-align:center;
            box-shadow:0 10px 30px rgba(0,0,0,0.08);
            transition:all .35s ease;
        }

        .tea-card:hover{
            transform:translateY(-8px);
            box-shadow:0 20px 40px rgba(0,0,0,0.12);
        }

        .tea-icon{
            font-size:32px;
            color:#c57a2b;
            margin-bottom:15px;
        }

        .tea-card h3{
            font-size:20px;
            font-weight:600;
            margin-bottom:10px;
        }

        .tea-card p{
            font-size:15px;
            color:#666;
            line-height:1.7;
        }
    
    .gallery-section{
        padding:90px 0;
        background:#faf7f2;
        }

        /* Gallery card */

        .gallery-card{
            overflow:hidden;
            border-radius:10px;
            box-shadow:0 10px 25px rgba(0,0,0,0.08);
            transition:all .35s ease;
        }

        /* Image */

        .gallery-card img{
            width:100%;
            height:260px;
            object-fit:cover;
            transition:transform .4s ease;
        }

        /* Hover effect */

        .gallery-card:hover img{
            transform:scale(1.08);
        }

        .gallery-card:hover{
            box-shadow:0 18px 40px rgba(0,0,0,0.15);
        }

        /* Button */

        .gallery-btn{
            display:inline-block;
            padding:12px 28px;
            background:#c57a2b;
            color:#fff;
            font-weight:600;
            text-decoration:none;
            border-radius:30px;
            transition:.3s;
        }

        .gallery-btn:hover{
            background:#9c5d1e;
            color:#fff;
        }

        /* Responsive */

        @media(max-width:768px){

        .gallery-card img{
        height:220px;
        }

        }

        /* Banner Buttons */

    .banner-buttons{
        display:flex;
        justify-content:center;
        gap:15px;
    }

    /* Common Button */

    .banner-btn{
        padding:12px 28px;
        font-size:14px;
        font-weight:600;
        border-radius:30px;
        text-decoration:none;
        transition:all .3s ease;
    }

    /* Inquiry Button */

    .banner-btn-primary{
        background:#c57a2b;
        color:#fff;
    }

    .banner-btn-primary:hover{
        background:#9c5d1e;
        color:#fff;
    }

    /* Call Button */

    .banner-btn-outline{
        border:2px solid #fff;
        color:#fff;
    }

    .banner-btn-outline:hover{
        background:#fff;
        color:#000;
    }

    