:root {
    --bg: #ffffff;
    --ink: #0f172a;
    --muted: #475569;
    --subtle: #94a3b8;
    --brand: #1e40af;
    --brand-2: #2563eb;
    --accent: #f59e0b;
    --surface: #f8fafc;
    --shadow: 0 10px 30px rgba(2, 6, 23, .08);
    --maxw: 1200px;
    --fb: #1877f2;
    --ig: #e1306c;
    --ln: #0a66c2;
    --yt: #ff0000;
    --wa: #25D366;
    --x: #000;
    --headerH: 60px;
    --dropH: 45vh
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: Inter, system-ui, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6
}

img {
    display: block;
    max-width: 100%
}

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

.container {
    max-width: var(--maxw);
    margin-inline: auto;
    padding: 0 24px
}

header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: saturate(160%) blur(8px);
    border-bottom: 1px solid #e2e8f0;
    height: var(--headerH)
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: var(--headerH)
}

.brand {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-weight: 800
}

.brand-badge {
    width: 100%;
    height: 60px;
    border-radius: 12px;
    background: transparent;
    display: grid;
    place-items: center;
    color: #fff;
    
}

.menu {
    display: flex;
    gap: 1.2rem
}

.menu a {
    color: var(--muted);
    font-weight: 600
}

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

.call-actions {
    display: flex;
    gap: 10px;
    align-items: center
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .7rem 1rem;
    border-radius: 12px;
    font-weight: 700;
    border: 1px solid #e2e8f0;
    transition: transform .2s ease, box-shadow .2s ease
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(2, 6, 23, .08)
}

.btn.primary {
    background: var(--brand-2);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(37, 99, 235, .18)
}

.btn.ghost {
    background: #fff
}

.btn svg {
    width: 18px;
    height: 18px
}

.hamb {
    display: none;
    background: none;
    border: 0;
    font-size: 1.6rem
}

.glass-wrap {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--headerH);
    z-index: 85;
    pointer-events: none
}

.glass-panel {
    height: var(--dropH);
    margin: 0 10px;
    border-radius: 0 0 18px 18px;
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(20px) saturate(140%);
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 20px 40px rgba(2, 6, 23, .18);
    overflow: auto;
    transform: translateY(-130%);
    transition: transform .28s ease;
    pointer-events: none
}

.glass-handle {
    width: 44px;
    height: 5px;
    border-radius: 999px;
    background: #e5e7eb;
    margin: 10px auto 6px
}

.glass-top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 6px 12px 0
}

.glass-links {
    padding: 6px 16px 0;
    display: grid;
    gap: 12px
}

.glass-links a {
    font-weight: 800;
    color: #0f172a
}

.glass-cta {
    margin-top: auto;
    padding: 12px 16px;
    display: grid;
    gap: 10px
}

.glass-cta a {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    border-radius: 12px;
    padding: 12px 14px;
    font-weight: 800;
    transition: transform .25s ease, box-shadow .25s ease
}

.glass-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18)
}

.glass-call {
    background: #1e40af;
    color: #fff
}

.glass-wa {
    background: var(--wa);
    color: #fff
}

.glass-social {
    padding: 8px 16px 14px;
    display: flex;
    gap: 10px
}

.glass-overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--headerH);
    height: calc(100vh - var(--headerH));
    background: rgba(15, 23, 42, .35);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
    z-index: 84
}

body.menu-open {
    overflow: hidden
}

body.menu-open .glass-panel {
    transform: translateY(0);
    pointer-events: auto
}

body.menu-open .glass-overlay {
    opacity: 1;
    pointer-events: auto
}

/* Hero */
.hero-fullwidth {
    position: relative;
    height: 50vh;
    overflow: hidden
}

.hero-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover
}
.hero-overlay {
  display: none;
}
.hero-overlay {
    position: absolute;
    left: 50%;
    bottom: 8%;
    transform: translateX(-50%);
    text-align: center
}

.hero-overlay .btn {
    font-size: 1rem;
    padding: .9rem 1.2rem
}

/* Booking */
.booking {
    position: relative;
    margin-top: -80px
}

.panel {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    box-shadow: var(--shadow)
}

.tabs {
    display: flex;
    gap: 6px;
    padding: 10px;
    border-bottom: 1px solid #e5e7eb;
    flex-wrap: wrap
}

.tab {
    padding: .55rem .9rem;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
    font-weight: 600;
    color: #334155;
    cursor: pointer
}

.tab.active {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff
}

form {
    padding: 18px
}

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

.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.field {
    display: grid;
    gap: 6px
}

label {
    font-weight: 600;
    color: #334155;
    font-size: .9rem
}

input,
select {
    width: 100%;
    padding: .8rem .9rem;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    background: #fff
}

input::placeholder {
    color: #94a3b8
}

.addstop {
    font-size: .9rem;
    color: var(--brand-2);
    cursor: pointer
}

.actions {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
    margin-top: 8px
}

.note {
    color: #64748b;
    font-size: .9rem
}

section {
    padding: 20px 0
}

h2 {
    font-size: clamp(1.6rem, 1.2vw+1rem, 2.2rem);
    margin: 0 0 14px
}

.cols {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px
}

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

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

/* Fleet */
.fleet-swiper {
    padding: 8px 2px 24px
}

.fleet-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden
}

.fleet-card .img-wrap {
    border-radius: 16px;
    position: relative;
    background: #fff;
    aspect-ratio: 2/2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.fleet-card img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.fleet-card .meta {
    padding: 14px
}

.fleet-card h3 {
    margin: .2rem 0 .35rem;
    font-size: 1.05rem
}

.stars span {
    color: #fbbf24;
    font-size: 1rem
}

.price {
    margin: .4rem 0 .7rem;
    color: #64748b
}

.green {
    color: #10b981
}

.btn.full {
    display: block;
    text-align: center;
    margin-top: .3rem
}

.fleet-swiper .swiper-button-prev,
.fleet-swiper .swiper-button-next {
    color: #0f172a;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .18)
}

.fleet-swiper .swiper-button-prev:after,
.fleet-swiper .swiper-button-next:after {
    font-size: 16px
}

.fleet-swiper .swiper-pagination {
    display: none
}

/* CTA + Proof */
.cta {
    background: #0b1223;
    color: #fff;
    padding: 34px 0;
    border-top: 1px solid #111827;
    border-bottom: 1px solid #111827
}

.cta-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px
}

.cta h3 {
    margin: 0;
    font-size: clamp(1.2rem, 1.2vw+1rem, 1.8rem)
}

.cta p {
    margin: 0;
    color: #cbd5e1
}

.proof {
    background: #0c142a;
    color: #e2e8f0;
    padding: 22px 0;
    border-top: 1px solid #111827;
    border-bottom: 1px solid #111827
}

.proof-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    text-align: center
}

.kpi .big {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff
}

.kpi .small {
    color: #cbd5e1
}

/* Footer */
footer {
    border-top: 0px solid #e5e7eb;
    background: #061016;
    color: #e2e8f0
}

.foot-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 24px;
    padding: 32px 24px
}

footer a {
    color: #cbd5e1
}

.copy {
    border-top: 1px solid #1f2937;
    color: #cbd5e1;
    padding: 14px 0
}

.social-icons {
    justify-content: center;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    align-items: baseline;
    
}

.social-icons a {
    transition: transform .3s ease, box-shadow .3s ease
}


.social-icons a:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2)
}

/* Mobile fixed Call/WhatsApp bar */
.mobile-fixed-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    z-index: 9999;
    padding-bottom: env(safe-area-inset-bottom)
}

.mobile-fixed-bar a {
    width: 30vh;
    text-align: center;
    padding: 14px 0;
    font-size: 1.05rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff
}

.call-btn {
    background: #1e40af
}


.mobile-fixed-bar svg {
    width: 25px;
    height: 25px;
    fill: #fff
}

/* Contact icons */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: .4rem 0
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4
}

.icon-22 {
    width: 22px;
    height: 22px;
    flex: 0 0 22px
}

.footer-contact a {
    color: #cbd5e1
}

.footer-contact a:hover {
    color: #fff
}

/* Responsive */
@media (max-width:1100px) {
    .grid {
        grid-template-columns: repeat(2, 1fr)
    }

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

    .cta-wrap {
        flex-direction: column;
        align-items: flex-start
    }
}
.mobile-fixed-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 1rem;
  font-weight: 700;
}

.call-btn {
  background: #1e40af; /* Primary blue */
}

.wa-btn {
  background: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-fixed-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.mobile-fixed-bar a {
  width: 30vh;
  padding: 12px 0;
}
.wa-btn svg {
    width: 30px;
    height: 30px;

}
.wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: green;
}

.wa-btn .wa-icon {
    width: 30px;
    /* adjust the size here */
    height: 30px;
    object-fit: contain;
}
.mobile-fixed-bar a {

    height: 50px;
    width: 30vh;
    border-radius: 50px;
    column-gap: normal;
    /* set the total button height */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.wa-btn img.wa-icon {
    height: 48px;
    /* fill entire button height */
    width: auto;
    /* maintain original aspect ratio */
    display: block;
}

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

    .hamb {
        display: block
    }

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

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

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

    .mobile-fixed-bar {
        
        display: flex
        
    }

    footer {
        padding-bottom: 80px
    }

    .fleet-swiper .swiper-button-prev,
    .fleet-swiper .swiper-button-next {
        display: none
    }

    .fleet-swiper .swiper-pagination {
        display: block
    }

    .proof-wrap {
        grid-template-columns: 1fr
    }

    .call-actions .btn {
        display: none
    }
}
.social-icons a {
  width: 36px; height: 36px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.social-icons a:hover { transform: scale(1.1); box-shadow: 0 4px 12px rgba(0,0,0,.2); }
.social-icons svg { width: 18px; height: 18px;}
.copy {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
 
}
.copy {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 0;
  line-height: 1.4;
}
.hero-fullwidth {
    position: relative;
    height: 50vh;
    /* Apply exact height */
    overflow: hidden;
}

.hero-picture img,
.hero-picture source {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width:460px) {
    .foot-grid {
        grid-template-columns: 1fr
    }
}
/* Show mobile bottom bar only on small screens */
.mobile-fixed-bar {
    display: none;
}

@media (max-width: 767px) {
    .mobile-fixed-bar {
        background: transparent;
        display: flex;
        justify-content: space-between;
        /* or block, depending on layout */
    }
}
:root{
  --bg:#ffffff; --ink:#0a0a09;--ink2: #facc15; --muted:#64748b; --brand:#1e40af; --brand-2:#2563eb; --wa:#25D366;
}
*{box-sizing:border-box}
body{margin:0;font-family:Inter,system-ui,Roboto,Arial,sans-serif;background:var(--bg);color:var(--ink);line-height:1.6}
.container{max-width:1100px;margin:0 auto;padding:0 18px}
.nav{display:flex;align-items:center;justify-content:space-between;padding:10px 18px;background:#fff;border-bottom:1px solid #e5e7eb}
.brand img{height:60px}
.menu a{margin-right:12px;color:var(--muted);font-weight:600}
.hero2 img{width:100%;height:50vh;object-fit:cover;display:block}
.panel{background:#fff;border-radius:12px;padding:18px;box-shadow:0 10px 30px rgba(2,6,23,.06);margin: -60px auto 24px}
.tabs{display:flex;gap:8px;margin-bottom:12px}
.tab{padding:.55rem .9rem;border-radius:999px;background:#f8fafc;border:1px solid #e5e7eb;cursor:pointer;font-weight:700}
.tab.active{background:var(--ink2);color:#fff}
.grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
.row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.field label{display:block;margin-bottom:6px;font-weight:700}
input,select{width:100%;padding:.75rem;border-radius:10px;border:1px solid #cbd5e1}
.phone-input{display:flex;gap:8px;align-items:center}
.flag{padding:.5rem;border-radius:8px;background:#fff;border:1px solid #e5e7eb}
.btn{display:inline-flex;align-items:center;gap:.6rem;padding:.6rem .9rem;border-radius:10px;border:1px solid #e5e7eb;background:#fff;cursor:pointer;font-weight:700}
.btn.primary{background:var(--wa);color:#fff;border:none}
.btn.ghost{background:#fff}
.btn.wa-book{background:var(--wa);color:#fff;border:none;padding:10px 16px;border-radius:10px}
.note{color:var(--muted);font-size:.92rem}

.foot{background:#0f172a;color:#cbd5e1;padding:28px 0;margin-top:20px}
.foot-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:18px;max-width:1100px;margin-top:18px;padding:18px}
.copy{text-align:center;padding:12px;border-top:1px solid rgba(255,255,255,.03)}
@media(max-width:900px){.grid{grid-template-columns:repeat(2,1fr)}.row{grid-template-columns:1fr}}
@media(max-width:600px){.grid{grid-template-columns:1fr}.panel{margin:-40px 12px 18px}}



/* ---------- Fare Modal ---------- */
.fare-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 80%;
  display: none;
  align-items: center;
  justify-content: center;
  background: transparent;
  backdrop-filter: blur(3px);
  z-index: 9999;
  padding: 20px;
  box-sizing: border-box;
}

.fare-modal[aria-hidden="false"] {
  display: flex !important;
  animation: fadeInOverlay 0.3s ease-in-out;
}

@keyframes fadeInOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---------- Fare Content ---------- */
.fare-content {
  background: #fff;
  padding: 24px;
  border-radius: 22px;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: fadeUp 0.35s ease;
  overflow-y: auto;
  max-height: 70vh;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.fare-content h3 {
  text-align: center;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

#routeMap {
  width: 100%;
  height: 250px;
  border-radius: 10px;
  margin-bottom: 10px;
  border: 1px solid #e5e7eb;
}

/* ======= Primary Yellow Get Quote Button ======= */
.btn.primary.quote-btn {
  background-color: #facc15; /* warm taxi yellow */
  color: #0f172a;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.25s ease-in-out;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.btn.primary.quote-btn img {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.2));
  transition: all 0.25s ease-in-out;
}

/* Hover Animation */
.btn.primary.quote-btn:hover {
  background-color: #fbbf24; /* deeper yellow */
  transform: scale(1.03);
}

.btn.primary.quote-btn:hover img {
  filter: brightness(1.2);
}
/* WhatsApp Button */
.btn.wa-book {
    background-color: #25D366;
    width: 25vh;
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.25s ease-in-out;
}


.btn.wa-book img {
    display: inline-block;
    width: 30px;
    height: 30px;
    filter: drop-shadow(0 0 1px rgba(249, 242, 242, 0.2));
    transition: all 0.25s ease-in-out;
}


/* Hover effects */
.btn.wa-book:hover {
    background-color: #1EBE57;
    transform: scale(1.03);
}

.btn.wa-book:hover img {
    filter: brightness(1.2) drop-shadow(0 0 2px rgba(255, 255, 255, 0.3));
}


/* --- Layout --- */
#prayagraj-tour .tour-section {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: nowrap;
    flex-direction: row;
}

#prayagraj-tour .tour-content {
    flex: 1 1 50%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#prayagraj-tour .tour-image {
    flex: 1 1 50%;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#prayagraj-tour .tour-image img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

/* --- Typography --- */
#prayagraj-tour h2 {
    color: #0b5f3b;
    font-size: 28px;
    margin-bottom: 10px;
    line-height: 1.3;
}

#prayagraj-tour p {
    color: #333;
    line-height: 1.7;
    margin-bottom: 12px;
}

#prayagraj-tour ul {
    color: #333;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* --- Scrollable Text Box --- */
#prayagraj-tour .read-box {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    height: 260px;
    /* fixed height for visible area */
    transition: all 0.4s ease;
}

#prayagraj-tour .read-box.expanded {
    overflow-y: auto;
    /* scrollable when expanded */
    height: 400px;
    /* slightly taller, fixed frame */
}

/* --- Scrollbar styling (optional aesthetic) --- */
#prayagraj-tour .read-box::-webkit-scrollbar {
    width: 6px;
}

#prayagraj-tour .read-box::-webkit-scrollbar-thumb {
    background-color: rgba(11, 95, 59, 0.5);
    border-radius: 6px;
}

/* --- Fade overlay (for collapsed state) --- */
#prayagraj-tour .fade-mask {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60px;
    background: linear-gradient(to top, #f9f9f9 70%, transparent);
    transition: opacity 0.4s ease;
    pointer-events: none;
}

#prayagraj-tour .read-box.expanded .fade-mask {
    opacity: 0;
}

#prayagraj-tour .read-more-btn {
    background: #0b5f3b;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 600;
    margin-top: 12px;
    align-self: flex-start;
    transition: background 0.3s ease;
}

#prayagraj-tour .read-more-btn:hover {
    background: #08864d;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    #prayagraj-tour .tour-section {
        flex-direction: column;
    }

    #prayagraj-tour .tour-image {
        order: 1;
    }

    #prayagraj-tour .tour-content {
        order: 2;
    }
}
/* === LOGO WRAPPER === */
    .logo-wrapper {
      position: relative;
      display: inline-block;
      overflow: hidden;
      padding: 12px 2px;
      border-radius: 16px;
    }

    /* === LOGO IMAGE === */
    .logo-wrapper img {
      width: 120px;
      opacity: 0;
      transform: translateY(20px) scale(0.97);
      animation: fadeInUp 1.4s ease-out forwards, glowPulse 3.6s ease-in-out infinite;
      filter: drop-shadow(white);
    }

    /* === FADE + SLIDE INTRO === */
    @keyframes fadeInUp {
      0% {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
        filter: blur(4px);
      }

      60% {
        opacity: 1;
        transform: translateY(-2px) scale(1.02);
        filter: blur(0);
      }

      100% {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    /* === GLOW LOOP === */
    @keyframes glowPulse {

      0%,
      100% {
        filter: drop-shadow(0 0 8px rgba(255,255,255,0.5));
      }

      50% {
        filter: drop-shadow(0 0 18px rgba(255,255,255,0.5));
      }
    }

    /* === SHINE REFLECTION === */
    .logo-wrapper::after {
      content: "";
      position: absolute;
      top: 0;
      left: -75%;
      width: 50%;
      height: 60px;
      background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .45) 50%, rgba(255, 255, 255, 0) 100%);
      animation: shineMove 4s infinite;
    }

    @keyframes shineMove {
      0% {
        left: -75%;
      }

      50% {
        left: 125%;
      }

      100% {
        left: 125%;
      }
    }
    /* === MOBILE HERO (3-image video-like fade) === */
@media (max-width: 768px) {
  .hero-mobile {
    position: sticky;
    width: 100%;
    height: 55vh;
    overflow: hidden;
  }

  /* Layer 1 */
  .hero-mobile::before,
  /* Layer 2 */
  .hero-mobile::after,
  /* Layer 3 (via span inside HTML) */
  .hero-mobile span.bg3 {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: heroFade 18s infinite ease-in-out;
    transition: opacity 1.5s ease;
    z-index: 1;
  }

  .hero-mobile::before {
    background-image: url("../images/taxi-service-allahabad.webp");
    animation-delay: 0s;
  }

  .hero-mobile::after {
    background-image: url("../images/taxi-service-allahabad-2.webp");
    animation-delay: 5s;
  }

  .hero-mobile span.bg3 {
    background-image: url("../images/taxi-service-allahabad-3.webp");
    animation-delay: 10s;
  }
  
  
 
  @keyframes heroFade {
    0%, 33% { opacity: 1; }
    40%, 100% { opacity: 0; }
  }

  .hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    text-align: center;
    padding: 30px 15px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    margin: 0 auto;
    width: 90%;
  }
}

footer {
      background: #0f172a;
      color: #fff;
    }

    h1,
    h2,
    h3 {
      color: #0f172a;
    }

    .hero {
      background: linear-gradient(120deg, #0f172a, #2563eb);
      color: white;
      text-align: center;
      padding: 80px 20px;
    }

    .hero img {
      max-width: 120px;
      margin-bottom: 16px;
    }

    .hero h1 {
      font-size: 2.4rem;
      margin-bottom: 12px;
    }

    .hero p {
      max-width: 720px;
      margin: auto;
      font-size: 1.1rem;
      line-height: 1.6;
    }

    .about-section {
      max-width: 1100px;
      margin: 60px auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .about-section img {
      width: 100%;
      border-radius: 16px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    .about-section div {
      font-size: 1rem;
      line-height: 1.7;
    }

    @media (max-width: 768px) {
      .about-section {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .about-section img {
        order: -1;
        max-width: 100%;
        margin-bottom: 20px;
      }

      .about-section div {
        text-align: left;
      }
    }

    .values {
      background: #f8fafc;
      padding: 60px 20px;
    }

    .values .container {
      max-width: 1000px;
      margin: auto;
      text-align: center;
    }

    .values h2 {
      margin-bottom: 20px;
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
    }

    .value-card {
      background: white;
      border-radius: 14px;
      padding: 20px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      transition: transform .3s;
    }

    .value-card:hover {
      transform: translateY(-4px);
    }

    .value-card h3 {
      margin-bottom: 10px;
      color: #2563eb;
    }

    .cta-banner {
      background: linear-gradient(90deg, #2563eb, #0f172a);
      color: white;
      text-align: center;
      padding: 60px 20px;
    }

    .cta-banner h2 {
      font-size: 1.8rem;
      margin-bottom: 12px;
    }

    .cta-banner a {
      display: inline-block;
      background: #22c55e;
      color: #fff;
      padding: 12px 28px;
      border-radius: 50px;
      text-decoration: none;
      transition: 0.3s;
    }

    .cta-banner a:hover {
      background: #16a34a;
    }

    footer {
      padding: 55px 10px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 5px;
      max-width: 1100px;
      margin: auto;
      align-items: start;
    }

    .footer-grid h4 {
      margin-bottom: 12px;
      color: #22c55e;
    }

    .footer-social {
      display: flex;
      gap: 35px;
      margin-top: 10px;
     justify-content: space-around;
    }

    .social-icon {
      width: 36px;
      height: 36px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      background: transparent;
      border: none;
      cursor: pointer
    }

    .social-icon svg {
      width: 18px;
      height: 18px;
      display: block;
    }

    .social-icon--fb svg {
      fill: #1877F2
    }

    .social-icon--ig svg {
      fill: #E1306C
    }

    .social-icon--wa svg {
      fill: #25D366
    }

    .social-icon--x svg {
      fill: #1DA1F2
    }

    /* glow effect */
    .social-icon {
      position: relative
    }

    .social-icon::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 8px;
      box-shadow: 0 0 0 rgba(34, 197, 94, 0);
      transition: box-shadow .25s, transform .25s
    }

    .social-icon:hover::after {
      box-shadow: 0 8px 24px rgba(34, 197, 94, 0.18);
      transform: translateY(-2px)
    }

    .footer-bottom {
      text-align: center;
      margin-top: 20px;
      font-size: 0.9rem;
      color: #cbd5e1;
    }

    .hero-c {
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.85), rgba(37, 99, 235, 0.75)),
  url('https://images.unsplash.com/photo-1502877338535-766e1452684a?w=1600&q=80') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 90px 20px;
  }
  
  .hero-c h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
  }
  
  .hero-c p {
  max-width: 720px;
  margin: auto;
  font-size: 1.1rem;
  line-height: 1.6;
  }
  
  .contact-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
  }
  
  .contact-section form {
  background: #f8fafc;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  }
  
  .contact-section form h2 {
  margin-bottom: 15px;
  color: #0f172a;
  }
  
  .contact-section input,
  .contact-section textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  }
  
  .contact-section button {
  background: #22c55e;
  color: white;
  border: none;
  padding: 12px 26px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  }
  
  .contact-section button:hover {
  background: #16a34a;
  }
  
  .map-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(34, 197, 94, 0.25);
  transition: 0.4s ease;
  }
  
  .map-card:hover {
  box-shadow: 0 0 40px rgba(34, 197, 94, 0.4);
  transform: scale(1.02);
  }
  
  @media(max-width:768px) {
  .contact-section {
  grid-template-columns: 1fr;
  }
  
  .contact-section form,
  .map-card {
  margin: auto;
  }
  }
/* === TABLET HERO STATIC === */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-mobile {
    background: url("../images/go-safe-cabs-travel-agency-prayagraj.webp") center/cover no-repeat;
    height: 60vh;
  }
}

/* === DESKTOP HERO STATIC === */

@media (min-width: 1025px) {
  .hero-mobile {
    background: url("../images/go-safe-taxi-service-prayagraj.webp") center/cover no-repeat;
    height: 70vh;
  }