:root{
      --bg:#07080b;
      --panel:rgba(255,255,255,.06);
      --panel2:rgba(255,255,255,.04);
      --border:rgba(212,175,55,.22);
      --gold:#fecc11;
      --gold2:#fecc11;
      --text:#f9f9f7;
      --muted:rgba(232,237,246,.72);
      --shadow: 0 18px 48px rgba(0,0,0,.55);
      --radius:18px;
    }

    *{box-sizing:border-box}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
    }

    a{color:inherit; text-decoration:none}
    .wrap{
      max-width: 1180px;
      margin: 0 auto;
      padding: 26px 18px 60px;
    }

    /* Topbar */
    .topbar{
      /* display:flex;*/
      flex-direction: row;
	  align-items:center;
      justify-content:space-between;
      gap:16px;
      padding:18px 18px;
      border:1px solid var(--border);
      background:
        radial-gradient(800px 240px at 15% 50%, rgba(212,175,55,.12), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
      border-radius: calc(var(--radius) + 6px);
      box-shadow: var(--shadow);
      position:relative;
      overflow:hidden;
    }
    .topbar::after{
      content:"";
      position:absolute;
      inset:-60px -120px auto auto;
      width:360px;
      height:360px;
      background: radial-gradient(circle, rgba(212,175,55,.18), transparent 60%);
      filter: blur(2px);
      pointer-events:none;
      transform: rotate(20deg);
    }

    .brand{
      display:flex;
      align-items:center;
      gap:14px;
      min-width: 260px;
    }
    .logo{
      width:54px;
      height:54px;
      border-radius:14px;
      border:1px solid var(--border);
      background:
        radial-gradient(circle at 30% 30%, rgba(255,204,74,.35), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.03));
      display:grid;
      place-items:center;
      font-weight:800;
      color:var(--gold);
    }
    .brand h1{
      margin:0;
      line-height:1.1;
      letter-spacing:.2px;
    }
    .brand .sub{
      margin-top:4px;
      font-size:12px;
      color:var(--muted);
      letter-spacing:.35px;
      text-transform:uppercase;
    }

    .actions{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }

    .pill{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:10px 14px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(0,0,0,.25);
      backdrop-filter: blur(6px);
      font-weight:700;
      font-size:14px;
    }
    .pill small{
      font-weight:600;
      opacity:.9;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:12px 16px;
      border-radius:12px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      font-weight:800;
      letter-spacing:.2px;
      transition: transform .12s ease, background .12s ease, border-color .12s ease;
      cursor:pointer;
      user-select:none;
    }
    .btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.08); border-color: rgba(212,175,55,.35);}
    .btn:active{transform: translateY(0px);}
    .btn.gold{
      background: linear-gradient(180deg, rgba(255,204,74,.95), rgba(212,175,55,.95));
      color:#1a1403;
      border-color: rgba(0,0,0,.25);
    }
    .btn.green{
      background: linear-gradient(180deg, rgba(44,166,94,.98), rgba(26,128,71,.98));
      border-color: rgba(0,0,0,.25);
    }

    .ico{
      width:18px;height:18px; display:inline-block;
      filter: drop-shadow(0 6px 12px rgba(0,0,0,.35));
    }

    /* Hero */
    .hero_index{
      margin-top: 22px;
      padding: 18px 10px 0;
	  text-align:center;
    }
    .hero_index h2{
      margin: 10px 0 0;
      font-size: clamp(28px, 3.6vw, 44px);
      letter-spacing:.2px;
      font-weight: 900;
    }
    .hero_index h2 span{
      color: var(--gold);
    }

    /* Grid sections */
    .grid{
      margin-top: 22px;
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:16px;
    }
    .card{
      border:1px solid rgba(255,255,255,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
      border-radius: var(--radius);
      padding: 16px;
      box-shadow: 0 14px 32px rgba(0,0,0,.45);
      position:relative;
      overflow:hidden;
    }
    .card::before{
      content:"";
      position:absolute;
      inset:auto auto -120px -140px;
      width:340px;height:240px;
      background: radial-gradient(circle, rgba(212,175,55,.18), transparent 62%);
      transform: rotate(-10deg);
      pointer-events:none;
    }
    .service{
      display:flex;
      gap:14px;
      align-items:flex-start;
    }
    .service .iconbox{
      width:68px;height:46px;
      border-radius:14px;
      border:1px solid rgba(212,175,55,.25);
      background: rgba(0,0,0,.28);
      display:grid; place-items:center;
      color: var(--gold);
      font-weight:900;
      flex: 0 0 auto;
    }
    .service h3{
      margin:0;
      font-size:16px;
      font-weight:900;
      color: var(--gold2 याद);
    }
    .service p{
      margin:6px 0 0;
      color: var(--muted);
      font-size:13px;
      line-height:1.35;
    }

    /* Highlight badge card */
    .badge{
      display:flex;
      gap:12px;
      align-items:center;
      justify-content:space-between;
    }
    .badge .chip{
      display:inline-flex;
      flex-direction:column;
      gap:4px;
    }
    .badge strong{
      font-size:18px;
      color: var(--gold2);
    }
    .badge .stars{
      font-size:13px;
      color: rgba(232,237,246,.85);
    }
    .badge .tag{
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.06);
      font-weight:900;
      color: var(--text);
    }

        .hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .hero h1 {
                font-size: 36px;
            }
        .hero h1 {
            font-size: 48px;
            color: #fecc11;
            margin-bottom: 10px;
        }

        .hero h2 {
            font-size: 22px;
            margin-bottom: 20px;
        }

        .hero1 {
            gap: 40px;
            align-items: center;
        }
        .hero1 h1 {
                font-size: 36px;
            }
        .hero1 h1 {
            font-size: 48px;
            color: gold;
            margin-bottom: 10px;
        }

        .hero1 h2 {
            font-size: 22px;
            margin-bottom: 20px;
        }
		
        .features {
            list-style: none;
            padding: 0;
            line-height: 1.8;
        }
		
	    .features .sub{
			margin-top:4px;
			font-size:12px;
			color:var(--muted);
			letter-spacing:.35px;
     
		}

        .features li::before {
            content: "✔ ";
            color: gold;
            font-weight: bold;
        }

        .image-box img {
            width: 100%;
            border-radius: 12px;
            border: 2px solid gold;
        }


    /* Bottom area: images + contact */
    .bottom{
      margin-top: 16px;
      display:grid;
      grid-template-columns: 1.3fr 1.3fr 1fr;
      gap:16px;
      align-items:stretch;
    }

    .media{
      padding:0;
      overflow:hidden;
    }
    .media img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
      filter: contrast(1.05) saturate(1.05);
      transform: scale(1.02);
    }
    .media .cap{
      position:absolute;
      inset:auto 12px 12px 12px;
      background: rgba(0,0,0,.35);
      border:1px solid rgba(255,255,255,.12);
      border-radius: 14px;
      padding:10px 12px;
      font-size:12px;
      color: rgba(232,237,246,.85);
      backdrop-filter: blur(8px);
    }

    .contact h3{
      margin:0;
      font-size:22px;
      font-weight: 950;
      color: var(--gold);
    }
    .contact .phone{
      margin-top:10px;
      font-size:22px;
      font-weight:950;
      letter-spacing:.6px;
      display:flex;
      align-items:center;
      gap:10px;
    }
    .contact .hours{
      margin-top:12px;
      color: var(--muted);
      font-size:13px;
      line-height:1.5;
    }
    .contact .cta{
      margin-top:14px;
      display:flex;
      gap:10px;
      flex-wrap:wrap;
    }
    .qr{
      margin-top:12px;
      display:flex;
      gap:12px;
      align-items:center;
    }
    .qr img{
      width:140px;height:140px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.06);
      padding:8px;
    }
    .footerline{
      margin-top: 22px;
      display:flex;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      color: rgba(232,237,246,.65);
      font-size:13px;
    }
    .footerline strong{color: rgba(232,237,246,.92);}


        .contact {
            padding: 30px;
            border: 2px solid gold;
            border-radius: 12px;
            background: #111;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .contact h3 {
            color: gold;
            margin-bottom: 10px;
        }

        .contact a {
            display: inline-block;
            margin-top: 10px;
            text-decoration: none;
        }

        .footer {
            text-align: center;
            margin-top: 40px;
            color: gold;
            font-size: 14px;
        }

        @media(max-width: 800px) {
            .hero, .hero1, .contact {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 36px;
            }
        }

    /* Responsive */
    @media (max-width: 980px){
      .grid{grid-template-columns: repeat(2, 1fr);}
      .bottom{grid-template-columns: 1fr; }
      .brand{min-width:auto;}
    }
    @media (max-width: 560px){
      .grid{grid-template-columns: 1fr;}
      .actions{justify-content:flex-start;}
      .pill{width:100%; justify-content:center;}
    }
	@media (min-width: 560px){
		.topbar{display: flex;}
	}
		