     :root {
         --brand: #0ea5e9;
         /* Sky blue */
         --brand-2: #0369a1;
         /* Deep sky */
         --ink: #0f172a;
         /* Slate-900 */
         --muted: #475569;
         /* Slate-600 */
         --bg: #f8fafc;
         /* Slate-50 */
         --white: #ffffff;
         --card: #ffffff;
         --ring: rgba(14, 165, 233, .35);
         --shadow: 0 10px 25px rgba(2, 132, 199, .12);
         --radius: 18px;
     }

     * {
         box-sizing: border-box
     }

     html,
     body {
         margin: 0
     }

     body {
         font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
         color: var(--ink);
         background: var(--bg);
         line-height: 1.45;
     }

     a {
         color: inherit;
         text-decoration: none
     }

     img {
         width: 100%;
         display: block
     }

     /* ——— NAVBAR ——— */
     .nav {
         position: sticky;
         top: 0;
         z-index: 50;
         background: rgba(255, 255, 255, .8);
         backdrop-filter: saturate(1.2) blur(8px);
         border-bottom: 1px solid #e5e7eb
     }

     .nav-inner {
         max-width: 1200px;
         margin: auto;
         display: flex;
         align-items: center;
         justify-content: space-between;
         padding: 14px 20px
     }

     /* Background video */
     .video-bg {
         position: fixed;
         top: 0;
         left: 0;
         min-width: 100%;
         min-height: 100%;
         object-fit: cover;
         z-index: -1;
     }

     /* Form container */
     .booking-container {
         max-width: 1200px;
         margin: 100px auto;
         background: white;
         border-radius: 6px;
         overflow: hidden;
         box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
     }

     /* Tabs */
     .tabs {
         display: flex;
         border-bottom: 1px solid #ddd;
     }

     .tab {
         flex: 1;
         padding: 15px;
         text-align: center;
         cursor: pointer;
         font-weight: bold;
         border-right: 1px solid #ddd;
     }

     .tab.active {
         background: #ff6600;
         color: white;
     }

     .tab:last-child {
         border-right: none;
     }

     /* Form body */
     .form-body {
         display: flex;
         flex-wrap: wrap;
         gap: 20px;
         padding: 20px;
         align-items: flex-end;
     }

     .form-group {
         flex: 1;
         min-width: 200px;
     }

     label {
         display: block;
         margin-bottom: 6px;
         font-size: 14px;
     }

     input {
         width: 100%;
         padding: 10px;
         border-radius: 25px;
         border: 1px solid #ccc;
         font-size: 14px;
     }

     .book-btn {
         background: #ff6600;
         color: white;
         border: none;
         padding: 12px 20px;
         border-radius: 25px;
         font-size: 14px;
         cursor: pointer;
         min-width: 120px;
         font-weight: bold;
     }

     .book-btn:hover {
         background: darkorange;
     }

     .brand {
         display: flex;
         align-items: center;
         gap: 12px;
         font-weight: 800;
         letter-spacing: .3px
     }

.logo img {
    height: 120px; /* Logo ki height ko 120px tak increase kar diya */
    width: auto;   /* Aspect ratio maintain hoga */
    object-fit: contain; /* Image ko distort nahi karega */
    display: block;
    margin: 0 auto; /* Horizontally center image */
    padding: 10px 0; /* Thoda vertical spacing badhaya */
}


     .brand span {
         font-size: 1.05rem
     }

     .menu {
         display: flex;
         gap: 22px;
         align-items: center
     }

     .menu a {
         font-weight: 600;
         color: #0f172a;
         opacity: .9
     }

     .menu a:hover {
         color: var(--brand)
     }

     .cta {
         padding: 10px 14px;
         border-radius: 12px;
         background: var(--brand);
         color: white;
         font-weight: 700;
         box-shadow: var(--shadow);
     }

     .cta:hover {
         background: var(--brand-2)
     }

     /* ——— HERO ——— */
     .hero {
         position: relative;
         isolation: isolate
     }

     .hero::after {
         content: "";
         position: absolute;
         inset: 0;
         background: radial-gradient(1200px 400px at 20% -10%, rgba(14, 165, 233, .15), transparent), radial-gradient(900px 300px at 90% 0%, rgba(3, 105, 161, .12), transparent);
         z-index: -1
     }

     .hero-wrap {
         max-width: 1200px;
         margin: 0 auto;
         padding: 56px 20px 28px;
         display: grid;
         grid-template-columns: 1.15fr .85fr;
         gap: 28px;
         align-items: center
     }

     .hero h1 {
         font-size: clamp(28px, 4vw, 48px);
         margin: 0 0 10px;
         line-height: 1.1
     }

     .hero p {
         margin: 0 0 22px;
         color: var(--muted)
     }

     .search-card {
         background: var(--card);
         border-radius: var(--radius);
         box-shadow: var(--shadow);
         padding: 18px;
         border: 1px solid #e5e7eb
     }

     .form-grid {
         display: grid;
         grid-template-columns: repeat(4, 1fr);
         gap: 12px
     }

     .field {
         display: flex;
         flex-direction: column;
         gap: 6px
     }

     .label {
         font-size: .8rem;
         color: var(--muted);
         font-weight: 600
     }

     .input,
     .select {
         height: 44px;
         border: 1px solid #e5e7eb;
         border-radius: 12px;
         padding: 0 12px;
         outline: none
     }

     .input:focus,
     .select:focus {
         border-color: var(--brand);
         box-shadow: 0 0 0 4px var(--ring)
     }

     .btn {
         height: 44px;
         border: 0;
         border-radius: 12px;
         background: var(--brand);
         color: white;
         font-weight: 700;
         cursor: pointer;
         box-shadow: var(--shadow)
     }

     .btn:hover {
         background: var(--brand-2)
     }

     .hero-stats {
         display: flex;
         gap: 22px;
         margin-top: 18px;
         flex-wrap: wrap
     }

     .stat {
         background: var(--card);
         border: 1px solid #e5e7eb;
         padding: 12px 14px;
         border-radius: 14px;
         min-width: 140px;
         text-align: center
     }

     .stat strong {
         display: block;
         font-size: 1.2rem
     }

     .hero-image {
         position: relative
     }

     .gloss {
         aspect-ratio: 4/3;
         border-radius: 22px;
         overflow: hidden;
         background: linear-gradient(135deg, #e0f2fe, #fff);
         border: 1px solid #e5e7eb;
         box-shadow: var(--shadow)
     }

     .gloss img {
         width: 100%;
         height: 100%;
         object-fit: cover
     }

     /* ——— SERVICES ——— */
     .section {
         max-width: 1200px;
         margin: 0 auto;
         padding: 50px 20px
     }

     .section h2 {
         font-size: clamp(22px, 3.2vw, 34px);
         margin: 0 0 6px
     }

     .section p.lead {
         color: var(--muted);
         margin: 0 0 24px
     }

     .grid-4 {
         display: grid;
         grid-template-columns: repeat(4, 1fr);
         gap: 16px
     }

     .card {
         background: var(--card);
         border: 1px solid #e5e7eb;
         border-radius: 18px;
         padding: 18px;
         box-shadow: var(--shadow);
         display: flex;
         flex-direction: column;
         gap: 8px
     }

     .card h3 {
         margin: 6px 0 4px;
         font-size: 1.05rem
     }

     .chip {
         display: inline-block;
         font-size: .75rem;
         padding: 4px 10px;
         border-radius: 999px;
         background: #e0f2fe;
         color: #075985;
         font-weight: 700
     }

     /* ——— PACKAGES ——— */
     .grid-3 {
         display: grid;
         grid-template-columns: repeat(3, 1fr);
         gap: 18px
     }

     .pkg {
         overflow: hidden
     }

     .pkg .thumb {
         aspect-ratio: 16/10;
         border-radius: 14px;
         overflow: hidden;
         border: 1px solid #e5e7eb
     }

     .pkg .info {
         display: flex;
         align-items: center;
         justify-content: space-between;
         margin-top: 10px
     }

     .price {
         font-weight: 800;
         color: var(--brand)
     }

     /* ——— WHY US ——— */
     .why {
         display: grid;
         grid-template-columns: 1fr 1fr;
         gap: 24px;
         align-items: center
     }

     .list {
         display: grid;
         gap: 12px
     }

     .li {
         display: flex;
         gap: 12px;
         align-items: flex-start;
         background: var(--card);
         border: 1px solid #e5e7eb;
         padding: 12px;
         border-radius: 14px
     }

     .bullet {
         width: 30px;
         height: 30px;
         border-radius: 10px;
         display: grid;
         place-items: center;
         background: #e0f2fe;
         color: #075985;
         font-weight: 900
     }

     /* ——— CONTACT STRIP ——— */
     .contact-strip {
         background: linear-gradient(135deg, var(--brand), var(--brand-2));
         color: white
     }

     .contact-inner {
         max-width: 1200px;
         margin: 0 auto;
         padding: 26px 20px;
         display: flex;
         gap: 18px;
         justify-content: space-between;
         align-items: center;
         flex-wrap: wrap
     }

     .contact-inner a {
         background: rgba(255, 255, 255, .15);
         padding: 10px 14px;
         border-radius: 14px;
         color: white;
         border: 1px solid rgba(255, 255, 255, .3);
         font-weight: 700
     }

     /* ——— FOOTER ——— */
     footer {
         background: #0b1220;
         color: #cbd5e1
     }

     .footer {
         max-width: 1200px;
         margin: 0 auto;
         padding: 36px 20px;
         display: grid;
         grid-template-columns: 2fr 1fr 1fr 1fr;
         gap: 20px
     }

     .footer h4 {
         margin: 0 0 10px;
         color: #e2e8f0
     }

     .small {
         font-size: .92rem;
         color: rgba(192, 233, 12, 0.747);
     }

     .copy {
         border-top: 1px solid #1f2937;
         padding: 16px 20px;
         text-align: center;
         color: #94a3b8
     }

     /* ——— RESPONSIVE ——— */
     @media (max-width: 1024px) {
         .hero-wrap {
             grid-template-columns: 1fr
         }
     }

     @media (max-width: 900px) {
         .grid-4 {
             grid-template-columns: repeat(2, 1fr)
         }

         .grid-3 {
             grid-template-columns: repeat(2, 1fr)
         }

         .why {
             grid-template-columns: 1fr
         }
     }

     @media (max-width: 560px) {
         .menu {
             display: none
         }

         .grid-4 {
             grid-template-columns: 1fr
         }

         .grid-3 {
             grid-template-columns: 1fr
         }

         .hero-stats {
             gap: 10px
         }
     }