:root {
        --ink: #0f172a;
        --muted: #71777f;
        --brand: #0b5ed7;
        --accent: #ef4444;
        --card: #ffffff;
        --bg: #f6f9fc;
        --line: #e2e8f0;
    }

    body {
        font-family: "Rubik", sans-serif;
        background: var(--bg);
        color: var(--ink)
    }

    .topbar {
        background: #0e1287;
        color: #fff;
        font-size: 1.4rem;
        font-weight: 400
    }

    .topbar a {
        color: #fff;
        text-decoration: none
    }

    .hero {
        position: relative;
        min-height: 90vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: url('image/background.jpg') center/cover no-repeat;
        isolation: isolate;
    }

    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgb(10 25 88 / 55%), rgb(5 11 37 / 65%));
        z-index: 0
    }

    .hero-content {
        position: relative;
        z-index: 1;
        color: #fff;
        text-align: left
    }

    .hero h1 {
        font-weight: 800;
        letter-spacing: .2px
    }

    /* HERO CTA — desktop + phone friendly */
.hero .cta-btn{
  position: relative;
  box-shadow: 0 10px 30px rgba(34,167,61,.35);
  transition: transform .25s ease, box-shadow .25s ease;
  will-change: transform, box-shadow;
  padding: 14px 26px;
  font-weight:600;
      border-radius: 35px;
}

/* subtle hover on desktop */
.hero .cta-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(12,102,30,0.35);
}

/* animated green pulse + icon wiggle */
.hero .cta-btn::after{
  content:"";
  position:absolute;
  inset:-6px;
  border-radius:999px;
  pointer-events:none;
  box-shadow:0 0 0 0 rgba(25,135,84,.45);
  animation:heroPulse 1.8s ease-out infinite;
  z-index:-1;
}
.hero .cta-btn i{
  display:inline-block;
  animation:heroWiggle 2.2s ease-in-out infinite;
}

/* make it phone friendly */
@media (max-width:576px){
  .hero .cta-btn{
    display:block;
    width:clamp(240px, 60vw, 480px);
    margin:0 auto;
    text-align:center;
    font-size:1.1rem;
    padding:16px 20px;
    border-radius:999px;
    box-shadow:0 10px 28px rgba(25,135,84,.45);
    animation:heroPulse 2s ease-in-out infinite;
  }
  .hero .cta-btn i{ font-size:1.2em; margin-right:8px; }
}

/* reduce motion for accessibility */
@media (prefers-reduced-motion: reduce){
  .hero .cta-btn::after,
  .hero .cta-btn i{ animation:none!important; }
}

/* keyframes */
@keyframes heroPulse{
  0%{ box-shadow:0 0 0 0 rgba(25,135,84,.45); }
  70%{ box-shadow:0 0 0 18px rgba(25,135,84,0); }
  100%{ box-shadow:0 0 0 0 rgba(25,135,84,0); }
}
@keyframes heroWiggle{
  0%,100%{ transform:rotate(0deg); }
  20%{ transform:rotate(-10deg); }
  40%{ transform:rotate(10deg); }
  60%{ transform:rotate(-6deg); }
  80%{ transform:rotate(6deg); }
}



    .feature-card {
        background: var(--card);
        border: 1px solid var(--line);
        border-radius: 18px;
        padding: 28px;
        height: 100%;
        transition: .25s ease;
        box-shadow: 0 10px 24px rgba(2, 6, 23, .04)
    }

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 40px rgba(2, 6, 23, .08)
    }

    .feature-icon {
        width: 64px;
        height: 64px;
        border: 2px solid #e5efff;
        border-radius: 50%;
        display: grid;
        place-items: center;
        margin-bottom: 12px;
        color: #0b66d7;
        font-size: 1.35rem;
        background: #f3f7ff
    }

    .section-title {
        font-weight: 600;
        letter-spacing: .2px;
        /* font-size: 25px; */
    }

    .dest img {
        border-radius: 14px;
        aspect-ratio: 4/3;
        object-fit: cover
    }

    .banner {
        position: relative;
        overflow: hidden;
        min-height: 400px;
        color: #fff;
        background: url('image/cta.jpg') center/cover no-repeat
    }

    .banner::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(2, 6, 23, .75), rgba(2, 6, 23, .35))
    }

    .banner>.inner {
        position: relative;
        z-index: 1
    }

    .copy p {
        color: var(--muted);
        font-size: 17px;
    }

    .contact-wrap {
        background: #0b2042;
        color: #dbeafe;
        border-radius: 18px
    }

    .contact-wrap .form-control {
        background: #fff;
        border: 1px solid #d0e3ff;
        color: #808eb1;
        font-size: 15px;
    }

    .contact-wrap .form-control::placeholder {
        color: #7ea2d6
    }

    /* .sticky-call {
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        bottom: 18px;
        z-index: 50;
        box-shadow: 0 16px 40px rgba(68, 239, 173, .35)
    } */
 

/* Base (desktop/tablet) — already centered */
.sticky-call{
  position:fixed; bottom:20px; left:50%; transform:translateX(-50%);
  z-index:9999; border-radius:50px; padding:14px 28px; font-weight:600;
  box-shadow:0 8px 18px rgba(0,0,0,.2);
  animation:pulseRing 1.5s infinite ease-in-out, bounce 2s infinite ease-in-out;
  transition:transform .3s ease, box-shadow .3s ease;
}
.sticky-call i{ animation:wiggle 1.8s infinite ease-in-out; }
.sticky-call:hover{ transform:translateX(-50%) scale(1.07); box-shadow:0 10px 25px rgba(0,0,0,.3); }

/* Phone responsiveness */
@media (max-width:576px){
  .sticky-call{
    /* make it feel full-width while staying centered */
    width:clamp(260px, 92vw, 520px);
    padding:16px 18px;
    font-size:1.05rem;
    bottom: calc(14px + env(safe-area-inset-bottom, 0)); /* iOS notch safe-area */
    border-radius:999px;
    box-shadow:0 12px 24px rgba(25,135,84,.35);
  }
  .sticky-call i{ margin-right:10px; font-size:1.1em; }
  /* reduce motion on small screens so it's not distracting */
  .sticky-call{ animation:pulseRing 1.8s infinite ease-in-out; } /* drop bounce by default on phones */
}

/* Respect user's reduced motion preference */
@media (prefers-reduced-motion: reduce){
  .sticky-call, .sticky-call i{ animation:none; }
  .sticky-call{ transition:none; }
}

/* Animations */
@keyframes pulseRing{
  0%{ box-shadow:0 0 0 0 rgba(25,135,84,.55); }
  70%{ box-shadow:0 0 0 16px rgba(25,135,84,0); }
  100%{ box-shadow:0 0 0 0 rgba(25,135,84,0); }
}
@keyframes bounce{
  0%,20%,50%,80%,100%{ transform:translateX(-50%) translateY(0); }
  40%{ transform:translateX(-50%) translateY(-6px); }
  60%{ transform:translateX(-50%) translateY(-3px); }
}
@keyframes wiggle{
  0%,100%{ transform:rotate(0); }
  20%{ transform:rotate(-12deg); }
  40%{ transform:rotate(12deg); }
  60%{ transform:rotate(-8deg); }
  80%{ transform:rotate(8deg); }
}


    .footerbar {
        background: #0e1287;
        color: #fff
    }

    .eyebrow {
        font-size: .85rem;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: #b3effd;
    }

    .about {
        transition: .25s ease;
        box-shadow: 0 10px 24px rgb(5 10 32 / 13%);
        border-radius: 30px;
    }
   .text-footer{
         font-size: 14px;
    text-align: center;
    padding: 40px;
    color: #8eadc4;
    font-style: italic;
   }
    /* --------------------------------------------------
       PHONE-ONLY TUNING (≤576px)
       -------------------------------------------------- */
    @media (max-width:576px) {

        /* Global spacing */
        .container {
            padding-left: 16px;
            padding-right: 16px
        }

        section {
            padding-top: 28px !important;
            padding-bottom: 28px !important
        }

        /* Topbar */
        .topbar {
            font-size: 1rem
        }

        .topbar .container {
            justify-content: center !important
        }

        /* Hero */
        .hero {
            min-height: 55vh
        }

        .hero-content {
            text-align: center;
        }

        .hero h1 {
            font-size: 1.6rem;
            line-height: 1.25;
            margin-bottom: .75rem
        }

        .hero .lead {
            font-size: 1rem;
            margin-bottom: 1rem
        }

        /* .hero .cta-btn {
            width: 60%;
            font-size: 1.05rem;
            padding: .9rem 1rem
        } */

        /* Feature cards */
        .feature-card {
            padding: 18px
        }

        .feature-icon {
            width: 52px;
            height: 52px;
            font-size: 1.1rem;
            margin-bottom: 8px
        }

        .feature-card h5 {
            font-size: 1.05rem;
            margin-bottom: .35rem
        }

        .feature-card p {
            font-size: .92rem
        }

        /* Popular images */
        .section-title {
            font-size: 1.25rem;
            margin-bottom: 1rem !important
        }

        .dest img {
            aspect-ratio: 16/10;
            border-radius: 12px
        }

        .dest p {
            font-size: 1rem !important;
            padding-top: 6px !important;
            margin-bottom: 0
        }

        /* Banner */
        .banner {
            min-height: 350px;
            border-radius: 0
        }

        .banner .inner {
            padding: 18px !important
        }

        .banner h2 {
            font-size: 1.25rem;
            margin-bottom: .35rem
        }

        .banner p {
            font-size: .95rem;
            margin-bottom: .75rem
        }

        .banner .btn {
            width: 60%
        }

        /* Copy blocks */
        #how h3 {
            font-size: 1.25rem
        }

        #how h4 {
            font-size: 1.05rem;
            margin-top: 1rem
        }

        #how ul {
            padding-left: 1rem
        }

        #how li {
            margin-bottom: .4rem
        }

        /* Contact */
        .contact-wrap {
            padding: 18px !important;
            border-radius: 14px
        }

        /* Make lg controls comfortable but not huge on mobile */
        .contact-wrap .form-control.form-control-lg {
            padding: .7rem .9rem;
            font-size: 13px;
            border-radius: 12px
        }

        .contact-wrap .btn.btn-lg {
            padding: .9rem 1rem;
            font-size: 1.05rem
        }

        .contact-wrap .d-grid .btn {
            width: 100%
        }

        /* Sticky call button */
        /* .sticky-call {
            width: 100%;
            bottom: 0;
            border-radius: 0;
        }

        .sticky-call i {
            margin-right: 8px
        } */

        /* Footer */
        .footerbar .container {
            /* gap: .5rem !important; */
            justify-content: center !important
        }

        .footerbar a {
            font-size: 13px;
        }
        .text-footer{
         
    padding: 15px;
    
   }



    }