/* 🚀 Line 1: Self-hosted font definition for instant mobile rendering */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/roboto-v30-latin-regular.woff2') format('woff2');
}

/* 🚀 Line 9: Ensure your global font-family matches the name above */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;

}

.container {
    max-width: 1140px;
    margin: auto;
    padding: 0 40px;
    box-sizing: border-box;
}
.main{
    display: flex;
}
.main .left-side{
    width: 80%;
}
.main .right-side{
    width: 20%;
    height: 200vh;
    overflow: auto;
}
.navigation {
    padding: 20px;
    position: relative;
}
.navigation .row{
    display: flex;
    gap: 20px;
    align-items: center;
}
.navigation .logo img{
    width: 300px;
}
.navigation .menu{
    width: 100%;
    text-align: right;
}
.navigation .menu ul{
    display: inline-block;
    list-style: none;
    margin: 0;
    padding: 0;
}
.navigation .menu ul li{
    display: inline-block;
}
.navigation .menu ul li a{
    padding: 10px 12px;
    text-decoration: none;
    color: #000;
}
.navigation .menu ul li a:hover{
    color: #01684e;
}

/* ===== TOGGLE BUTTON ===== */
.menu-toggle{
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* ===== MOBILE MENU ===== */
.mobile-menu{
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: 0.4s ease;
    padding: 20px;
}
.mobile-menu.active{
    left: 0;
}

.mobile-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobile-header img{
    width: 200px;
}
.mobile-close{
    font-size: 26px;
    cursor: pointer;
}

.mobile-menu ul{
    list-style: none;
    padding: 40px 0 0;
    margin: 0;
}
.mobile-menu ul li{
    border-bottom: 1px solid #eee;
}
.mobile-menu ul li a{
    display: block;
    padding: 15px 5px;
    text-decoration: none;
    color: #000;
    font-size: 18px;
}
.mobile-menu ul li a:hover{
    color: #01684e;
}

/* ===== RESPONSIVE ===== */
@media(max-width: 991px){
    .navigation .menu{
        display: none;
    }
    .menu-toggle{
        display: block;
        margin-left: auto;
    }
    .navigation .logo img{
        width: 220px;
    }
}
.hero-section{
    background: url('../images/sr-image-5-scaled.webp');
    height: 80vh;
    background-size: cover;
}
.hero-section .booking-card{
    position: absolute;
    background: #fff;
    width: 350px;
    border-radius: 7px;
    margin-top: 60px;
    left: 40px;
}
.hero-section .booking-card .outdoor-header{
    position: absolute;
    background: #9d673c;
    padding: 8px 15px;
    color: #fff;
    border-radius: 7px 7px 0 0;
    top: -35px;
    left: 100px;
    border: 1px solid #fff;
}
.hero-section .booking-card .heading {
    padding: 10px 15px;
}
.hero-section .booking-card .heading h2{
    color: #9d673c;
    text-align: center;
    line-height: 1.6em;
    text-transform: uppercase;
    font-size: 30px;
}
.hero-section .booking-card .heading h3{
    color: #9d673c;
    text-align: center;
    text-transform: uppercase;
    font-size: 22px;
}
.hero-section .booking-card .details{
    text-align: center;
    background: #f2f2f2;
    padding: 10px 20px;
}
.hero-section .booking-card .details p{
    line-height: 1.6em;
}
.hero-section .booking-card .card-features{
    background: #9d673c;
    color: #fff;
    text-align: center;
    padding: 0 15px;
}
.hero-section .booking-card .card-features p{
    padding: 10px;
    border-bottom: 1px solid #9b9b9b;
}
.hero-section .booking-card .card-features p:last-child{
    border-bottom: none;
}
.hero-section .booking-card .text{
    padding: 10px 15px;
    text-align: center;
}
.hero-section .booking-card .text h3{
    color: #9d673c;
    text-transform: uppercase;
    font-size: 22px;
}
.hero-section .booking-card .text h4{
    color: #9d673c;
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 500;
}
.hero-section .booking-card .text h4 strong{
    font-size: 35px;
}
.hero-section .booking-card .text a{
    background: #0d2721;
    display: inline-block;
    color: #fff;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 7px;
    text-decoration: none;
    margin: 10px 0;
}
.hero-section .booking-card .text p{
    font-size: 14px;
}




.about-section{
    width: 100%;
    margin: 70px 0;
}
.about-section .row{
    display: flex;
    gap: 30px;
}
.about-section .explor-content{
    width: 60%;
}
.about-section .border-line{
    width: 15%;
    margin: 20px 0 20px;
    border: 2px solid #9d673c;
}
.about-section .explor-content h2{
    font-size: 30px;
    line-height: 1.5em;
    color: #9d673c;
}
.about-section .explor-content p{
    font-size: 17px;
    line-height: 1.5em;
    margin-top: 10px;
}
.about-section .icon-section .box-text{
    width: 100%;
    margin-top: 30px;
}
.about-section .icon-section .box-text .row{
    display: flex;
    gap: 0;
}
.about-section .icon-section .box-text .column{
    width: 30%;
    margin: 10px;
    padding: 15px;
    box-sizing: border-box;
    background: #f2f2f2;
    border-radius: 5px;
    text-align: center;
    border: 1px solid #dadada;
    box-shadow: 0 4px 14px 0 #00000033;
}
.about-section .column i{
    font-size: 30px;
}
.about-section .column p{
    font-size: 16px;
}

.about-section .icon-section .box-text .colum-item2{
    width: 30%;
    margin: 10px;
    padding: 15px;
    box-sizing: border-box;
    background: #f5f5f5;
    border-radius: 5px;
    text-align: center;
    border: 1px solid #dadada;
    box-shadow: #f1f1f1;
}
.about-section .icon-section .box-text .colum-item3{
    width: 30%;
    margin: 10px;
    padding: 15px;
    box-sizing: border-box;
    background: #f5f5f5;
    border-radius: 5px;
    text-align: center;
    border: 1px solid #dadada;
    box-shadow: #f1f1f1;
}
.about-section .image{
    width: 40%;
}
.about-section .image img{
    width: 100%;
    height: 100%;
    margin-left: 0;
    object-fit: cover;
    border-radius: 10px;
}
.area-section{
    width: 100%;
    margin: 70px 0;
    padding: 30px;
    box-sizing: border-box;
    background-image: url(../images/pricing-img.webp);
    background-size: cover;
    text-align: center;
}
.area-section h2{
    font-size: 30px;
    color: #fff;
    padding: 0 0 15px 0;
    line-height: 1.3em;
}
.area-section .border-line{
    width: 10%;
    margin: 0 auto;
    border: 2px solid #9d673c;
    text-align: center;
}
.area-section .box-btn .row{
    display: flex;
}
.box-btn .west-box{
    width: 33.33%;
    margin: 10px;
    margin-top: 30px;
    background: #fff;
    padding: 10px 10px 30px 10px;
    box-sizing: border-box;
    border-radius: 5px;
}
.box-btn .west-box h4{
    font-size: 25px;
    color: #9d673c;
    padding: 5px 0 20px;
    box-sizing: border-box;
}
.box-btn .west-box p{
    font-size: 16px;
    color: #0d2721;
    padding: 5px 0 30px;
    box-sizing: border-box;
}
.box-btn .west-box a{
    font-size: 12px;
    color: #fff;
    text-decoration: none;
    background: #0d2721;
    padding: 10px 15px;
    border-radius: 30px;
}

.layout-section{
    width: 100%;
    margin-top: 70px 0;
}
.layout-section .master-text h2{
    text-align: center;
    text-transform: uppercase;
    color: #9d673c;
    font-size: 30px;
    padding-bottom: 20px;
}
.layout-section .master-text p{
    text-align: center;
    font-size: 17px;
    line-height: 1.5em;
    padding-bottom: 15px;
}
.master-text {
    padding-bottom: 30px;
}
.master-text .border-line{
    width: 10%;
    margin: 0 auto;
    border: 2px solid #9d673c;
    text-align: center;
}
.imagess-item {
    width: 100%;
    height: 300px;
    padding: 130px 0;
    box-sizing: border-box;
    background-image: url(../images/layout-img.webp);
    background-size: cover;
    border: 1px solid #aaaaaa;
}
.btn-item a{
    display: flex;
    width: 250px;
    margin: 0 auto;
    padding: 12px 15px;
    text-decoration: none;
    background: #0d2721;
    color: #fff;
    box-sizing: border-box;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
}
.pyaar-imagess img{
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

.lifestyle{
    width: 100%;
    margin: 0;
    padding: 50px 0;
    text-align: center;
    background: rgba(252, 221, 195, 0.5);
}
.shivani-text h2{
    font-size: 30px;
    color: #9d673c;
    text-transform: uppercase;
    padding-bottom: 20px;
}
.shivani-text p{
    margin: 0;
    padding-bottom: 10px;
    font-size: 17px;
    line-height: 1.5em;
}
.lifestyle .border-line{
    width: 10%;
    margin: 0 auto;
    border: 2px solid #9d673c;
    text-align: center;
}

.temple-section{
    width: 100%;
    margin: 0;
    background: rgba(252, 221, 195, 0.5);
}
.temple-section .row{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 20px;
}
.temple-section .text-icon{
    width: 100%;
    padding: 20px 30px 10px 20px;
    box-sizing: border-box;
    border: 1px solid #dddddd;
    border-radius: 15px;
    background: #fff;
    text-align: center;
}
.temple-section .text-icon img{
    width: 100px;
}
.temple-section .text-icon p{
    font-size: 14px;
    margin: 10px 0;
    line-height: 1.5em;
}
.temple-section .now-btn {
    display: flex;
    padding: 25px 0;
}
.temple-section .now-btn a{
    display: flex;
    margin: 0 auto;
    text-decoration: none;
    background: #0d2721;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
}

.comfort-section{
    width: 100%;
    height: 500px;
    background-image: url(../images/location-bas-bkg.webp);
    background-size: cover;
}
.comfort-section .heading h2{
    margin: 0;
    padding: 40px 0 5px 0;
    font-size: 25px;
    color: #9d673c;
}
.comfort-section .border-line{
    width: 10%;
    margin: 0;
    padding: 0;
    border: 2px solid #9d673c;
    text-align: center;
}
.comfort-section .comfort-content{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 500px;
    margin-top: 40px;
}
.comfort-section .comfort-content ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.comfort-section .comfort-content ul li{
    line-height: 1.6em;
    margin-bottom: 10px;
}
.location {
    margin: 70px 0;
}
.location .heading h2{
    font-size: 30px;
    text-align: center;
    text-transform: uppercase;
    color: #9d673c;
    padding-bottom: 10px;
}
.location .border-line{
    width: 80px;
    margin: 0 auto;
    border: 2px solid #9d673c;
    text-align: center;
}
.location .map{
    margin-top: 30px;
    margin-bottom: 30px;
}
.location .map iframe{
    height: 300px;
    width: 100%;
}

/* Tabs Wrapper */
.tabs-wrapper{
    max-width:1100px;
    margin:auto;
}

/* Tabs */
.tabs{
    display:flex;
    gap:10px;
    margin-bottom:-1px;
    flex-wrap:wrap;
}

.tab{
    padding:12px 15px;
    border-radius:14px 14px 0 0;
    background:#f2f2f2;
    font-size: 14px;
    font-weight: 400;
    border:1px solid #ddd;
    cursor:pointer;
    font-weight:500;
    color:#333;
}

.tab.active{
    background:#9b6a3c;
    color:#fff;
    border-color:#9b6a3c;
}

/* Content Box */
.tab-content{
    background:#f9f2ea;
    border:1px solid #e2d6c9;
    border-radius:0 16px 16px 16px;
    padding:30px;
    display:none;
}

.tab-content.active{
    display:block;
}

/* List Grid */
.list-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px 60px;
}

.item{
    display:flex;
    align-items:flex-start;
    gap:10px;
    font-size:16px;
    color:#222;
}

/* Location Icon */
.item::before{
    content:"➤";
    font-size:18px;
    line-height:1.2;
}

/* Responsive */
@media(max-width:768px){
    .list-grid{
        grid-template-columns:1fr;
    }
    .tab{
        border-radius:12px;
    }
}
.gallery-section{
    margin: 70px 0;
}
.gallery-section .heading{
    text-align: center;
}
.gallery-section .heading h2{
    color: #9b6a3c;
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.gallery-section .heading p{
    max-width: 80%;
    margin: 0 auto;
    padding-bottom: 10px;
}
.gallery-section .border-line{
    width: 80px;
    margin: 0 auto;
    border: 2px solid #9d673c;
    text-align: center;
}

.carousel-wrapper{
    max-width:1140px;
    margin: 40px auto;
    position:relative;
    overflow:hidden;
}

.carousel-track{
    display:flex;
    gap:20px;
    transition:transform .5s ease;
    cursor:default; /* no hover cursor */
}

.carousel-track.dragging{
    transition:none;
}

.carousel-item{
    min-width:calc(25% - 15px);
    border-radius:16px;
    overflow:hidden;
    user-select:none;
}

.carousel-item img{
    width:100%;
    height:220px;
    object-fit:cover;
    pointer-events:none;
}

/* Arrow Buttons */
.carousel-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:46px;
    height:46px;
    background:#9b6a3c;
    color:#fff;
    border:none;
    border-radius:50%;
    cursor:pointer;
    font-size:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:10;
}

.carousel-btn.left{ left:10px; }
.carousel-btn.right{ right:10px; }

/* Responsive */
@media(max-width:992px){
    .carousel-item{ min-width:33.33%; }
}
@media(max-width:768px){
    .carousel-item{ min-width:50%; }
}
@media(max-width:480px){
    .carousel-item{ min-width:100%; }
}


.about-rudra{
    position:relative;
    background:url("https://images.unsplash.com/photo-1501183638710-841dd1904471") center/cover no-repeat;
    padding: 60px 20px;
    color:#fff;
}

.about-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.65);
}

.about-container{
    position:relative;
    max-width:1200px;
    margin:auto;
    text-align:center;
}

.about-title{
    font-size:34px;
    font-weight:700;
    letter-spacing:1px;
}

.title-line{
    width:70px;
    height:3px;
    background:#c89b63;
    margin:14px auto;
}

.about-subtitle{
    font-size:20px;
    margin-bottom:40px;
    font-weight:600;
}

/* Layout */
.about-grid{
    display:grid;
    grid-template-columns:300px 1fr;
    gap:30px;
    align-items:stretch;
}

/* Logo Card */
.logo-card{
    background:#fff;
    color:#000;
    border-radius:16px;
    padding:30px 20px;
    text-align:center;
}

.logo-card img{
    width:160px;
    margin-bottom:15px;
}

.logo-card h4{
    font-size:20px;
    margin-bottom:15px;
    letter-spacing:2px;
}

.visit-link{
    color:#9b6a3c;
    text-decoration:none;
    font-weight:600;
}

/* Stats */
.stats-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:25px;
}

.stat-card{
    background:#fff;
    color:#000;
    border-radius:14px;
    padding: 20px 20px;
    text-align:left;
    position:relative;
}

.stat-card::after{
    content:"🏆";
    position:absolute;
    right:20px;
    top:20px;
    font-size:34px;
    opacity:0.15;
}

.stat-number{
    font-size:36px;
    font-weight:700;
    color:#9b6a3c;
    display:block;
    margin-bottom:8px;
}

.stat-card p{
    font-size:16px;
    line-height:1.4;
}

/* Disclaimer */
.about-disclaimer{
    font-size:12px;
    opacity:0.8;
    margin-top:30px;
    max-width:1000px;
    margin-left:auto;
    margin-right:auto;
}

/* Responsive */
@media(max-width:992px){
    .about-grid{
        grid-template-columns:1fr;
    }
    .stats-grid{
        grid-template-columns:1fr;
    }
}
.footer-main{
    background:#fff;
    font-family:Arial, Helvetica, sans-serif;
    color:#000;
}

/* Layout */
.footer-container{
    max-width:1200px;
    margin:auto;
    padding: 40px 20px;
    display:grid;
    grid-template-columns:1.3fr 1fr 1fr;
    gap:40px;
}

/* Headings */
.footer-col h3{
    font-size:20px;
    color:#9b6a3c;
    font-weight:700;
}

.title-line{
    width:60px;
    height:3px;
    background:#d1a36d;
    margin:12px 0 20px;
}

/* LEFT */
.project-title{
    font-size:40px;
    letter-spacing:4px;
    font-weight:700;
}

.project-by{
    margin:8px 0 14px;
    font-size:14px;
}

.brand-logo img{
    max-width:220px;
    margin-bottom:25px;
}

.qr-block{
    display:flex;
    gap:15px;
    align-items:center;
}

.qr-block img{
    width: 230px;
}

.rera-info p{
    margin:4px 0;
    font-size:14px;
}

.rera-info span{
    font-size:13px;
    color:#444;
}

/* ADDRESS */
.address-col p{
    font-size:16px;
    line-height:1.6;
    margin-bottom:25px;
}

.direction-btn{
    display:inline-block;
    background:#0c2b22;
    color:#fff;
    padding:12px 26px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
}

/* CONTACT */
.contact-col p{
    font-size:16px;
    margin-bottom:12px;
}

.social-icons{
    margin-top:25px;
    display:flex;
    gap:14px;
}

.social-icons a{
    width:46px;
    height:46px;
    background:#0c2b22;
    color:#fff;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    text-decoration:none;
}

/* Bottom */
.footer-bottom{
    background:#000;
    color:#fff;
    text-align:center;
    padding:20px;
}

.footer-bottom span{
    color:#f1c40f;
}

.disclaimer{
    margin-top:10px;
    font-size:12px;
    line-height:1.6;
    opacity:0.9;
}

/* Responsive */
@media(max-width:992px){
    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }
    .qr-block{
        justify-content:center;
    }
    .title-line{
        margin-left:auto;
        margin-right:auto;
    }
    .social-icons{
        justify-content:center;
    }
}




/* Top Bar */
.schedule-form {
    position: fixed;
    height: 100vh;
    overflow: auto;
}
.schedule-form .top-bar {
    background: #0f2f27;
    color: #fff;
    text-align: center;
    padding: 12px;
    font-size: 18px;
    font-weight: 600;
}

/* Main Container */
.schedule-form .container {
    max-width: 420px;
    background: #fff;
    margin: 0 auto;
    padding: 24px 20px;
}

/* Heading */
.schedule-form .title {
    text-align: center;
    color: #c9a27c;
    font-weight: 700;
    letter-spacing: 1px;
}

.schedule-form .title::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #c9a27c;
    margin: 10px auto 20px;
}

/* Form */
.schedule-form .form-group {
    margin-bottom: 14px;
}

.schedule-form input, select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
}

.schedule-form input:focus, select:focus {
    border-color: #0f2f27;
}

/* intl-tel-input fix */
.schedule-form .iti {
    width: 100%;
}

/* Checkbox */
.schedule-form .checkbox {
    font-size: 12px;
    color: #555;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin: 12px 0;
}

.schedule-form .checkbox input {
    margin-top: 4px;
}

/* Button */
.schedule-form button {
    width: 100%;
    background: #0f2f27;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.schedule-form button:hover {
    background: #0b241e;
}

/* Image */
.schedule-form .image-box {
    margin-top: 20px;
}

.schedule-form .image-box img {
    width: 100%;
    border-radius: 10px;
}

/* Overlay */
    .popup-overlay {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: rgba(0,0,0,0.6);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 999;
    }

    /* Popup box */
    .popup {
        background: #fff;
        width: 800px;
        max-width: 95%;
        border-radius: 8px;
        display: flex;
        overflow: hidden;
        position: relative;
    }

    /* Close button */
    .close-btn {
        position: absolute;
        top: 12px;
        right: 15px;
        font-size: 22px;
        cursor: pointer;
        color: #555;
    }

    /* Left section */
    .popup-left {
        width: 40%;
        background: #f8f6f3;
        padding: 30px;
    }

    .popup-left h2 {
        color: #9c6b3f;
        font-size: 20px;
        margin-bottom: 20px;
    }

    .promise-btn {
        background: #9c6b3f;
        color: #fff;
        padding: 12px 20px;
        border-radius: 25px;
        text-align: center;
        font-weight: bold;
        margin-bottom: 30px;
        width: fit-content;
    }

    .feature {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        color: #333;
        font-size: 14px;
    }

    .feature span {
        margin-left: 10px;
        font-weight: 600;
    }

    /* Right section */
    .popup-right {
        width: 60%;
        padding: 30px;
    }

    .popup-right h3 {
        margin-top: 0;
        margin-bottom: 20px;
        font-size: 22px;
        color: #333;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group input,
    .form-group select {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 14px;
    }

    .checkbox {
        font-size: 12px;
        color: #555;
        display: flex;
        gap: 8px;
        margin-top: 10px;
    }

    .submit-btn {
        background: #0f3d2e;
        color: #fff;
        border: none;
        padding: 14px 30px;
        border-radius: 25px;
        font-size: 16px;
        cursor: pointer;
        margin-top: 20px;
    }

    .submit-btn:hover {
        background: #0c2f23;
    }

    /* Responsive */
    @media(max-width: 700px) {
        .popup {
            flex-direction: column;
        }
        .popup-left,
        .popup-right {
            width: 100%;
        }
    }
    .mobile-hero{
        display: none;
    }
    @media(max-width: 767px){
        .main{
            display: block;
        }
        .main .right-side{
            display: none;
        }
        .main .left-side{
            width: 100%;
        }
        .mobile-hero{
            display: block;
            background: url('../images/sr-image-5-scaled.webp');
            height: 280px;
            background-size: cover;
        }
        .hero-section{
            background: #f8f2ed;
            height: 100%;
            padding-bottom: 40px;
        }
        .hero-section .caption{
            display: flex;
            justify-content: center;
            padding: 30px;
        }
        .hero-section .booking-card{
            position: relative;
            margin-top: 60px;
            left: 0;
            border: 1px solid #000;
            width: 100%;
        }
        .about-section .row{
            display: block;
        }
        .about-section .explor-content{
            width: 100%;
        }
        .about-section .image{
            width: 100%;
        }
        .about-section .icon-section .box-text .row{
            display: block;
        }
        .about-section .icon-section .box-text .column{
            width: 100%;
            margin: 0;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        .about-section .column p{
            margin-top: 0;
        }
        .about-section .column i{
            margin-right: 10px;
        }
        .area-section .box-btn .row{
            display: block;
        }
        .box-btn .west-box{
            width: 100%;
            margin: 0;
            margin-top: 30px;
        }
        .container{
            padding: 20px;
        }
        .area-section{
            padding: 30px 0;
        }
        .comfort-section{
            background: url('../images/sr-location-big-mob.webp');
            background-position: left;
            background-size: cover;
            height: 700px;
            padding-bottom: 40px;
        }
        .comfort-section .comfort-content{
            display: block;
        }
        .tabs{
            flex-wrap: initial;
            overflow: auto;
        }
        .gallery-section{
            margin: 40px 0;
        }

        .temple-section .row{
            grid-template-columns: repeat(2, 1fr);
        }
        .promise-btn{
            display: none;
        }
        .feature{
            display: none;
        }
        .popup-left h2{
            margin-bottom: 0;
        }
        .popup-left{
            padding: 20px;
        }
        .about-section{
            margin: 50px 0;
        }
        .area-section{
            margin: 50px 0;
        }
    }
