@import url(https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap);
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Dancing+Script:wght@400..700&family=Dosis:wght@200..800&family=Mona+Sans:ital,wght@0,200..900;1,200..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Slab:wght@100..900&display=swap');

body{
            font-family: Arial, sans-serif;
        }

        .hero{
            background:url('assets/images/banner.jpg') center center/cover no-repeat;
            height:100vh;
            position:relative;
        }
        .text-orange{
            color: #e25d2c;
        }

        .hero-overlay{
            position:absolute;
            top:0;
            left:0;
            width:100%;
            height:100%;
          
        }

        /* .hero-content{
            position:relative;
            z-index:2;
            color:#fff;
            height:100%;
            display:flex;
            align-items:center;
        } */

        .section-padding{
            padding:80px 0;
        }

        .room-card img{
            height:250px;
            object-fit:cover;
        }

        .gallery img{
            height:250px;
            width:100%;
            object-fit:cover;
        }

        footer{
            background:#111;
            color:#fff;
            padding:40px 0;
        }

        .navbar{
            background:#fff;
        }


.booking-panel{
    width:45%;
    background:#f5794b;
    display:flex;
    align-items:center;
    justify-content:center;
}



.booking-content h1{
    color:#fff;
    font-size:60px;
    margin-bottom:40px;
}

.booking-content h1 strong{
    font-weight:700;
}

.booking-content .form-control{
    height:55px;
    margin-bottom:20px;
    border:none;
    border-radius:0;
}

.btn-book{
    background:none;
    border:2px solid #fff;
    color:#fff;
    padding:15px 35px;
    font-weight:600;
    transition:.3s;
}

.btn-book:hover{
    background:#fff;
    color:#f5794b;
}



.hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.amenities-bar{
    background:#f5f5f5;
    padding:25px;
    display:flex;
    justify-content:space-around;
    flex-wrap:wrap;
    font-weight:600;
}

@media(max-width:991px){

.hero-section{
    flex-direction:column;
}

.booking-panel,
.hero-image{
    width:100%;
}

.booking-content{
    width:90%;
    padding:50px 0;
}

.booking-content h1{
    font-size:40px;
}

}
.custom-navbar{
    background:#ffffff;
    padding:20px 0;
    box-shadow:0 2px 20px rgba(0,0,0,.08);
    transition:.3s;
    z-index:999;
}

.logo-box h2{
    margin:0;
    font-size:32px;
    font-weight:700;
    color:#333;
    letter-spacing:1px;
}

.logo-box span{
    color:#f5794b;
}

.logo-box small{
    color:#999;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:11px;
}

.custom-navbar .nav-link{
    color:#333 !important;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    margin-left:25px;
    position:relative;
}

.custom-navbar .nav-link:hover{
    color:#f5794b !important;
}

.custom-navbar .nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:2px;
    background:#f5794b;
    transition:.3s;
}

.custom-navbar .nav-link:hover::after{
    width:100%;
}

.book-btn{
    background:#f5794b;
    color:#fff;
    text-decoration:none;
    padding:12px 28px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.book-btn:hover{
    background:#e25d2c;
    color:#fff;
}

.navbar-toggler{
    box-shadow:none !important;
}

@media(max-width:991px){

    .custom-navbar{
        padding:15px 0;
    }

    .logo-box h2{
        font-size:24px;
    }

    .custom-navbar .nav-link{
        margin-left:0;
        padding:12px 0;
    }

    .book-btn{
        display:inline-block;
        margin-top:15px;
    }

    .navbar-collapse{
        background:#fff;
        margin-top:15px;
        padding:20px;
        border-radius:12px;
        box-shadow:0 10px 30px rgba(0,0,0,.08);
    }
}
.amenities-section{
    background:#fff;
    padding:0;
    margin-top:-1px;
    position:relative;
    z-index:10;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.amenity-box{
    text-align:center;
    padding:35px 15px;
    border-right:1px solid #eee;
    transition:.35s;
    background:#fff;
    height:100%;
}

.amenity-box:last-child{
    border-right:none;
}

.amenity-box i{
    font-size:32px;
    color:#f5794b;
    margin-bottom:15px;
    display:block;
}

.amenity-box h6{
    margin:0;
    font-size:14px;
    font-weight:600;
    color:#444;
    text-transform:uppercase;
    letter-spacing:1px;
}

.amenity-box:hover{
    background:#f5794b;
    transform:translateY(-8px);
}

.amenity-box:hover i,
.amenity-box:hover h6{
    color:#fff;
}

@media(max-width:991px){

    .amenity-box{
        border-right:none;
        border-bottom:1px solid #eee;
    }

}
.why-us-section{
    padding:100px 0;
    background:#f8f9fa;
}

.section-title{
    max-width:700px;
    margin:auto;
    margin-bottom:70px;
}

.section-title span{
    color:#f5794b;
    font-weight:700;
    letter-spacing:3px;
    font-size:13px;
}

.section-title h2{
    margin-top:15px;
    font-size:48px;
    font-weight:700;
    color:#222;
}

.section-title p{
    color:#777;
    margin-top:20px;
}

.feature-card{
    background:#fff;
    padding:45px 35px;
    border-radius:20px;
    height:100%;
    transition:.4s;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
}

.feature-card:hover{
    transform:translateY(-10px);
}

.icon-box{
    width:75px;
    height:75px;
    background:#fff4ef;
    border-radius:18px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:30px;
}

.icon-box i{
    font-size:34px;
    color:#f5794b;
}

.feature-card h3{
    font-size:28px;
    margin-bottom:20px;
    color:#222;
}

.feature-card p{
    color:#666;
    line-height:1.8;
}

.feature-card a{
    display:inline-block;
    margin-top:20px;
    color:#f5794b;
    font-weight:600;
    text-decoration:none;
}
.about-section{
    padding:80px 0;
    background:#fff;
}

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:25px;
    object-fit:cover;
}

.experience-badge{
    position:absolute;
    right:-20px;
    bottom:30px;
    background:#f5794b;
    color:#fff;
    padding:25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.experience-badge h2{
    margin:0;
    font-size:42px;
    font-weight:700;
}

.section-tag{
    color:#f5794b;
    font-weight:700;
    letter-spacing:3px;
    font-size:13px;
}

.about-content h2{
    font-size:48px;
    font-weight:700;
    margin:20px 0;
    color:#222;
}

.about-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
}

.stat-box{
    text-align:center;
    padding:20px;
    border-radius:15px;
    background:#f8f9fa;
}

.stat-box h3{
    color:#f5794b;
    font-size:32px;
    font-weight:700;
    margin:0;
}

.stat-box span{
    color:#666;
}

.about-btn{
    display:inline-block;
    margin-top:35px;
    background:#f5794b;
    color:#fff;
    text-decoration:none;
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
}

.about-btn:hover{
    color:#fff;
}
.rooms-section{
    padding:80px 0;
}

.room-box{
    position:relative;
    overflow:hidden;
    border-radius:25px;
}

.room-box img{
    width:100%;
    height:500px;
    object-fit:cover;
    transition:.5s;
}

.room-overlay{
    position:absolute;
    bottom:0;
    width:100%;
    padding:30px;
    color:#fff;
    background:linear-gradient(
        transparent,
        rgba(0,0,0,.9)
    );
}

.room-box:hover img{
    transform:scale(1.08);
}

.room-overlay a{
    background:#f5794b;
    color:#fff;
    padding:12px 25px;
    border-radius:40px;
    text-decoration:none;
}
.gallery-section{
    background:#fff;
    padding:80px 0;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:20px;
    transition:.4s;
}

.gallery-grid img:hover{
    transform:translateY(-8px);
}
.contact-section{
    position:relative;
    padding:80px 0;
    background:url('../images/1.jpg')
    center center/cover no-repeat;
}

.contact-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.72);
}

.contact-content{
    color:#fff;
}

.contact-tag{
    color:#f5794b;
    letter-spacing:3px;
    font-weight:700;
    font-size:13px;
}

.contact-content h2{
    font-size:56px;
    font-weight:700;
    margin:20px 0;
    line-height:1.2;
}

.contact-content p{
    color:#ddd;
    line-height:1.9;
    margin-bottom:40px;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:25px;
}

.contact-item i{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#f5794b;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:22px;
}

.contact-item h6{
    color:#fff;
    margin-bottom:5px;
}

.contact-item span{
    color:#ccc;
}

.contact-form-wrapper{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.15);

    padding:50px;
    border-radius:30px;

    box-shadow:
    0 25px 60px rgba(0,0,0,.25);
}

.contact-form-wrapper h3{
    margin-bottom:30px;
    font-weight:700;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea{
    width:100%;
    border:none;
    background:#f8f8f8;
    padding:16px 20px;
    border-radius:12px;
    margin-bottom:20px;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus{
    outline:none;
    box-shadow:0 0 0 2px #f5794b;
}

.contact-form-wrapper button{
    background:#f5794b;
    color:#fff;
    border:none;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
}

.contact-form-wrapper button:hover{
    background:#e56535;
}
.facilities-section{
    padding:80px 0;
    background:#fafafa;
}

.section-header{
    max-width:750px;
    margin:auto;
    margin-bottom:70px;
}

.section-header span{
    color:#f5794b;
    font-weight:700;
    letter-spacing:3px;
    font-size:13px;
}

.section-header h2{
    font-size:48px;
    font-weight:700;
    color:#222;
    margin:15px 0;
}

.section-header p{
    color:#777;
    line-height:1.8;
}

.facility-card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    height:100%;
    transition:.4s;
    border:1px solid #eee;
}

.facility-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.facility-icon{
    width:80px;
    height:80px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    background:#fff4ef;
    display:flex;
    align-items:center;
    justify-content:center;
}

.facility-icon i{
    font-size:34px;
    color:#f5794b;
}

.facility-card h4{
    font-size:24px;
    margin-bottom:15px;
    color:#222;
}

.facility-card p{
    color:#666;
    line-height:1.8;
}


.experience-card{
    position:relative;
    overflow:hidden;
    height:320px;
}

.experience-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.experience-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(0,0,0,.15),
        rgba(0,0,0,.75)
    );

    display:flex;
    flex-direction:column;
    justify-content:flex-end;

    padding:35px;
}

.experience-overlay span{
    color:#f5794b;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:12px;
}

.experience-overlay h3{
    color:#fff;
    font-size:30px;
    font-weight:700;
    margin-top:10px;
    line-height:1.3;
}

.experience-card:hover img{
    transform:scale(1.1);
}

.experience-card:hover .experience-overlay{
    background:linear-gradient(
        rgba(245,121,75,.2),
        rgba(0,0,0,.85)
    );
}
.room-showcase{
    padding:80px 0;
    background:#fafafa;
}

.room-tabs{
    margin:50px 0;
    gap:15px;
}

.room-tabs .nav-link{
    border:none;
    padding:14px 35px;
    border-radius:50px;
    background:#fff;
    color:#555;
    font-weight:600;
    box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.room-tabs .nav-link.active{
    background:#f5794b;
    color:#fff;
}

.room-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    transition:.4s;
}

.room-card:hover{
    transform:translateY(-10px);
}

.room-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.room-info{
    padding:30px;
}

.room-info span{
    color:#f5794b;
    font-weight:700;
}

.room-info h3{
    margin:15px 0;
    font-size:28px;
}

.room-info p{
    color:#666;
    line-height:1.8;
}

.room-info a{
    display:inline-block;
    margin-top:15px;
    text-decoration:none;
    color:#f5794b;
    font-weight:600;
}
/* ==========================
   FOOTER CTA
========================== */

.footer-cta{
    background:linear-gradient(
        135deg,
        #f5794b,
        #ff9366
    );
    padding:30px 0;
    color:#fff;
}

.footer-cta h3{
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
}

.footer-cta p{
    margin:0;
    opacity:.9;
    font-size:17px;
}

.cta-btn{
    display:inline-block;
    background:#fff;
    color:#f5794b;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.cta-btn:hover{
    transform:translateY(-3px);
    color:#f5794b;
}


/* ==========================
   MAIN FOOTER
========================== */

.main-footer{

    background:#faf7f2;

    border-top:4px solid #f5794b;

    padding:90px 0 60px;

    color:#666;
}

.footer-about h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:20px;
    color:#222;
}

.footer-about span{
    color:#f5794b;
}

.footer-about p{
    line-height:1.9;
    color:#666;
}


/* ==========================
   HEADINGS
========================== */

.main-footer h5{
    color:#222;
    font-weight:700;
    margin-bottom:25px;
    position:relative;
}

.main-footer h5::after{
    content:'';
    width:40px;
    height:3px;
    background:#f5794b;
    position:absolute;
    bottom:-10px;
    left:0;
}


/* ==========================
   LINKS
========================== */

.main-footer ul{
    padding:0;
    margin:0;
    list-style:none;
}

.main-footer ul li{
    margin-bottom:14px;
}

.main-footer ul li a{
    text-decoration:none;
    color:#666;
    transition:.3s;
}

.main-footer ul li a:hover{
    color:#f5794b;
    padding-left:5px;
}


/* ==========================
   SOCIAL ICONS
========================== */

.footer-social{
    margin-top:30px;
}

.footer-social a{

    width:50px;
    height:50px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#fff;

    border:1px solid #e5e5e5;

    margin-right:10px;

    color:#555;

    text-decoration:none;

    transition:.3s;
}

.footer-social a:hover{

    background:#f5794b;

    border-color:#f5794b;

    color:#fff;

    transform:translateY(-5px);
}


/* ==========================
   CONTACT INFO
========================== */

.footer-contact li{

    display:flex;

    align-items:flex-start;

    gap:12px;

    margin-bottom:18px;
}

.footer-contact i{
    color:#f5794b;
    font-size:18px;
    margin-top:4px;
}


/* ==========================
   COPYRIGHT
========================== */

.copyright{

    background:#f2ede7;

    padding:20px 0;

    color:#777;

    font-size:14px;

    border-top:1px solid #e7ddd4;
}


/* ==========================
   MOBILE
========================== */

@media(max-width:991px){

    .footer-cta{
        text-align:center;
    }

    .footer-cta h3{
        font-size:32px;
    }

    .cta-btn{
        margin-top:20px;
    }

    .main-footer{
        text-align:center;
    }

    .main-footer h5{
        margin-top:35px;
    }

    .main-footer h5::after{
        left:50%;
        transform:translateX(-50%);
    }

    .footer-social{
        justify-content:center;
    }

}
.stay-experience{
    position:relative;
    padding:120px 0;
    background:url('../images/37.jpg')
    center center/cover no-repeat;
}

.experience-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

.stay-experience .container{
    position:relative;
    z-index:2;
}

.experience-content span{
    color:#f5794b;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
}

.experience-content h2{
    color:#fff;
    font-size:54px;
    font-weight:700;
    margin:20px 0;
    line-height:1.2;
}

.experience-content p{
    color:#ddd;
    line-height:1.9;
}

.feature-list{
    margin-top:40px;
}

.feature-item{
    display:flex;
    gap:20px;
    margin-bottom:30px;
}

.feature-item i{
    width:70px;
    height:70px;
    background:#f5794b;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:28px;
    flex-shrink:0;
}

.feature-item h5{
    color:#fff;
    margin-bottom:8px;
}

.feature-item p{
    color:#cfcfcf;
    margin:0;
}

.experience-image{
    position:relative;
}

.experience-image img{
    width:100%;
    border-radius:25px;
}

.floating-card{
    position:absolute;
    right:-20px;
    bottom:40px;

    background:#fff;

    padding:25px 35px;

    border-radius:20px;

    box-shadow:0 20px 50px rgba(0,0,0,.2);

    text-align:center;
}

.floating-card h3{
    color:#f5794b;
    font-size:38px;
    margin:0;
    font-weight:700;
}
.hero-image{
    width:55%;
    position:relative;
}

.hero-image .carousel,
.hero-image .carousel-inner,
.hero-image .carousel-item{
    height:100%;
}

.hero-slide-img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.carousel-indicators{
    bottom:30px;
}

.carousel-indicators button{
    width:18px !important;
    height:0px !important;
    border-radius:50%;
    margin:0 6px !important;
    background:#fff !important;
}

.carousel-indicators .active{
    background:#f5794b !important;
}

.carousel-control-prev,
.carousel-control-next{
    width:60px;
}
/* =====================================
   TABLET
===================================== */

@media (max-width: 991px){

    .section-header h2,
    .section-title h2,
    .about-content h2,
    .experience-content h2,
    .contact-content h2{
        font-size:38px;
    }

    .hero-section{
        flex-direction:column;
    }

    .booking-panel,
    .hero-image{
        width:100%;
    }

    .hero-image{
        height:500px;
    }

    .experience-badge{
        right:20px;
        bottom:20px;
    }

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .floating-card{
        right:10px;
        bottom:10px;
    }

    .contact-content{
        margin-bottom:50px;
    }

    .room-tabs{
        justify-content:center;
    }
}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 767px){

    section{
        overflow:hidden;
    }

    .hero-section{
        margin-top:80px !important;
    }

    .booking-content{
        width:90%;
        padding:40px 0;
    }

    .booking-content h1{
        font-size:42px;
        text-align:center;
    }

    .btn-book{
        width:100%;
    }

    .hero-image{
        height:350px;
    }

    .logo-box h2{
        font-size:22px;
    }

    .section-header{
        margin-bottom:40px;
    }

    .section-header h2,
    .section-title h2,
    .about-content h2,
    .experience-content h2,
    .contact-content h2{
        font-size:30px;
        line-height:1.3;
    }

    .about-section,
    .why-us-section,
    .facilities-section,
    .gallery-section,
    .room-showcase,
    .contact-section,
    .stay-experience{
        padding:60px 0;
    }

    .experience-badge{
        position:relative;
        right:auto;
        bottom:auto;
        margin-top:20px;
        display:inline-block;
    }

    .stat-box{
        padding:12px;
    }

    .stat-box h3{
        font-size:22px;
    }

    .feature-card{
        padding:30px 25px;
    }

    .feature-card h3{
        font-size:24px;
    }

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-grid img{
        height:250px;
    }

    .room-tabs{
        gap:10px;
    }

    .room-tabs .nav-link{
        width:100%;
        text-align:center;
    }

    .room-info h3{
        font-size:22px;
    }

    .facility-card{
        padding:30px 20px;
    }

    .facility-card h4{
        font-size:22px;
    }

    .contact-form-wrapper{
        padding:25px;
    }

    .contact-item{
        gap:12px;
    }

    .contact-item i{
        width:50px;
        height:50px;
        font-size:18px;
    }

    .experience-image{
        margin-top:40px;
    }

    .floating-card{
        position:relative;
        right:auto;
        bottom:auto;
        margin-top:20px;
        display:inline-block;
    }

    .footer-cta h3{
        font-size:26px;
    }

    .copyright{
        text-align:center;
    }
}


/* =====================================
   SMALL PHONES
===================================== */

@media (max-width: 575px){

    .booking-content h1{
        font-size:34px;
    }

    .section-header h2,
    .section-title h2,
    .about-content h2,
    .experience-content h2,
    .contact-content h2{
        font-size:26px;
    }

    .hero-image{
        height:280px;
    }

    .feature-item{
        gap:15px;
    }

    .feature-item i{
        width:55px;
        height:55px;
        font-size:22px;
    }

    .contact-form-wrapper{
        padding:20px;
    }

    .footer-about h2{
        font-size:30px;
    }

    .footer-social a{
        width:42px;
        height:42px;
    }
}
.site-logo{
    height:70px;
    width:auto;
    transition:.3s;
}

.site-logo:hover{
    transform:scale(1.03);
}
@media(max-width:767px){

    .site-logo{
        height:50px;
    }
    .hostel-name {

    font-size: 15px !important;
 

}
}
.custom-navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;

    transition:transform .35s ease-in-out;
}

.navbar-hide{
    transform:translateY(-100%);
}
.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo {
    height: 60px; /* adjust as needed */
    width: auto;
}

.hostel-name {
    margin-left: 12px;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    line-height: 1.2;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-item i {
    width: 70px;
    height: 70px;
    min-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f57c48;
    color: #fff;
    font-size: 30px;
}

.feature-item h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
}
.text-orange{
    color:#e25d2c !important
}
/* =================================
   NEW HERO SECTION
================================= */

/* =================================
   NEW HERO SECTION
================================= */

.hero-section{
    position:relative;
    height:100vh;
    min-height:100vh;
    margin-top:90px;
    overflow:hidden;
    display:block;
}

.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item{
    height:100%;
}

.hero-slide-img{
    width:100%;
    height:100vh;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
   
    z-index:1;
}

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:2;

    text-align:center;
    color:#fff;

    width:90%;
    max-width:900px;
}

.hero-content h1{
    font-size:70px;
    font-weight:700;
    margin-bottom:20px;
    line-height:1.15;
}

.hero-content p{
    font-size:18px;
    color:#eee;
    margin-bottom:35px;
    line-height:1.8;
}

.hero-tag{
    display:inline-block;
    color:#f5794b;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.hero-btn{
    background:#f5794b;
    border:none;
    color:#fff;
    padding:15px 40px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.hero-btn:hover{
    background:#e25d2c;
    color:#fff;
}

/* modal */

.modal-content{
    border:none;
    border-radius:25px;
}

.modal-header{
    border-bottom:none;
    padding:25px 30px;
}

.modal-body{
    padding:0 30px 30px;
}

.modal-body .form-control{
    height:55px;
    margin-bottom:15px;
}

.modal-body textarea.form-control{
    height:auto;
}

/* mobile */

@media(max-width:767px){

    .hero-section{
        height:85vh;
        margin-top:75px;
    }

    .hero-content h1{
        font-size:38px;
    }

    .hero-content p{
        font-size:15px;
    }

}
.floating-book-btn{
    position:fixed;
    right:-65px;
    top:50%;
    transform:translateY(-50%) rotate(-90deg);

    background:#f5794b;
    color:#fff;
    border:none;

    padding:15px 35px;

    font-weight:700;
    letter-spacing:1px;

    border-radius:12px 12px 0 0;

    z-index:9998;

    transition:.3s;
}

.floating-book-btn:hover{
    background:#e25d2c;
}

@media(max-width:767px){

    .floating-book-btn{
        right:-45px;
        padding:12px 25px;
        font-size:13px;
    }

}
.hero-carousel .carousel-item{
    position:relative;
}

.hero-carousel .carousel-item::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,.55) 0%,
        rgba(0,0,0,.25) 40%,
        rgba(0,0,0,0) 100%
    );
    z-index:1;
}
.banner-content{
    position:absolute;
    top:50%;
    left:8%;
    transform:translateY(-50%);

    max-width:680px;

    background:rgba(0,0,0,.45);

    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);

    padding:40px 50px;

    border-left:5px solid #f5794b;

    border-radius:0 20px 20px 0;

    z-index:5;
}

.banner-content h1{
    font-family:"Cormorant Garamond", serif;
    font-size:72px;
    font-weight:700;
    line-height:1;
    color:#fff;
    margin-bottom:15px;
    text-shadow:0 5px 25px rgba(0,0,0,.35);
}

.banner-content h4{
    color:#f5794b;
    font-size:28px;
    font-weight:600;
    margin-bottom:20px;
}

.banner-content p{
    color:#fff;
    font-size:20px;
    line-height:1.8;
    max-width:550px;
}
.banner-tag{
    display:inline-block;
    background:#f5794b;
    color:#fff;
    padding:10px 22px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:25px;
}

.banner-content h1{
    font-family:"Cormorant Garamond", serif;
    font-size:72px;
    font-weight:700;
    line-height:1;
    color:#fff;
    margin-bottom:15px;
    text-shadow:0 5px 25px rgba(0,0,0,.35);
}

.banner-content h4{
    color:#f5794b;
    font-size:28px;
    font-weight:600;
    margin-bottom:20px;
}

.banner-content p{
    color:#fff;
    font-size:20px;
    line-height:1.8;
    max-width:550px;
}
.facility-card p{
    margin-bottom:8px;
    color:#666;
}

.facility-card p:last-child{
    margin-bottom:0;
}

.facility-icon{
    width:90px;
    height:90px;
    background:#fff4ef;
}

.facility-icon i{
    font-size:38px;
    color:#f5794b;
}
.room-btn{
    width:50%;
    border:none;
    background:#f5794b;
    color:#fff;
    padding:14px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
    margin-top:15px;
}

.room-btn:hover{
    background:#e56535;
}
@media (max-width: 768px){

    .banner-content{
        left: 50%;
        top: auto;
        bottom: 30px;
        transform: translateX(-50%);

        width: 92%;
        max-width: 92%;

        padding: 20px;
    }

    .banner-content h1{
        font-size: 34px;
        line-height: 1.2;
    }

    .banner-content h4{
        font-size: 18px;
    }

    .banner-content p{
        font-size: 14px;
        line-height: 1.5;
    }
}

@media (max-width: 576px){

    .banner-content{
        bottom: 70px;
        padding: 15px;
    }

    .banner-content h1{
        font-size: 28px;
    }

    .banner-content h4{
        font-size: 16px;
    }

    .banner-content p{
        font-size: 13px;
    }
}
.page-banner{
    padding:180px 0 100px;
    background:#faf7f2;
}

.page-banner h1{
    font-size:60px;
    font-weight:700;
    color:#222;
}

.admission-section{
    padding:80px 0;
    background:#fafafa;
}

.admission-card{
    background:#fff;
    padding:50px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.form-section{
    margin-bottom:50px;
}

.form-section h3{
    color:#f5794b;
    font-weight:700;
    margin-bottom:25px;
    padding-bottom:10px;
    border-bottom:2px solid #fff4ef;
}

.admission-card label{
    font-weight:600;
    margin-bottom:8px;
}

.admission-card .form-control{
    height:55px;
    border-radius:12px;
    border:1px solid #ddd;
}

.admission-card textarea.form-control{
    height:auto;
}

.declaration-box{
    background:#fff4ef;
    padding:20px;
    border-radius:15px;
}

.submit-btn{
    background:#f5794b;
    color:#fff;
    border:none;
    padding:16px 40px;
    border-radius:50px;
    font-weight:700;
}

.submit-btn:hover{
    background:#e56535;
}

@media(max-width:768px){

    .page-banner{
        padding:130px 0 70px;
    }

    .page-banner h1{
        font-size:38px;
    }

    .admission-card{
        padding:25px;
    }
}