  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

  :root{
    --navy:#1E2A45;
    --navy-soft:#4A5670;
    --orange:#F0A030;
    --blue:#2F6FED;
    --blue-dark:#2558C6;
    --bg-gray:#F4F6FA;
    --white:#FFFFFF;
    --text-gray:#5B6478;
    --border:#E7EAF1;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  body{
    font-family:'Inter',sans-serif;
    color:var(--navy);
    background:var(--white);
  }
  h1,h2,h3,.display{font-family:'Poppins',sans-serif;}
  a{color:inherit; text-decoration:none;}

  /* NAV */
  nav{
    display:flex; align-items:center; justify-content:space-between;
    padding:18px 60px; border-bottom:1px solid var(--border);
    position:sticky; top:0; background:var(--white); z-index:50;
  }
  .logo{display:flex; align-items:center; gap:8px;}
  .logo-icon{position:relative; width:30px; height:26px;}
  .logo-icon svg{width:100%; height:100%;}
  .logo-text{
    font-family:'Poppins',sans-serif; font-weight:800; font-size:24px;
    letter-spacing:0.01em; color:var(--navy);
  }
  .nav-links{display:flex; gap:40px; font-size:15.5px; color:#374151; font-weight:500;}
  .nav-links a{transition:color 0.2s; position:relative;}
  .nav-links a:hover{color:var(--blue);}
  .nav-right{display:flex; align-items:center; gap:22px;}
  .nav-phone{
    display:flex; align-items:center; gap:8px; font-weight:700; font-size:14.5px; color:var(--navy);
  }
  .nav-phone svg{width:16px; height:16px; stroke:var(--orange);}
  .nav-call-btn{
    background:var(--navy); color:var(--white); padding:10px 20px; border-radius:100px;
    font-size:13.5px; font-weight:600; transition:background 0.2s;
  }
  .nav-call-btn:hover{background:var(--orange); color:var(--navy);}
  @media(max-width:860px){ .nav-links{display:none;} .nav-phone span{display:none;} }

  /* HERO */
  .hero{
    position:relative; min-height:600px; display:flex; align-items:center; justify-content:center;
    text-align:center; overflow:hidden;
  }
  .hero-bg{
    position:absolute; inset:0;
    background:
      linear-gradient(180deg, rgba(15,23,42,0.55), rgba(15,23,42,0.75)),
      url('https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?auto=format&fit=crop&w=1600&q=80') center/cover;
  }
  .hero-content{position:relative; z-index:2; max-width:820px; padding:0 24px;}
  .hero h1{
    color:var(--white); font-size:52px; font-weight:800; line-height:1.15; margin-bottom:18px;
    text-shadow:0 2px 20px rgba(0,0,0,0.25);
  }
  .hero p.sub{
    color:#E6EAF2; font-size:19px; margin-bottom:30px; font-weight:400;
  }
  .pill-btn{
    display:inline-block; background:var(--blue); color:var(--white);
    padding:14px 30px; border-radius:100px; font-weight:600; font-size:15px;
    box-shadow:0 8px 24px -6px rgba(47,111,237,0.55);
    transition:transform 0.15s ease, background 0.2s;
  }
  .pill-btn:hover{background:var(--blue-dark); transform:translateY(-2px);}
  .pill-btn-outline{
    display:inline-block; background:transparent; color:var(--orange);
    padding:13px 28px; border-radius:100px; font-weight:600; font-size:15px;
    border:1.5px solid var(--orange);
    transition:transform 0.15s ease, background 0.2s, color 0.2s;
  }
  .pill-btn-outline:hover{background:var(--orange); color:var(--navy); transform:translateY(-2px);}
  .hero-cta-row{display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-bottom:34px;}
  .hero-support{
    color:#D6DCE8; font-size:15px; max-width:560px; margin:0 auto 26px; line-height:1.6;
  }
  .hero-trust-row{
    display:flex; justify-content:center; gap:0; flex-wrap:wrap;
    max-width:700px; margin:0 auto;
  }
  .hero-trust-row span{
    color:#EDEFF4; font-size:13px; font-weight:600; padding:0 20px;
    border-right:1px solid rgba(255,255,255,0.25);
  }
  .rating-badge{
    display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.25); color:var(--white); font-size:13.5px; font-weight:600;
    padding:8px 16px; border-radius:100px; margin-bottom:22px; backdrop-filter:blur(4px);
  }
  .rating-badge .stars{color:var(--orange); letter-spacing:1px;}
  .hero-trust-row span:last-child{border-right:none;}
  @media(max-width:700px){
    .hero-trust-row span{border-right:none; padding:4px 14px;}
  }

  /* WHY CHOOSE US */
  .section{padding:80px 60px;}
  .section-bg{background:var(--bg-gray);}
  .section-title{
    text-align:center; font-size:32px; font-weight:700; color:var(--blue); margin-bottom:44px;
  }
  .cards-grid{
    max-width:1180px; margin:0 auto; display:grid;
    grid-template-columns:repeat(4,1fr); gap:24px;
  }
  @media(max-width:920px){ .cards-grid{grid-template-columns:repeat(2,1fr);} }
  @media(max-width:520px){ .cards-grid{grid-template-columns:1fr;} }
  .card{
    background:var(--white); border-radius:16px; padding:32px 26px;
    box-shadow:0 4px 20px -8px rgba(30,42,69,0.12);
    transition:transform 0.2s;
  }
  .card:hover{transform:translateY(-5px);}
  .card svg{width:34px; height:34px; stroke:var(--blue); margin-bottom:18px;}
  .card h3{font-size:18px; font-weight:700; margin-bottom:10px; color:var(--navy);}
  .card p{font-size:14px; color:var(--text-gray); line-height:1.55;}

  /* PRICING STRIP */
  .pricing-strip{
    background:var(--navy); color:var(--white); display:flex; align-items:center;
    justify-content:center; gap:30px; flex-wrap:wrap; padding:22px 40px; text-align:center;
  }
  .pricing-strip .price-tag{font-size:20px; font-weight:800; color:var(--orange);}
  .pricing-strip p{font-size:14.5px; color:#D6DCE8;}
  .pricing-strip a{
    background:var(--orange); color:var(--navy); padding:9px 20px; border-radius:100px;
    font-weight:700; font-size:13.5px; transition:transform 0.15s;
  }
  .pricing-strip a:hover{transform:translateY(-2px);}

  /* GALLERY */
  .gallery-grid{
    max-width:1180px; margin:0 auto; display:grid;
    grid-template-columns:repeat(3,1fr); gap:16px;
  }
  @media(max-width:820px){ .gallery-grid{grid-template-columns:repeat(2,1fr);} }
  .gallery-grid img{
    width:100%; height:220px; object-fit:cover; border-radius:14px;
    transition:transform 0.3s ease;
  }
  .gallery-item{overflow:hidden; border-radius:14px; position:relative;}
  .gallery-item:hover img{transform:scale(1.06);}
  .gallery-item .cap{
    position:absolute; bottom:0; left:0; right:0; padding:14px 16px;
    background:linear-gradient(0deg, rgba(15,23,42,0.75), transparent);
    color:var(--white); font-size:13px; font-weight:600;
  }
  .gallery-cta{text-align:center; margin-top:34px;}

  /* TESTIMONIALS */
  .testimonial-grid{
    max-width:1180px; margin:0 auto; display:grid;
    grid-template-columns:repeat(3,1fr); gap:24px;
  }
  @media(max-width:900px){ .testimonial-grid{grid-template-columns:1fr;} }
  .t-card{
    background:var(--white); border:1px solid var(--border); border-radius:16px;
    padding:28px 24px; box-shadow:0 4px 16px -8px rgba(30,42,69,0.1);
  }
  .t-stars{color:var(--orange); font-size:14px; margin-bottom:14px; letter-spacing:1px;}
  .t-quote{font-size:14px; color:var(--navy-soft); line-height:1.6; margin-bottom:18px;}
  .t-person{display:flex; align-items:center; gap:10px;}
  .t-avatar{
    width:38px; height:38px; border-radius:50%; background:var(--bg-gray);
    display:flex; align-items:center; justify-content:center; font-weight:700;
    color:var(--blue); font-size:13px;
  }
  .t-name{font-size:13.5px; font-weight:700; color:var(--navy);}
  .t-college{font-size:12px; color:var(--text-gray);}

  /* GROUP SECTION */
  .group-section{text-align:center; padding:90px 60px;}
  .group-title{font-size:28px; font-weight:700; color:var(--navy); margin-bottom:52px;}
  .group-grid{
    max-width:1080px; margin:0 auto; display:grid;
    grid-template-columns:repeat(3,1fr); gap:40px;
  }
  @media(max-width:820px){ .group-grid{grid-template-columns:1fr; max-width:360px;} }
  .property-card{
    display:flex; flex-direction:column; align-items:center; gap:14px;
    padding:20px;
  }
  .prop-logo{font-family:'Poppins',sans-serif; font-weight:800; font-size:26px; color:var(--navy); position:relative;}
  .prop-logo .roof{color:var(--orange);}
  .prop-sub{
    font-size:11px; letter-spacing:0.25em; color:var(--navy-soft); font-weight:600;
    border-top:1.5px solid var(--border); border-bottom:1.5px solid var(--border);
    padding:4px 14px; margin-top:2px;
  }
  .prop-label{font-weight:700; font-size:15px; color:var(--navy);}
  .prop-desc{font-size:13px; color:var(--text-gray); line-height:1.6; max-width:230px;}
  .prop-link{font-size:13px; color:var(--blue); font-weight:600; margin-top:4px;}

  /* HOSTELS CATEGORY */
  .hostel-grid{
    max-width:1180px; margin:0 auto; display:grid;
    grid-template-columns:repeat(3,1fr); gap:28px;
  }
  @media(max-width:920px){ .hostel-grid{grid-template-columns:1fr; max-width:480px;} }
  .hostel-card{
    background:var(--white); border-radius:18px; overflow:hidden;
    box-shadow:0 4px 20px -8px rgba(30,42,69,0.14);
    transition:transform 0.2s; scroll-margin-top:90px;
  }
  .hostel-card:hover{transform:translateY(-6px);}
  .hostel-img{width:100%; height:220px; overflow:hidden;}
  .hostel-img img{width:100%; height:100%; object-fit:cover; display:block;}
  .hostel-body{padding:24px 24px 28px;}
  .hostel-tag{
    display:inline-block; font-size:11.5px; font-weight:700; letter-spacing:0.04em;
    padding:5px 14px; border-radius:100px; margin-bottom:14px;
  }
  .tag-boys{background:#E8F0FE; color:var(--blue-dark);}
  .tag-girls{background:#FDF0DE; color:#B9761F;}
  .hostel-body h3{font-size:19px; font-weight:700; margin-bottom:10px; color:var(--navy);}
  .hostel-body p{font-size:14px; color:var(--text-gray); line-height:1.6; margin-bottom:16px;}

  /* LIFE AT NIRVANA */
  .life-section{
    background:var(--navy); color:var(--white); padding:80px 60px; text-align:center;
  }
  .life-section h2{font-size:28px; font-weight:700; margin-bottom:18px;}
  .life-section p{
    max-width:680px; margin:0 auto; color:#C7CEDD; font-size:15px; line-height:1.75;
  }

  /* CTA BAND */
  .cta-band{
    background:linear-gradient(120deg, var(--blue), var(--blue-dark));
    color:var(--white); text-align:center; padding:70px 60px;
  }
  .cta-band h2{font-size:26px; font-weight:700; margin-bottom:12px;}
  .cta-band p{color:#DCE7FF; font-size:15px; margin-bottom:26px;}
  .cta-band .pill-btn{background:var(--white); color:var(--blue);}
  .cta-band .pill-btn:hover{background:#EDF2FF;}

  /* FOOTER */
  footer{background:#141B2E; color:#9AA4BC; padding:50px 60px 24px;}
  .footer-top{
    display:flex; justify-content:space-between; flex-wrap:wrap; gap:30px;
    max-width:1180px; margin:0 auto 30px; padding-bottom:30px;
    border-bottom:1px solid rgba(255,255,255,0.08);
  }
  .footer-col h4{color:var(--white); font-size:13px; margin-bottom:14px; letter-spacing:0.04em;}
  .footer-col a, .footer-col p{display:block; font-size:13px; margin-bottom:9px; color:#9AA4BC;}
  .footer-bottom{
    max-width:1180px; margin:0 auto; font-size:12.5px; text-align:center; color:#6E7896;
  }

  /* FLOATING STICKY CTA */
  .sticky-cta{
    position:fixed; bottom:24px; right:24px; z-index:100;
    display:flex; flex-direction:column; gap:12px; align-items:flex-end;
  }
  .sticky-btn{
    width:54px; height:54px; border-radius:50%; display:flex; align-items:center; justify-content:center;
    box-shadow:0 8px 24px -6px rgba(0,0,0,0.3); transition:transform 0.15s;
  }
  .sticky-btn:hover{transform:scale(1.08);}
  .sticky-btn svg{width:24px; height:24px;}
  .sticky-whatsapp{background:#25D366;}
  .sticky-whatsapp svg{stroke:white; fill:white;}
  .sticky-call{background:var(--orange);}
  .sticky-call svg{stroke:var(--navy);}

  @media(max-width:700px){
    nav{padding:16px 24px;}
    .hero h1{font-size:34px;}
    .section, .group-section, .life-section, .cta-band{padding:60px 24px;}
    .hostel-img{height:200px;}
    .sticky-cta{bottom:16px; right:16px;}
    .sticky-btn{width:48px; height:48px;}
  }
