
    /* ===============================
   HOSTEL SHOWCASE
================================ */

.hostel-showcase-section{
    /*padding:120px 0;*/
    background:
    linear-gradient(180deg,#f8fbff,#ffffff);
    overflow:hidden;
}

.section-title{
    max-width:800px;
    margin:auto;
    margin-bottom:70px;
}

.section-title span{
    display:inline-block;
    padding:8px 18px;
    background:#eef5ff;
    color:#0d6efd;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:15px;
}

.section-title h2{
    font-size:48px;
    font-weight:800;
    margin-bottom:20px;
}

.section-title p{
    color:#6c757d;
    line-height:1.8;
}

/* Layout */

.hostel-showcase{
    position:relative;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;
}

/* Cards */

.hostel-box{
    position:relative;
    overflow:hidden;
    border-radius:30px;
    min-height:600px;
    box-shadow:
    0 25px 60px rgba(0,0,0,.12);
}

.hostel-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1s;
}

.hostel-box::before{
    content:'';
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.2),
        transparent
    );
    z-index:1;
}

.hostel-content{
    position:absolute;
    left:40px;
    right:40px;
    bottom:40px;
    z-index:2;
    color:#fff;
}

.hostel-label{
    display:inline-block;
    padding:10px 18px;
    border-radius:50px;
    backdrop-filter:blur(15px);
    background:rgba(255,255,255,.18);
    margin-bottom:18px;
    font-weight:600;
}

.hostel-content h3{
    font-size:36px;
    font-weight:700;
    margin-bottom:15px;
}

.hostel-content p{
    font-size:16px;
    line-height:1.8;
    opacity:.9;
}

/* Hover */

.hostel-box:hover img{
    transform:scale(1.12);
}

/* Center Badge */

.hostel-center-badge{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    z-index:5;
}
.hostel-center-badge img{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: -35px;
    transform: translateX(-50%);
    z-index: 10;
    border: 4px solid #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

.badge-inner{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    color: #af1318;
    line-height: 1.3;
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
}

 
/* Mobile */

@media(max-width:991px){

    .hostel-showcase{
        grid-template-columns:1fr;
    }

    .hostel-box{
        min-height:450px;
    }

    .hostel-center-badge{
        display:block;
        top:50%;
        left:50%;
        transform:translate(-50%,-50%);
    }

    .badge-inner{
        width:100px;
        height:100px;
        font-size:14px;
    }

    .hostel-center-badge img{
        width:50px;
        height:50px;
        top:-25px;
    }

    .section-title h2{
        font-size:34px;
    }

    .hostel-content h3{
        font-size:28px;
    }
}
   /*HOSTEL SHOWCASE*/
   
    .room-footer{
        padding:0px 20px 20px;
        display:flex;
        justify-content:space-between;
        align-items:center;
    }
    
    .apply-btn-mini{
        padding:12px 22px;
        border-radius:50px;
    
        background:linear-gradient(
            90deg,
            #af1414,
            #ddab21
        );
    
        color:#fff;
        text-decoration:none;
        font-weight:600;
        font-size:14px;
    
        transition:.3s;
    }
    
    .apply-btn-mini:hover{
        color:#fff;
        transform:translateY(-2px);
    }
    hr{
        margin-top:0px;
    }
    
    .price{
        font-size: 18px;
        font-weight: 600;
    }
        
        .room-finder-section{
        padding:100px 0;
        background:#f7f7f7;
    }
    
    .finder-title{
        font-size:54px;
        font-weight:700;
        color:#111;
        margin-bottom:10px;
    }
    
    .finder-subtitle{
        font-size:60px;
        font-weight:800;
        background:linear-gradient(
        90deg,
        #af1414,
        #ddab21
        );
        -webkit-background-clip:text;
        -webkit-text-fill-color:transparent;
        margin-bottom:50px;
    }
    
    .filter-row{
        margin-bottom:40px;
    }
    
    .custom-select{
        border:none;
        border-bottom:1px solid #ddd;
        border-radius:0;
        background:transparent;
        padding:15px 10px;
        box-shadow:none !important;
    }
    
    .room-category-block{
        margin-bottom:70px;
    }
    
    .room-category-heading{
        font-size:33px;
        font-weight:700;
        margin-bottom:30px;
        position:relative;
        color:#0f172a;
    }
    
    .room-category-heading:after{
        content:'';
        width:80px;
        height:5px;
        background:linear-gradient(
        90deg,
        #af1414,
        #ddab21
        );
        display:block;
        margin-top:12px;
        border-radius:10px;
    }
    
    .hostel-room-card{
        background:#fff;
        border:1px solid #e5e5e5;
        border-radius:15px;
        overflow:hidden;
        transition:.4s;
        height:100%;
    }
    
    .hostel-room-card:hover{
        transform:translateY(-8px);
        box-shadow:0 15px 40px rgba(0,0,0,.08);
    }
    
    .room-image{
        width:100%;
        height:250px !important;
        object-fit:cover;
    }
    
    .room-body{
        padding:20px;
    }
    
    .room-body h5{
        font-weight:700;
        margin-bottom:15px;
        color:#111;
    }
    
    .room-info{
        display:flex;
        gap:15px;
        flex-wrap:wrap;
        font-size:14px;
    }
    
    .room-info span{
        color:#555;
        position:relative;
    }
    
    .room-info span:not(:last-child)::after{
        content:"";
        position:absolute;
        right:-8px;
        top:3px;
        width:1px;
        height:15px;
        background:#ccc;
    }
    
    @media(max-width:768px){
    
        .finder-title{
            font-size:38px;
        }
    
        .finder-subtitle{
            font-size:42px;
        }
    
        .room-image{
            height:200px;
        }
    
    }
        
        /*about hostel*/
        .hostel-about-section{
        padding:100px 0;
        background:#fff;
    }
    
    .section-tag{
        display:inline-block;
        background:#fff4d6;
        color:#af1414;
        padding:10px 22px;
        border-radius:50px;
        font-weight:600;
        margin-bottom:15px;
    }
    
    .hostel-title{
        font-size:48px;
        font-weight:800;
        color:#af1414;
        margin-bottom:25px;
        line-height:1.2;
    }
    
    .hostel-about-section p{
        color:#666;
        line-height:1.9;
        text-align: justify;
        margin-bottom:20px;
    }
    
    .hostel-image-wrapper{
        position:relative;
    }
    
    .hostel-main-image{
        width:100%;
        border-radius:25px;
        box-shadow:0 15px 40px rgba(0,0,0,.12);
    }
    
    .hostel-floating-card{
        position:absolute;
        bottom:25px;
        right:-25px;
        background:#af1414;
        color:#fff;
        padding:25px;
        border-radius:20px;
        width:220px;
        text-align:center;
    }
    
    .hostel-floating-card h3{
        color:#ddab21;
        font-size:42px;
        font-weight:800;
        margin-bottom:5px;
    }
    
    .feature-list{
        margin-top:30px;
    }
    
    .feature-item{
        display:flex;
        align-items:center;
        gap:15px;
        margin-bottom:18px;
    }
    
    .feature-item i{
        width:45px;
        height:45px;
        border-radius:50%;
        background:#af1414;
        color:#fff;
        display:flex;
        align-items:center;
        justify-content:center;
    }
    
    .feature-item span{
        font-weight:600;
    }
    
    .hostel-vision-wrapper{
        margin-top:100px;
        background:#fafafa;
        padding:60px;
        border-radius:30px;
    }
    
    .vision-card{
        background:#fff;
        padding:35px;
        border-radius:20px;
        text-align:center;
        height:100%;
        transition:.4s;
        box-shadow:0 10px 30px rgba(0,0,0,.08);
    }
    
    .vision-card:hover{
        transform:translateY(-10px);
    }
    
    .vision-icon{
        width:80px;
        height:80px;
        margin:auto;
        margin-bottom:25px;
        border-radius:50%;
        background:#af1414;
        display:flex;
        align-items:center;
        justify-content:center;
    }
    
    .vision-icon i{
        color:#fff;
        font-size:30px;
    }
    
    .vision-card h4{
        color:#af1414;
        font-weight:700;
        margin-bottom:15px;
    }
    
    .vision-card p{
        margin:0;
    }
    
    @media(max-width:991px){
    
        .hostel-title{
            font-size:36px;
        }
    
        .hostel-floating-card{
            position:relative;
            right:auto;
            bottom:auto;
            width:100%;
            margin-top:20px;
        }
    
        .hostel-vision-wrapper{
            padding:35px;
        }
    }
    
    @media(max-width:576px){
    
        .hostel-title{
            font-size:30px;
        }
    
        .hostel-vision-wrapper{
            padding:25px;
        }
    }

    /* ==========================
   HOSTEL DINING EXPERIENCE
========================== */

.hostel-dining-section{
    background:#f3eee4;
    padding:120px 0;
    position:relative;
    overflow:hidden;
}

.dining-gallery{
    position:relative;
    /*min-height:650px;*/
}

.main-image{
    width:500px;
    border-radius:25px;
    overflow:hidden;
}

.main-image img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:25px;
}

.small-image{
    position:absolute;
    top: -60px;
    right: 0;
    width:55%;
    background:#f3eee4;
    padding:10px;
    border-radius:20px;
    /*box-shadow:0 25px 50px rgba(0,0,0,.15);*/
}

.small-image img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:15px;
}

.dining-content{
    position:relative;
    z-index:2;
    margin-bottom: 70px;
}

.dining-tag{
    display:inline-block;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    color:#c8653d;
    margin-bottom:15px;
}

.dining-subtitle{
    font-size:32px;
    line-height:1.4;
    margin:25px 0;
    color:#1f2937;
    font-weight:600;
}

.dining-content p{
    font-size:17px;
    line-height:1.9;
    color:#666;
    margin-bottom:20px;
}

.dining-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    background:linear-gradient(
        90deg,
        #af1414,
        #ddab21
    );

    color:#fff;
    text-decoration:none;
    padding:16px 32px;
    border-radius:60px;
    font-weight:700;
    margin-top:15px;

    transition:.4s;
}

.dining-btn:hover{
    transform:translateY(-4px);
    color:#fff;
}

/* Floating Thali */

.floating-thali{
    position:absolute;
    width:250px;
    right:40%;
    bottom:70px;
    z-index:3;

    animation:floatPlate 4s ease-in-out infinite;
}

@keyframes floatPlate{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-15px);
    }
}

/* Responsive */

@media(max-width:991px){

    .dining-gallery{
        min-height:auto;
    }

    .main-image{
        width:100%;
    }

    .main-image img{
        height:420px;
    }

    .small-image{
        position:relative;
        left:auto;
        bottom:auto;
        width:70%;
        margin:-60px auto 0;
    }

    .floating-thali{
        display:none;
    }

    .dining-subtitle{
        font-size:26px;
    }
}

@media(max-width:576px){

    .hostel-dining-section{
        padding:80px 0;
    }

    .main-image img{
        height:320px;
    }

    .small-image{
        width:85%;
    }

    .dining-subtitle{
        font-size:22px;
    }
}

    .grievance-box{
        background:#fff;
        padding:40px;
        border-radius:20px;
        text-align:center;
        box-shadow:0 10px 35px rgba(0,0,0,0.08);
        /*border-top:5px solid #af1414;*/
    }
    
    .grievance-icon{
        width:80px;
        height:80px;
        margin:0 auto 20px;
        background:linear-gradient(135deg,#af1414,#ddab21);
        border-radius:50%;
        display:flex;
        align-items:center;
        justify-content:center;
    }
    
    .grievance-icon i{
        color:#fff;
        font-size:32px;
    }
    
    .grievance-box h4{
        font-size:28px;
        font-weight:700;
        margin-bottom:15px;
        color:#222;
    }
    
    .grievance-box p{
        color:#666;
        font-size:16px;
        line-height:1.8;
        margin-bottom:20px;
    }
    
    .grievance-mail{
        display:inline-block;
        padding:12px 28px;
        border-radius:50px;
        background:linear-gradient(135deg,#af1414,#ddab21);
        color:#fff;
        text-decoration:none;
        font-weight:600;
        transition:.3s;
    }
    
    .grievance-mail:hover{
        color:#fff;
        transform:translateY(-3px);
    }
    
    @media(max-width:768px){
    
        .grievance-box{
            padding:25px;
        }
    
        .grievance-box h4{
            font-size:22px;
        }
    
    }
    /*Hostel Contact Information*/
    
    .hostel-contact-section{
        padding:90px 0;
        background:#f8f8f8;
    }
    
    .contact-title{
        font-size:42px;
        font-weight:700;
        color:#222;
        margin-bottom:10px;
    }
    
    .contact-subtitle{
        color:#666;
        font-size:17px;
    }
    
    .contact-card{
        background:#fff;
        border-radius:18px;
        overflow:hidden;
        box-shadow:0 10px 35px rgba(0,0,0,.08);
        transition:.4s;
        height:100%;
    }
    
    .contact-card:hover{
        transform:translateY(-8px);
    }
    
    .card-header-custom{
        padding: 15px 20px;
        display:flex;
        align-items:center;
        gap:15px;
        color:#fff;
    }
    
    .card-header-custom i{
        font-size:28px;
    }
    
    .card-header-custom h4{
        margin:0;
        font-weight:700;
    }
    
    .girls-bg{
        background:linear-gradient(135deg,#af1414,#ddab21);
    }
    
    .boys-bg{
        background:linear-gradient(135deg,#ddab21,#af1414);
    }
    
    .contact-list{
        padding:25px;
    }
    
    .contact-person{
        display:flex;
        justify-content:space-between;
        align-items:center;
        padding:18px 0;
        border-bottom:1px solid #eee;
    }
    
    .contact-person:last-child{
        border-bottom:none;
    }
    
    .contact-person h6{
        margin:0;
        font-weight:700;
        color:#222;
    }
    
    .contact-person span{
        font-size:14px;
        color:#777;
    }
    
    .contact-person a{
        text-decoration:none;
        color:#af1414;
        font-weight:700;
        font-size:16px;
    }
    
    .contact-person a:hover{
        color:#ddab21;
    }
    
    @media(max-width:768px){
    
        .contact-title{
            font-size:32px;
        }
    
        .contact-person{
            flex-direction:column;
            align-items:flex-start;
            gap:8px;
        }
    
    }
    
    
    
    /* ======================================
       SAGE UNIVERSITY HOSTEL PAGE
       Theme: #AF1414 / #DDAB21
    ====================================== */
    
    
    
    
    
    /* ======================================
       COMMON
    ====================================== */
    
    .section-space{
        padding:100px 0;
    }
    
    .section-heading{
        font-size:48px;
        font-weight:800;
        color:var(--primary);
        margin-bottom:20px;
        line-height:1.2;
        color: #af1318;
    }
    
    p{
        color:var(--text);
        line-height:1.9;
        font-size:16px;
    }
    
    .rounded-custom{
        border-radius:24px;
    }
    
    /* ======================================
       HERO
    ====================================== */
    
    .hero-section {
        margin-top: 50px;
        min-height: 100vh;
        position: relative;
        background: linear-gradient(rgba(0, 0, 0, .55), rgba(0, 0, 0, .55)), url(https://sageuniversity.edu.in/assets/hostel/shubham-hospitality-hostel-interface.webp);
        background-size: cover;
        background-position: top;
        background-repeat: no-repeat;
        display: flex;
        align-items: center;
    }
    
    .hero-section .overlay{
        position:absolute;
        inset:0;
    }
    
    .hero-section .container{
        z-index:2;
    }
    
    /* Tablet */
    
    @media (max-width:991px){
    
        .hero-section{
            min-height:650px;
            background-attachment:scroll;
            background-position:center center;
        }
    
    }
    
    /* Mobile */
    @media(max-width:768px){
    
        .hero-section{
            min-height:auto;
            /*padding-top:56.25%; */
        }
    
        .hero-bg-img{
            height:100%;
            object-fit:contain;
            background:#000;
        }
    
        .hero-overlay{
            background:rgba(0,0,0,.45);
        }
    
    }
    .overlay{
        position:absolute;
        inset:0;
    }
    
    .hero-badge{
        display:inline-block;
        background:rgba(255,255,255,.15);
        backdrop-filter:blur(15px);
        padding:12px 24px;
        border-radius:50px;
        color:#fff;
        font-weight:500;
        margin-bottom:25px;
    }
    
    .hero-section h1{
        color:#fff;
        font-size:72px;
        font-weight:800;
        line-height:1.1;
        margin-bottom:25px;
    }
    .hero-section h6{
        color:#fff;
        font-size:24px;
        font-weight:800;
        line-height:1.1;
        margin-bottom:25px;
    }
    .hero-section h1 span{
        color:var(--secondary);
    }
    
    .hero-section p{
        color:#fff;
        max-width:650px;
        font-size:18px;
        margin-bottom:35px;
    }
    
    .btn-apply{
        display:inline-block;
        background:var(--secondary);
        color:#000;
        text-decoration:none;
        padding:15px 35px;
        border-radius:50px;
        font-weight:700;
        transition:.4s;
         background:#f5bf2c;
    }
    
    .btn-apply:hover{
        background:#f5bf2c;
        transform:translateY(-3px);
        color:#000;
    }
    
    /* ======================================
       INTRO IMAGE
    ====================================== */
    
    .rounded-custom{
        width:100%;
        border-radius:24px;
        box-shadow:0 20px 50px rgba(0,0,0,.12);
    }
    
    /* ======================================
       STATS
    ====================================== */
    
    .stats-section{
        background:#fafafa;
        padding:80px 0;
    }
    
    .stat-card{
        background:#fff;
        text-align:center;
        padding:40px 20px;
        border-radius:24px;
        box-shadow:0 10px 30px rgba(0,0,0,.08);
        transition:.4s;
        height:100%;
    }
    
    .stat-card:hover{
        transform:translateY(-10px);
    }
    
    .stat-card h3{
        font-size:45px;
        color:var(--primary);
        font-weight:800;
        margin-bottom:10px;
    }
    
    .stat-card p{
        margin-bottom:0;
        font-weight:500;
    }
    
    /* ======================================
       ROOM CARDS
    ====================================== */
    
    .room-card{
        position:relative;
        overflow:hidden;
        border-radius:24px;
    }
    
    .room-card img{
        width:100%;
        height:450px;
        object-fit:cover;
        transition:.6s;
    }
    
    .room-card:hover img{
        transform:scale(1.1);
    }
    
    .room-content{
        position:absolute;
        left:0;
        right:0;
        bottom:0;
        padding:30px;
        background:linear-gradient(
            transparent,
            rgba(0,0,0,.90)
        );
    }
    
    .room-content h4{
        color:#fff;
        font-weight:700;
        margin-bottom:0;
    }
    
    /* ======================================
       AMENITIES
    ====================================== */
    
    .amenities-section{
        background:#fafafa;
        padding:100px 0;
    }
    
    .amenity-card{
        background:#fff;
        text-align:center;
        padding:40px 20px;
        border-radius:20px;
        box-shadow:0 10px 30px rgba(0,0,0,.08);
        transition:.4s;
        height:100%;
    }
    
    .amenity-card:hover{
        transform:translateY(-10px);
        border-bottom:4px solid var(--secondary);
    }
    
    .amenity-card i{
        font-size:40px;
        color:var(--primary);
        margin-bottom:20px;
    }
    
    .amenity-card h5{
        margin-bottom:0;
        font-weight:600;
    }
    
    /* ======================================
       SECURITY
    ====================================== */
    
    .security-card{
        background:var(--primary);
        color:#000;
        text-align:center;
        padding:35px;
        border-radius:20px;
        font-size:18px;
        font-weight:600;
        transition:.4s;
    }
    
    .security-card:hover{
        background:var(--secondary);
        color:#000;
        transform:translateY(-8px);
    }
    
    /* ======================================
       GALLERY
    ====================================== */
    
    /* =========================
       PREMIUM GALLERY
    ========================= */
    
    .gallery-section{
        padding:120px 0;
        background:
        /*linear-gradient(180deg,#ffffff,#f7f9fc);*/
        overflow:hidden;
    }
    
    .gallery-header{
        max-width:750px;
        margin:auto;
        margin-bottom:60px;
    }
    
    .gallery-tag{
        display:inline-block;
        background:#eef4ff;
        color:#0d6efd;
        font-size:13px;
        font-weight:700;
        padding:8px 18px;
        border-radius:50px;
        letter-spacing:1px;
        margin-bottom:18px;
    }
    
    .gallery-header p{
        color:#6c757d;
        font-size:17px;
        line-height:1.8;
        margin-top:15px;
    }
    
    /* Grid */
    
    .gallery-grid{
        display:grid;
        grid-template-columns:repeat(4,1fr);
        grid-auto-rows:260px;
        gap:24px;
    }
    
    .gallery-item{
        position:relative;
        overflow:hidden;
        border-radius:24px;
        cursor:pointer;
        box-shadow:
        0 10px 30px rgba(0,0,0,.08);
    }
    
    .gallery-large{
        grid-column:span 2;
        grid-row:span 2;
    }
    
    .gallery-item img{
        width:100%;
        height:100%;
        object-fit:cover;
        transition:all .8s ease;
    }
    
    .gallery-item::before{
        content:"";
        position:absolute;
        inset:0;
        background:
        linear-gradient(
        to top,
        rgba(0,0,0,.7),
        rgba(0,0,0,.15),
        transparent);
        z-index:1;
    }
    
    .gallery-overlay{
        position:absolute;
        left:25px;
        right:25px;
        bottom:25px;
        z-index:2;
        color:#fff;
    }
    
    .gallery-overlay h4{
        font-size:22px;
        font-weight:700;
        margin:0;
    }
    
    .gallery-item:hover img{
        transform:scale(1.12);
    }
    
    .gallery-item:hover{
        transform:translateY(-8px);
        transition:.4s;
    }
    
    /* Floating Glow */
    
    .gallery-item::after{
        content:"";
        position:absolute;
        width:180px;
        height:180px;
        background:rgba(255,255,255,.15);
        border-radius:50%;
        top:-100px;
        right:-100px;
        opacity:0;
        transition:.5s;
        z-index:2;
    }
    
    .gallery-item:hover::after{
        opacity:1;
    }
    
    /* Tablet */
    
    @media(max-width:991px){
    
        .gallery-grid{
            grid-template-columns:repeat(2,1fr);
        }
    
        .gallery-large{
            grid-column:span 2;
            grid-row:span 1;
            height:350px;
        }
    
    }
    
    /* Mobile */
    
    @media(max-width:767px){
    
        .gallery-section{
            padding:80px 0;
        }
    
        .gallery-grid{
            grid-template-columns:1fr;
            gap:18px;
        }
    
        .gallery-large{
            grid-column:auto;
            height:280px;
        }
    
        .gallery-item{
            height:280px;
        }
    
        .gallery-overlay h4{
            font-size:18px;
        }
    
    }
    
    /* ======================================
       FAQ
    ====================================== */
    
    .accordion-item{
        border:none;
        margin-bottom:15px;
        border-radius:15px !important;
        overflow:hidden;
        box-shadow:0 10px 25px rgba(0,0,0,.06);
    }
    
    .accordion-button{
        padding:20px;
        font-weight:600;
        background:#fff;
    }
    
    .accordion-button:not(.collapsed){
        background:var(--primary);
        color:#fff;
    }
    
    .accordion-button:focus{
        box-shadow:none;
    }
    
    /* ======================================
       CTA
    ====================================== */
    
    .cta-section{
        background:
        linear-gradient(
        rgba(175,20,20,.92),
        rgba(175,20,20,.92));
        padding:100px 0;
        text-align:center;
    }
    
    .cta-section h2{
        color:#fff;
        font-size:52px;
        font-weight:800;
        margin-bottom:20px;
    }
    
    .cta-section p{
        color:#fff;
        max-width:700px;
        margin:auto;
        margin-bottom:35px;
    }
    
    /* ======================================
       IMAGE EFFECTS
    ====================================== */
    
    img{
        max-width:100%;
        display:block;
    }
    
    /* ======================================
       RESPONSIVE
    ====================================== */
    
    @media(max-width:1200px){
    
        .hero-section h1{
            font-size:60px;
        }
    
        .section-heading{
            font-size:42px;
        }
    
    }
    
    @media(max-width:991px){
    
        .hero-section{
            background-attachment:scroll;
            text-align:center;
        }
    
        .hero-section h1{
            font-size:50px;
        }
    
        .section-space{
            padding:80px 0;
        }
    
        .section-heading{
            font-size:36px;
        }
    
        .room-card img{
            height:350px;
        }
    
        .cta-section h2{
            font-size:40px;
        }
    }
    
    @media(max-width:768px){
    
        .hero-section h1{
            font-size:42px;
        }
    
        .hero-section p{
            font-size:16px;
        }
    
        .section-heading{
            font-size:30px;
        }
    
        .stat-card h3{
            font-size:35px;
        }
    
        .gallery-img{
            height:220px;
        }
    
        .cta-section h2{
            font-size:32px;
        }
    }
    
    @media(max-width:576px){
    
        .hero-section{
            min-height:85vh;
        }
    
        .hero-badge{
            font-size:14px;
        }
    
        .hero-section h1{
            font-size:34px;
        }
    
        .btn-apply{
            padding:12px 28px;
            font-size:14px;
        }
    
        .section-space{
            padding:60px 0;
        }
    
        .room-card img{
            height:280px;
        }
    
        .gallery-img{
            height:180px;
        }
    
        .cta-section{
            padding:70px 0;
        }
    }
