
       :root{
            --primary: #0d2f52;
            --primary-dark: #082541;
            --accent: #ffd400;
            --white: #ffffff;
            --text: #1d2d44;
            --text-light: #5f6b7a;
            --border: #e5e7eb;
            --footer-border: rgba(255,255,255,0.15);

            --heading-font: "Poppins", sans-serif;
            --body-font: "Poppins", sans-serif;

            --container-width:1320px;

            --transition:all .3s ease;
        }

        body{
            margin:0;
            font-family:var(--body-font);
        }


       
       
       /* Yahin mera diya hua pura CSS paste karo */

        /*==================================================
Guest House Hero
No Conflict CSS
===================================================*/

.gh-hero-section{

    position:relative;
    overflow:hidden;
    background:var(--primary);
    padding:80px 0;
}

.gh-hero-overlay{

    position:absolute;
    /* inset:0; */

    background:
    linear-gradient(90deg,
    rgba(13,47,82,.97) 0%,
    rgba(13,47,82,.95) 45%,
    rgba(13,47,82,.15) 70%,
    rgba(13,47,82,0) 100%);
}

.gh-hero-container{

    max-width:var(--container-width);
    margin:auto;
    padding:0 20px;
    padding-top:80px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;

    position:relative;
    z-index:2;
}

.gh-hero-content{

    flex:0 0 48%;
    color:var(--white);
}

.gh-hero-subtitle{

    display:inline-block;
    margin-bottom:18px;

    font-family:var(--heading-font);
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    color:var(--accent);
    text-transform:uppercase;
}

.gh-hero-title{

    margin:0;

    font-family:var(--heading-font);
    font-size:40px;
    line-height:1.05;
    font-weight:800;
    color:var(--white);
}

.gh-hero-title span{

    /* display:block; */
    color:var(--accent);
}

.gh-hero-text{

    margin-top:30px;
    margin-bottom:40px;

    max-width:560px;

    font-family:var(--body-font);
    font-size:16px;
    line-height:1.8;
    color:rgba(255,255,255,.85);
}

.gh-hero-buttons{

    display:flex;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.gh-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:17px 34px;

    border-radius:8px;

    text-decoration:none;

    font-family:var(--heading-font);
    font-weight:600;

    transition:var(--transition);
}

.gh-btn-primary{

    background:var(--accent);
    color:var(--primary);
}

.gh-btn-primary:hover{

    background:#ffdf38;
    transform:translateY(-3px);
}

.gh-btn-outline{

    border:2px solid var(--accent);
    color:var(--accent);
}

.gh-btn-outline:hover{

    background:var(--accent);
    color:var(--primary);
}

.gh-hero-image{

    flex:0 0 50%;
}

.gh-hero-image img{

    width:100%;
    display:block;

    border-radius:18px;

    object-fit:cover;
}

/*==========================
Tablet
==========================*/

@media(max-width:991px){

.gh-hero-container{

    flex-direction:column;
    text-align:center;
}

.gh-hero-content{

    flex:100%;
}

.gh-hero-text{

    margin-left:auto;
    margin-right:auto;
}

.gh-hero-buttons{

    justify-content:center;
}

.gh-hero-image{

    width:100%;
}

.gh-hero-title{

    font-size:54px;
}

}

/*==========================
Mobile
==========================*/

@media(max-width:767px){

.gh-hero-section{

    padding:60px 0;
}

.gh-hero-title{

    font-size:38px;
}

.gh-hero-text{

    font-size:16px;
    line-height:1.7;
}

.gh-btn{

    width:100%;
}

.gh-hero-buttons{

    gap:15px;
}

}

/*==========================
Small Mobile
==========================*/

@media(max-width:480px){

.gh-hero-title{

    font-size:32px;
}

.gh-hero-subtitle{

    font-size:13px;
}

}

.gh-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
}

.gh-btn i{
    font-size:18px;
}

.gh-hero-section{
    position: relative;
    min-height: 700px;

    background-image:
        linear-gradient(
            90deg,
            rgba(13,47,82,.95) 0%,
            rgba(13,47,82,.92) 38%,
            rgba(13,47,82,.55) 58%,
            rgba(13,47,82,.15) 75%,
            rgba(13,47,82,0) 100%
        ),
        url("/image/Product-img/Guest-house\ 1.jpg"); /* apni image */

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

   
}

/*=========================================
WHY CHOOSE US
=========================================*/

.gh-why-section{
    background: var(--primary);
    padding:50px 0;
    overflow:hidden;
}

.gh-why-heading{
    text-align:center;
    margin-bottom:60px;
}

.gh-why-subtitle{
    display:block;
    font-family:var(--heading-font);
    font-size:16px;
    font-weight:700;
    letter-spacing:2px;
    color:var(--accent);
    text-transform:uppercase;
    margin-bottom:12px;
}

.gh-why-title{
    margin:0;
    font-family:var(--heading-font);
    font-size:40px;
    font-weight:700;
    color:var(--white);
}

.gh-why-line{
    display:block;
    width:55px;
    height:3px;
    background:var(--accent);
    margin:18px auto 0;
}

/*=========================
Items
=========================*/

.gh-why-item{

    position:relative;

    text-align:center;

    padding:0 35px;

    height:100%;
}

/* Vertical Border */

.gh-why-item::after{

    content:"";

    position:absolute;

    right:0;
    top:8px;

    width:1px;
    height:170px;

    background:rgba(255,255,255,.12);

}

.gh-why-last::after{
    display:none;
}

/*=========================
Icon
=========================*/

.gh-why-icon{

    width:70px;
    height:70px;

    margin:0 auto 22px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;
    align-items:center;
    justify-content:center;

    transition:var(--transition);

}

.gh-why-icon i{

    font-size:34px;
    color:var(--accent);

    transition:var(--transition);

}

/*=========================
Heading
=========================*/

.gh-why-item h4{

    margin-bottom:15px;

    color:var(--accent);

    font-family:var(--heading-font);

    font-size:24px;

    font-weight:600;

}

/*=========================
Paragraph
=========================*/

.gh-why-item p{

    margin:0;

    color:rgba(255,255,255,.90);

    font-family:var(--body-font);

    font-size:16px;

    line-height:1.8;

}

/*=========================
Hover
=========================*/

.gh-why-item:hover .gh-why-icon{

    background:var(--accent);

    transform:translateY(-8px);

}

.gh-why-item:hover .gh-why-icon i{

    color:var(--primary);

}

.gh-why-item:hover h4{

    color:var(--white);

}

/*=========================================
Responsive
=========================================*/

/*=========================
Laptop
=========================*/

@media (max-width:1199px){

    .gh-why-section{
        padding:70px 0;
    }

    .gh-why-title{
        font-size:42px;
    }

    .gh-why-item{
        padding:0 25px;
    }

    .gh-why-item h4{
        font-size:26px;
    }

    .gh-why-item p{
        font-size:18px;
        line-height:1.7;
    }

}

/*=========================
Tablet
=========================*/

@media (max-width:991px){

    .gh-why-section{
        padding:60px 0;
    }

    .gh-why-heading{
        margin-bottom:45px;
    }

    .gh-why-title{
        font-size:36px;
    }

    .gh-why-item{

        padding:35px 20px;

    }

    .gh-why-item::after{
        display:none;
    }

    .gh-why-item h4{
        font-size:24px;
    }

    .gh-why-item p{
        font-size:17px;
    }

}

/*=========================
Mobile
=========================*/

@media (max-width:767px){

    .gh-why-section{
        padding:55px 0;
    }

    .gh-why-subtitle{
        font-size:14px;
        letter-spacing:1px;
    }

    .gh-why-title{
        font-size:30px;
        line-height:1.3;
    }

    .gh-why-line{
        margin-top:15px;
    }

    .gh-why-item{
        padding:25px 15px;
    }

    .gh-why-icon{

        width:65px;
        height:65px;

        margin-bottom:20px;
    }

    .gh-why-icon i{
        font-size:30px;
    }

    .gh-why-item h4{
        font-size:22px;
        margin-bottom:12px;
    }

    .gh-why-item p{
        font-size:16px;
        line-height:1.7;
    }

}

/*=========================
Small Mobile
=========================*/

@media (max-width:575px){

    .gh-why-title{
        font-size:26px;
    }

    .gh-why-item{

        max-width:340px;
        margin:0 auto;

    }

}


.gh-why-item{
    transition:var(--transition);
}

.gh-why-item:hover{
    transform:translateY(-8px);
}


/*=========================================
Amenities Section
=========================================*/

.gh-am-section{

    padding:50px 0;
    background:#fff;
}

.gh-am-heading{

    text-align:center;
    margin-bottom:55px;

}

.gh-am-subtitle{

    display:block;

    font-family:var(--heading-font);

    font-size:16px;

    font-weight:700;

    color:var(--accent);

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:12px;

}

.gh-am-title{

    margin:0;

    font-family:var(--heading-font);

    font-size:40px;

    font-weight:700;

    color:var(--primary);

}

.gh-am-line{

    display:block;

    width:55px;

    height:3px;

    background:var(--accent);

    margin:18px auto 0;

}

/*==============================
Cards
==============================*/

.gh-am-card{

    background:#fff;

    border:1px solid #edf0f6;

    border-radius:10px;

    padding:35px 20px;

    text-align:center;

    height:100%;

    transition:var(--transition);

}

/*==============================
Icon
==============================*/

.gh-am-icon{

    margin-bottom:20px;

}

.gh-am-icon i{

    font-size:48px;

    color:var(--primary);

    transition:var(--transition);

}

/*==============================
Heading
==============================*/

.gh-am-card h5{

    margin:0;

    font-family:var(--heading-font);

    font-size:18px;

    font-weight:600;

    color:var(--primary);

    line-height:1.5;

}

/*==============================
Hover
==============================*/

.gh-am-card:hover{

    transform:translateY(-8px);

    border-color:var(--accent);

    box-shadow:0 18px 40px rgba(13,47,82,.10);

}

.gh-am-card:hover .gh-am-icon i{

    color:var(--accent);

}

.gh-am-card:hover h5{

    color:var(--accent);

}


/*=========================================
Responsive
=========================================*/

/*=========================
Large Devices
=========================*/

@media (max-width:1199px){

    .gh-am-section{
        padding:80px 0;
    }

    .gh-am-title{
        font-size:42px;
    }

    .gh-am-card{
        padding:30px 18px;
    }

    .gh-am-icon i{
        font-size:44px;
    }

    .gh-am-card h5{
        font-size:18px;
    }

}

/*=========================
Tablet
=========================*/

@media (max-width:991px){

    .gh-am-section{
        padding:70px 0;
    }

    .gh-am-heading{
        margin-bottom:45px;
    }

    .gh-am-title{
        font-size:36px;
    }

    .gh-am-card{
        padding:28px 15px;
    }

    .gh-am-icon i{
        font-size:40px;
    }

    .gh-am-card h5{
        font-size:17px;
    }

}

/*=========================
Mobile
=========================*/

@media (max-width:767px){

    .gh-am-section{
        padding:60px 0;
    }

    .gh-am-subtitle{
        font-size:14px;
        letter-spacing:1px;
    }

    .gh-am-title{
        font-size:30px;
        line-height:1.3;
    }

    .gh-am-line{
        margin-top:15px;
    }

    .gh-am-card{
        padding:25px 15px;
    }

    .gh-am-icon{
        margin-bottom:18px;
    }

    .gh-am-icon i{
        font-size:36px;
    }

    .gh-am-card h5{
        font-size:16px;
    }

}

/*=========================
Small Mobile
=========================*/

@media (max-width:575px){

    .gh-am-section{
        padding:50px 0;
    }

    .gh-am-title{
        font-size:26px;
    }

    .gh-am-card{
        max-width:280px;
        margin:0 auto;
    }

}

.gh-am-card{

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    min-height:170px;

    transition:var(--transition);

}

.gh-am-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.gh-am-card:hover .gh-am-icon{

    transform:scale(1.08);
}

.gh-am-icon{

    transition:var(--transition);

}


/*=========================================
            OUR ROOMS
=========================================*/

.gh-room-section{

    padding:50px 0;

    background:#fff;

}

.gh-room-heading{

    text-align:center;

    margin-bottom:60px;

}

.gh-room-subtitle{

    display:block;

    color:var(--accent);

    font-size:16px;

    font-family:var(--heading-font);

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:12px;

}

.gh-room-title{

    margin:0;

    color:var(--primary);

    font-size:40px;

    font-family:var(--heading-font);

    font-weight:700;

}

.gh-room-line{

    display:block;

    width:55px;

    height:3px;

    background:var(--accent);

    margin:18px auto 0;

}


/*=========================================
Cards
=========================================*/

.gh-room-card{

    background:#fff;

    border:1px solid #edf0f6;

    border-radius:12px;

    overflow:hidden;

    transition:var(--transition);

    height:100%;

}

.gh-room-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(13,47,82,.10);

}


/*=========================================
Image
=========================================*/

.gh-room-image{

    overflow:hidden;

}

.gh-room-image img{

    width:100%;

    height:220px;

    object-fit:cover;

    transition:var(--transition);

}

.gh-room-card:hover img{

    transform:scale(1.06);

}


/*=========================================
Content
=========================================*/

.gh-room-content{

    padding:22px;

}

.gh-room-content h4{

    margin-bottom:12px;

    color:var(--primary);

    font-size:20px;

    font-family:var(--heading-font);

    font-weight:600;

}

.gh-room-content p{

    margin-bottom:18px;

    color:var(--text-light);

    font-size:16px;

    line-height:1.8;

}


/*=========================================
Price
=========================================*/

.gh-room-price{

    display:flex;

    align-items:center;

    flex-wrap:wrap;

    gap:6px;

}

.gh-price{

    color:var(--accent);

    font-size:20px;

    font-weight:700;

    font-family:var(--heading-font);

}

.gh-night{

    color:var(--text);

    font-size:20px;

    font-weight:500;

}


/*=========================================
Button
=========================================*/

.gh-room-btn-wrap{

    text-align:center;

    margin-top:50px;

}

.gh-room-btn{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:15px 34px;

    border:2px solid var(--accent);

    border-radius:8px;

    color:var(--primary);

    text-decoration:none;

    font-family:var(--heading-font);

    font-size:16px;

    font-weight:600;

    transition:var(--transition);

}

.gh-room-btn i{

    font-size:20px;

}

.gh-room-btn:hover{

    background:var(--accent);

    color:var(--primary);

}

/*=========================================
        Responsive CSS
=========================================*/

/*========== Large Devices ==========*/

@media (max-width:1199px){

    .gh-room-section{
        padding:80px 0;
    }

    .gh-room-title{
        font-size:42px;
    }

    .gh-room-content{
        padding:20px;
    }

    .gh-room-content h4{
        font-size:22px;
    }

    .gh-room-content p{
        font-size:16px;
        line-height:1.7;
    }

    .gh-price{
        font-size:22px;
    }

}


/*========== Tablet ==========*/

@media (max-width:991px){

    .gh-room-section{
        padding:70px 0;
    }

    .gh-room-heading{
        margin-bottom:45px;
    }

    .gh-room-title{
        font-size:36px;
    }

    .gh-room-card{
        margin-bottom:10px;
    }

    .gh-room-image img{
        height:240px;
    }

    .gh-room-btn-wrap{
        margin-top:40px;
    }

}


/*========== Mobile ==========*/

@media (max-width:767px){

    .gh-room-section{
        padding:60px 0;
    }

    .gh-room-subtitle{

        font-size:14px;

        letter-spacing:1px;

    }

    .gh-room-title{

        font-size:30px;

        line-height:1.3;

    }

    .gh-room-line{

        margin-top:15px;

    }

    .gh-room-image img{

        height:220px;

    }

    .gh-room-content{

        padding:18px;

    }

    .gh-room-content h4{

        font-size:21px;

    }

    .gh-room-content p{

        font-size:15px;

    }

    .gh-price{

        font-size:21px;

    }

    .gh-night{

        font-size:18px;

    }

    .gh-room-btn{

        width:100%;

        justify-content:center;

        padding:16px;

    }

}


/*========== Small Mobile ==========*/

@media (max-width:575px){

    .gh-room-section{

        padding:50px 0;

    }

    .gh-room-title{

        font-size:26px;

    }

    .gh-room-card{

        max-width:360px;

        margin:auto;

    }

}

.expertise-section{
    background:#f7f9fc;
}

.section-title{
    max-width:750px;
    margin:auto;
}

.section-title .sub-title{
    display:inline-block;
    color:var(--primary);
    background:rgba(13,47,82,.08);
    padding:8px 18px;
    border-radius:40px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:15px;
    font-size:14px;
}

.section-title h2{
    font-family:var(--heading-font);
    font-size:42px;
    font-weight:700;
    color:var(--text);
    margin-bottom:18px;
}

.section-title p{
    color:var(--text-light);
    line-height:1.8;
    font-size:16px;
}

.expertise-card{
    background:var(--white);
    border-radius:18px;
    padding:35px 28px;
    text-align:center;
    border:1px solid var(--border);
    transition:var(--transition);
    height:100%;
    position:relative;
    overflow:hidden;
}

.expertise-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,var(--primary),var(--accent));
}

.expertise-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
    border-color:transparent;
}

.expertise-card .icon{
    width:78px;
    height:78px;
    border-radius:50%;
    margin:auto auto 22px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(13,47,82,.08);
    transition:var(--transition);
}

.expertise-card .icon i{
    font-size:34px;
    color:var(--primary);
    transition:var(--transition);
}

.expertise-card:hover .icon{
    background:var(--primary);
}

.expertise-card:hover .icon i{
    color:var(--accent);
    transform:rotateY(180deg);
}

.expertise-card h5{
    font-size:20px;
    font-weight:600;
    color:var(--text);
    line-height:1.6;
    margin:0;
}

@media(max-width:991px){

.section-title h2{
    font-size:34px;
}

}

@media(max-width:767px){

.section-title h2{
    font-size:28px;
}

.expertise-card{
    padding:30px 22px;
}

.expertise-card .icon{
    width:68px;
    height:68px;
}

.expertise-card .icon i{
    font-size:28px;
}

}


.expertise-area{
    background:#f5f8fc;
    position:relative;
    overflow:hidden;
}

.expertise-area::before{
    content:'';
    position:absolute;
    width:420px;
    height:420px;
    background:rgba(255,212,0,.08);
    border-radius:50%;
    top:-180px;
    right:-150px;
}

.section-heading{
    max-width:760px;
    margin:auto;
}

.section-heading span{
    display:inline-block;
    color:var(--accent);
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:15px;
    font-family:var(--heading-font);
    font-size: 16px;
}

.section-heading h2{
    font-size:40px;
    font-weight:700;
    color:var(--text);
    margin-bottom:20px;
    font-family:var(--heading-font);
}

.section-heading p{
    color:var(--text-light);
    line-height:1.8;
    font-size:16px;
}

.service-box{

    position:relative;
    overflow:hidden;

    background:#fff;
    border-radius:25px;
    padding:45px 35px;

    border:1px solid var(--border);

    transition:.45s;

    height:100%;
}

.service-box::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:0;
    height:100%;

    background:linear-gradient(160deg,var(--primary),var(--primary-dark));

    transition:.5s;

    z-index:0;
}

.service-box:hover::before{

    width:100%;
}

.service-box>*{

    position:relative;

    z-index:2;
}

.number{

    position:absolute;

    top:20px;

    right:25px;

    font-size:65px;

    font-weight:700;

    color:rgba(13,47,82,.07);

    transition:.5s;
}

.service-box:hover .number{

    color:rgba(255,255,255,.08);
}

.icon{

    width:85px;

    height:85px;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(13,47,82,.08);

    margin-bottom:30px;

    transition:.4s;
}

.icon i{

    font-size:36px;

    color:var(--primary);

    transition:.4s;
}

.service-box h4{

    font-size:24px;

    font-weight:600;

    color:var(--text);

    margin-bottom:18px;

    transition:.4s;
}

.service-box p{

    color:var(--text-light);

    line-height:1.8;

    transition:.4s;
    /* font-size:16px; */
}

.service-box a{

    margin-top:30px;

    display:inline-flex;

    align-items:center;

    gap:10px;

    text-decoration:none;

    color:var(--primary);

    font-weight:600;

    transition:.4s;
}

.service-box a i{

    transition:.4s;
}

.service-box:hover{

    transform:translateY(-12px);

    box-shadow:0 35px 60px rgba(0,0,0,.12);
}

.service-box:hover h4,

.service-box:hover p,

.service-box:hover a{

    color:#fff;
}

.service-box:hover .icon{

    background:var(--accent);

    transform:rotate(-10deg);
}

.service-box:hover .icon i{

    color:var(--primary);

    transform:scale(1.2);
}

.service-box:hover a i{

    transform:translateX(8px);
}

@media(max-width:991px){

.section-heading h2{

font-size:36px;

}

}

@media(max-width:768px){

.section-heading h2{

font-size:30px;

}

.service-box{

padding:35px 25px;

}

}