/* @font-face {
    font-family: ShreeDev;
    src: url(./fonts/YatraOne-Regular.ttf) format('truetype');
} */
body {
    background: #fff5d0;
    /* font-family: "Yatra One"; */
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-align: justify;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
   font-weight: 700; 
}

a{
    text-decoration: none;
}

.table tr th, .table tr td {
    background: transparent;
    font-size: 1rem;
}
.lang-box{
    position: absolute; 
    top: 10px; 
    right: 10px; 
    z-index: 999; 
    display: flex; 
    align-items: center; 
    gap: 15px;
}
.language-select {
    padding: 6px 6px;
    font-size: 0.6rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #f8f9fa;
    color: #333;
    /* box-shadow: 0 2px 4px rgba(0,0,0,0.1); */
    cursor: pointer;
    transition: all 0.2s ease;
}

.language-select:hover {
    background-color: #e2e6ea;
}
.lang-link {
    color: #88181b;
    text-decoration: none;
}
.lang-link:hover {
    color: #ff0000; 
}
.subtitle{
    font-size: 22px;
    color:#a2238e;
} 
.title {
    background: linear-gradient(to bottom, #a91c1f, #ce1c23);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3.2rem;
}

.title-header {
    background: linear-gradient(to bottom, #981a1e, #ec1d23);
    color: white;
    padding: 10px 40px;
    text-align: center;
    border-radius: 50px;
}
p{
    color: #88181b;
    font-size: 1.3rem;
}


#page {
    /* height: 100vh;
    background-image: url(./images/bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    width: 100%;
    overflow: scroll; */
}

#section::before {
    content: "";
    width: 100%;
    height: 50%;
    background-image: url(../images/door.png);
    background-position: top left;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top:0;
}

#page::before {
    content: "";
    width: 100%;
    height: 50%;
    background-image: url(../images/right-corner.png);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top:0px;
}

ul.custom-list {
    list-style: none; 
    padding-left: 0;
}

ul.custom-list li {
    background: url('../images/flower.png') no-repeat left center;
    background-size: 20px 20px;
    padding-left: 30px; 
    margin-bottom: 10px;
    color: #2E3092;
    font-size: 1.2rem;
}
.number-btn{
    color: white;
    background: green;
    width: auto;
    text-align: center;
    font-size: 2rem;
    border-radius: 50px;
    letter-spacing: 0.2rem;
}
.gpay-btn{
    border: 2px solid green !important;
    padding: 5px;
    border-radius: 50px;
}
.buy-btn{
    width: 150px;
    background: green;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 1.2rem;
    border-radius: 50px;
}

.footer{
    background: linear-gradient(to right,#ffa35a, #cc5610);
}
.footer-bottom{
    background: linear-gradient(to bottom, #F8C529, #F8DE80);
}
.footer-title{
    font-size: 3rem;
    color: #FFF101;
    padding: 20px 0;
    letter-spacing: 0.1rem;
    text-shadow: black 4px 4px 6px;
}
ul.footer-custom-list {
    list-style: none; 
    padding-left: 0;
}

ul.footer-custom-list li {
    background: url('../images/flower-white.png') no-repeat left center;
    background-size: 20px 20px;
    padding-left: 30px; 
    margin-bottom: 10px;
    color: #FFF101;
    font-size: 1.2rem;
}


@media (max-width: 768px) {
    #section::before,
    #page::before {
        display: none;
        content: none; 
    }
    .title {
        font-size: 2.5rem;
    }
    p{
        font-size: 1rem;
    }
    .subtitle {
        font-size: 1.2rem;
    }
    ul.custom-list li {
        font-size: 1rem;
    }
    #section{
        padding-top:2px !important;
    }
    #logo{
        width: 53% !important;
    }
    .nav-link{
        font-size: 12px !important;
    }

    #topnav-logo{
        width: 120px !important;
    }
}

.ig-video-thumb {
    position: relative;
    display: inline-block;
    width1: 300px;
    height: 300px;
    cursor: pointer;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    border-color: #cc5610;
}

.ig-video-thumb img {
    width: 100%;
    display: block;
    border-radius: 8px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
}

.play-button::before {
    content: '\25B6';
    font-size: 30px;
    color: white;
    margin-left: 4px; 
}

.ig-video-thumb:hover .play-button {
    background-color: rgba(0, 0, 0, 0.8);
}



