/*******************************/
/********* GENERAL CSS *********/
/*******************************/
body{
  margin:0;
  padding:0;
  font-family:'Poppins', sans-serif;
  background:#ffffff;
  color:#0B1C2D;
}

a{
  text-decoration:none;
  transition:0.3s ease;
}

html,body{
  overflow-x:hidden;
}

/*******************************/
/******** TOP BAR **************/
/*******************************/
.top-bar{
  background:#122c76;
  color:#ffffff;
  font-size:13px;
  padding:8px 0;
}

.top-flex{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.top-left i{
  margin-right:6px;
}

.top-left .divider{
  margin:0 14px;
  opacity:0.4;
}

.top-right a{
  color:#ffffff;
  margin-left:18px;
  font-weight:500;
  font-size:13px;
}

.top-right a:hover{
  color:#2ECC71;
}

/*******************************/
/******** HEADER ***************/
/*******************************/
.premium-header{
  background:#ffffff;
  padding:5px 0;
  border-bottom:1px solid #e5e7eb;
}

.header-wrapper{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* LOGO */
.logo-box img{
  height:75px;
}

/* NAVIGATION */
.premium-nav{
  display:flex;
  align-items:center;
  gap:45px;
}

.premium-nav a{
    font-size: 16.5px;
    font-weight: 600;
  color:#1F2937;
  letter-spacing:0.4px;
  position:relative;
  padding-bottom:6px;
}

/* Elegant underline */
.premium-nav a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:0;
  width:0%;
  height:2px;
  background:#2ECC71;
  transition:0.3s ease;
}

.premium-nav a:hover{
  color:#1F3C88;
}

.premium-nav a:hover::after{
  width:100%;
}

/*******************************/
/******** MOBILE MENU **********/
/*******************************/
.menu-toggle{
  display:none;
  flex-direction:column;
  cursor:pointer;
}

.menu-toggle span{
  width:26px;
  height:3px;
  background:#1F3C88;
  margin:4px 0;
}

/*******************************/
/*********** HERO **************/
/*******************************/
.carousel{
  width:100%;
  height:90vh;
  min-height:500px;
  overflow:hidden;
}

.carousel-item{
  height:90vh;
  min-height:500px;
  position:relative;
}

.carousel-item img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.carousel-item::after{
  content:'';
  position:absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
  background:rgba(0,0,0,0.45);
}

.carousel-caption{
  bottom:50%;
  transform:translateY(50%);
  text-align:left;
}

.carousel-caption p{
  font-size:18px;
  font-weight:500;
  letter-spacing:1px;
  margin-bottom:15px;
  color:#ffffff;
}

.carousel-caption h1{
  font-size:56px;
  font-weight:700;
  max-width:700px;
  line-height:1.2;
  margin-bottom:25px;
  color:#ffffff;
}

.carousel-caption .btn{
  background:#1F3C88;
  padding:14px 32px;
  font-weight:600;
  border-radius:6px;
  font-size:15px;
  color:#ffffff;
  border:none;
  transition:0.3s ease;
}

.carousel-caption .btn:hover{
  background:#2ECC71;
}

/*******************************/
/******** ABOUT SECTION ********/
/*******************************/
.about-hostel{
  padding:50px 0;
  background:#F4F7FC;
}

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.about-img img{
  width:100%;
  border-radius:14px;
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.about-tag{
  display:inline-block;
  color:#2ECC71;
  font-weight:600;
  margin-bottom:12px;
  letter-spacing:1px;
  font-size:14px;
}

.about-content h2{
  font-size:36px;
  font-weight:700;
  color:#0B1C2D;
  margin-bottom:20px;
}

.about-content p{
  font-size:16px;
  color:#555;
  line-height:1.7;
  margin-bottom:15px;
}

.about-features{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px 20px;
  margin:20px 0 30px;
  font-weight:500;
  color:#0B1C2D;
}

.about-btn{
  display:inline-block;
  padding:12px 28px;
  background:#1F3C88;
  color:#ffffff;
  font-weight:600;
  border-radius:8px;
}

.about-btn:hover{
  background:#2ECC71;
}

/*******************************/
/******** RESPONSIVE ***********/
/*******************************/
@media(max-width:992px){

  .top-bar{
    display:none;
  }

  .premium-nav{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#ffffff;
    flex-direction:column;
    padding:30px;
    display:none;
    gap:25px;
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
  }

  .premium-nav.active{
    display:flex;
  }

  .menu-toggle{
    display:flex;
  }

  .carousel-caption h1{
    font-size:32px;
  }

  .carousel-caption p{
    font-size:16px;
  }

  .about-grid{
    grid-template-columns:1fr;
  }

  .about-content h2{
    font-size:28px;
  }
}
/*******************************/
/******** amenities **************/
/*******************************/
/*******************************/
/******** AMENITIES ************/
/*******************************/
.amenities-section{
  padding:50px 0;
  background:#F4F7FC;
}

.amenities-header span{
  color:#2ECC71;
  font-weight:600;
  font-size:14px;
  letter-spacing:1px;
}

.amenities-header h2{
  font-size:36px;
  font-weight:700;
  margin:10px 0;
  color:#0B1C2D;
}

.amenities-header p{
  color:#555;
  font-size:16px;
  margin-bottom:60px;
}

.amenities-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.amenity-box{
  background:#ffffff;
  padding:35px 20px;
  border-radius:12px;
  text-align:center;
  box-shadow:0 8px 25px rgba(0,0,0,0.05);
  transition:0.3s ease;
}

.amenity-box i{
  font-size:32px;
  color:#1F3C88;
  margin-bottom:15px;
}

.amenity-box h4{
  font-size:16px;
  font-weight:600;
  color:#0B1C2D;
}

.amenity-box:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 35px rgba(0,0,0,0.1);
}

.amenity-box:hover i{
  color:#2ECC71;
}

/* Responsive */
@media(max-width:992px){
  .amenities-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .amenities-header h2{
    font-size:28px;
  }
}

@media(max-width:576px){
  .amenities-grid{
    grid-template-columns:1fr;
  }
}
/*******************************/
/******** ROOM TYPES ***********/
/*******************************/
.room-types{
  padding:50px 0;
  background:#ffffff;
}

.section-header span{
  color:#2ECC71;
  font-weight:600;
  font-size:14px;
  letter-spacing:1px;
}

.section-header h2{
  font-size:36px;
  font-weight:700;
  margin:10px 0;
  color:#0B1C2D;
}

.section-header p{
  color:#555;
  font-size:16px;
  margin-bottom:60px;
}

.room-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

.room-card{
  background:#ffffff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
  transition:0.4s ease;
}

.room-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.room-card img{
  width:100%;
  height:240px;
  object-fit:cover;
}

.room-content{
  padding:25px;
}

.room-content h3{
  font-size:22px;
  font-weight:700;
  margin-bottom:10px;
  color:#1F3C88;
}

.price{
  font-size:20px;
  font-weight:700;
  color:#2ECC71;
  margin-bottom:15px;
}

.price span{
  font-size:14px;
  font-weight:400;
  color:#555;
}

.room-content ul{
  list-style:none;
  padding:0;
  margin-bottom:20px;
}

.room-content ul li{
  font-size:14px;
  margin-bottom:8px;
  color:#444;
}

.room-btn{
  display:inline-block;
  padding:10px 22px;
  background:#1F3C88;
  color:#ffffff;
  font-weight:600;
  border-radius:6px;
  font-size:14px;
  transition:0.3s;
}

.room-btn:hover{
  background:#2ECC71;
}

/* Responsive */
@media(max-width:992px){
  .room-grid{
    grid-template-columns:1fr;
  }

  .section-header h2{
    font-size:28px;
  }
}
/*******************************/
/******** WHY CHOOSE US ********/
/*******************************/
.why-choose{
  padding:50px 0;
  background:#ffffff;
}

.why-header span{
  color:#2ECC71;
  font-weight:600;
  font-size:14px;
  letter-spacing:1px;
}

.why-header h2{
  font-size:36px;
  font-weight:700;
  margin:10px 0;
  color:#0B1C2D;
}

.why-header p{
  color:#555;
  font-size:16px;
  margin-bottom:60px;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
}

.why-card{
  background:#F4F7FC;
  padding:35px 30px;
  border-radius:14px;
  text-align:center;
  transition:0.3s ease;
  border:1px solid #e5e7eb;
}

.why-icon{
  width:60px;
  height:60px;
  margin:0 auto 20px;
  background:#1F3C88;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:0.3s ease;
}

.why-icon i{
  color:#ffffff;
  font-size:22px;
}

.why-card h4{
  font-size:18px;
  font-weight:600;
  margin-bottom:10px;
  color:#0B1C2D;
}

.why-card p{
  font-size:14px;
  color:#555;
  line-height:1.6;
}

.why-card:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.why-card:hover .why-icon{
  background:#2ECC71;
}

/* Responsive */
@media(max-width:992px){
  .why-grid{
    grid-template-columns:1fr 1fr;
  }

  .why-header h2{
    font-size:28px;
  }
}

@media(max-width:576px){
  .why-grid{
    grid-template-columns:1fr;
  }
}
/*******************************/
/******** TESTIMONIAL **********/
/*******************************/
.testimonial-section{
  padding:50px 0;
  background:#F4F7FC;
}

.testimonial-header span{
  color:#2ECC71;
  font-weight:600;
  font-size:14px;
  letter-spacing:1px;
}

.testimonial-header h2{
  font-size:36px;
  font-weight:700;
  margin:10px 0;
  color:#0B1C2D;
}

.testimonial-header p{
  color:#555;
  font-size:16px;
  margin-bottom:60px;
}

.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
}

.testimonial-card{
  background:#ffffff;
  padding:40px 30px 30px;
  border-radius:14px;
  position:relative;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
  transition:0.3s ease;
}

.testimonial-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.quote-icon{
  font-size:40px;
  color:#1F3C88;
  margin-bottom:15px;
}

.testimonial-card p{
  font-size:15px;
  color:#555;
  line-height:1.7;
  margin-bottom:25px;
}

.client-info{
  display:flex;
  align-items:center;
  gap:12px;
}

.client-avatar{
  width:45px;
  height:45px;
  background:#1F3C88;
  color:#ffffff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
}

.client-info h4{
  font-size:16px;
  margin:0;
  color:#0B1C2D;
}

.client-info span{
  font-size:13px;
  color:#777;
}

/* Hover accent */
.testimonial-card:hover .quote-icon{
  color:#2ECC71;
}

.testimonial-card:hover .client-avatar{
  background:#2ECC71;
}

/* Responsive */
@media(max-width:992px){
  .testimonial-grid{
    grid-template-columns:1fr;
  }

  .testimonial-header h2{
    font-size:28px;
  }
}
/*******************************/
/************ FOOTER ***********/
/*******************************/
.main-footer{
  background:#0B1C2D;
  color:#ffffff;
  padding:80px 0 30px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:50px;
  margin-bottom:50px;
}

.footer-col h4{
  font-size:18px;
  margin-bottom:20px;
  position:relative;
}

.footer-col h4::after{
  content:'';
  width:40px;
  height:2px;
  background:#2ECC71;
  position:absolute;
  left:0;
  bottom:-8px;
}

.footer-col p{
  font-size:14px;
  line-height:1.7;
  color:#d1d5db;
}

.footer-col ul{
  list-style:none;
  padding:0;
}

.footer-col ul li{
  margin-bottom:10px;
  font-size:14px;
}

.footer-col ul li a{
  color:#d1d5db;
  transition:0.3s ease;
}

.footer-col ul li a:hover{
  color:#2ECC71;
  padding-left:5px;
}

.footer-contact li{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
}

.footer-contact i{
  color:#2ECC71;
}

.footer-social{
  margin-top:15px;
  display:flex;
  gap:12px;
}

.footer-social a{
  width:35px;
  height:35px;
  border-radius:50%;
  background:rgba(255,255,255,0.08);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#ffffff;
  transition:0.3s ease;
}

.footer-social a:hover{
  background:#2ECC71;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.1);
  padding-top:20px;
  text-align:center;
  font-size:14px;
  color:#9ca3af;
}

/* Responsive */
@media(max-width:992px){
  .footer-grid{
    grid-template-columns:1fr;
    gap:40px;
  }
}
/*=====================home hostel=============*/
/* ===== Premium PG Card ===== */

.pg-card{
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  transition:0.3s ease;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
  position:relative;
}

.pg-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 45px rgba(0,0,0,0.12);
}

.pg-img{
  position:relative;
  height:220px;
  overflow:hidden;
}

.pg-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.4s;
}

.pg-card:hover .pg-img img{
  transform:scale(1.05);
}

.pg-type{
  position:absolute;
  top:15px;
  left:15px;
  background:#4CAF50;
  color:#fff;
  padding:5px 12px;
  border-radius:20px;
  font-size:12px;
  font-weight:600;
}

.pg-exclusive{
  position:absolute;
  bottom:15px;
  left:15px;
  background:#E53935;
  color:#fff;
  padding:5px 12px;
  font-size:12px;
  font-weight:600;
  border-radius:5px;
}

.pg-content{
  padding:18px;
}

.pg-content h5{
  font-weight:600;
  font-size:18px;
  margin-bottom:8px;
}

.pg-address{
  font-size:13px;
  color:#777;
  min-height:40px;
}

.pg-distance{
  display:inline-block;
  background:#f1f3f6;
  padding:4px 10px;
  font-size:12px;
  border-radius:20px;
  margin:10px 0;
}

.pg-amenities{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  color:#888;
  margin-bottom:12px;
}

.pg-amenities span{
  color:#007bff;
  font-weight:500;
}

.pg-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-top:1px solid #eee;
  padding-top:12px;
}

.pg-price{
  font-weight:700;
  font-size:18px;
  color:#0b1c2d;
}

.pg-btn{
  background:#2ECC71;
  color:#fff;
  padding:6px 14px;
  border-radius:6px;
  font-size:13px;
  text-decoration:none;
}

.pg-btn:hover{
  background:#0b1c2d;
  color:#fff;
}

/*===========home filters pg section==========*/
.pg-list-section {
background: #f4f6f9;
}

.filter-box {
background: #fff;
padding: 25px;
border-radius: 16px;
box-shadow: 0 10px 30px rgba(0,0,0,0.06);
position: sticky;
top: 100px;
}

.pg-card {
background: #fff;
border-radius: 16px;
overflow: hidden;
box-shadow: 0 15px 40px rgba(0,0,0,0.06);
transition: 0.3s;
}

.pg-card:hover {
transform: translateY(-5px);
}

.pg-img {
position: relative;
height: 220px;
overflow: hidden;
}

.pg-img img {
width: 100%;
height: 100%;
object-fit: cover;
}

.pg-type {
position: absolute;
top: 15px;
left: 15px;
background: #28a745;
color: #fff;
padding: 5px 12px;
border-radius: 20px;
font-size: 13px;
}

.pg-exclusive {
position: absolute;
bottom: 15px;
left: 15px;
background: #dc3545;
color: #fff;
padding: 5px 12px;
border-radius: 20px;
font-size: 13px;
}

.pg-content {
padding: 20px;
}

.pg-price {
font-weight: bold;
color: #007bff;
}

.pg-btn {
background: #007bff;
color: #fff;
padding: 6px 14px;
border-radius: 6px;
text-decoration: none;
}

.pg-btn:hover {
background: #0056b3;
color: #fff;
}
.pg-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pg-img {
    height: 220px;
    overflow: hidden;
}

.pg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pg-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pg-address {
    min-height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/*=====================*/
/* MOBILE NAV FIX */

@media (max-width:768px){

.header-wrapper{
position:relative;
}

.premium-nav{
display:none;
flex-direction:column;
position:absolute;
top:100%;
left:0;
width:100%;
background:#ffffff;
padding:20px;
gap:20px;
z-index:9999;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.premium-nav a{
display:block;
padding:10px 0;
border-bottom:1px solid #eee;
}

.premium-nav.active{
display:flex;
}

.menu-toggle{
display:flex;
}

}
.premium-header{
position:relative;
z-index:9999;
}