@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Quicksand:wght@300..700&family=Roboto:wght@300;400;500;700;900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Warang+Citi&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* add by nirajan */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Teko:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

/* btn-yellow for yellow collor with hover   */
:root {
    --primary: rgba(2, 31, 65, 1);
    --secondary: #d5e880;
    --bg-color: #dcf7ff;
    --text-color: #0d3a48;
    --primary-off: #5c67a2;
    --primary-off-off: #f8f8ff;
    --white-off: #f5f5ff;
    --white: rgba(255, 255, 255, 1);
    --extra-grey: rgba(149, 164, 183, 0.11);
    --font-family: "inter";
    --font-family-inter: "inter";
    --icon-size: 24px;
    --weight400: 400;
    --weight500: 500;
    --weight600: 600;
    --weight700: 700;
    --radius4: 4px;
    --radius8: 8px;
    --radius20: 20px;
    --radius100: 100px;
    --border-radius: 8px;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

*[lang="en"] body {
    font-family: "Roboto", sans-serif;
}

*[lang="ne"] body {
    font-family: "Mukta", sans-serif;
}

a {
    text-decoration: none;
    color: #333;
}

li {
    list-style: none;
}


.extralarger {
    font-family: var(--font-family);
    letter-spacing: 0.8px;
    font-size: 2.4rem;
    font-weight: var(--weight700);
    text-transform: capitalize;
    color: var(--text-color);
    z-index: 2;
    padding: 0;
    margin: 0;
}

/* for input and textarea */

/* for input */

.input {
    border: 2px solid var(--border-color);
    stroke: none;
    border-radius: var(--border-radius);
    padding: 8px;
    font-size: 20px;
    width: 100%;
}

option {
    font-size: 16px !important;
}

.disabled,
.selected {
    font-size: 16px !important;
}

.textarea {
    border: 2px solid var(--border-color);
    stroke: none;
    border-radius: var(--border-radius);
    padding: 14px 8px;
    font-size: 20px;
    width: 100%;
}

input:focus,
textarea:focus {
    stroke: none;
    border: 2px solid var(--text-gray);
    outline: none;
}

input::placeholder {
    font-size: 19px;
    color: rgba(0, 0, 0, 0.921) !important;
    font-family: var(--font-inter);
    text-transform: capitalize;
    padding: 2px 0;
}

@media (max-width: 992px) {
    .customicon,
    .customicon_yellow,
    .customicon_blue,
    .customicon_pink {
        font-size: 20px;
        height: calc(10px + 4.6vh);
        width: calc(30px + 2.6vw);
    }
}

@media (max-width: 500px) {
    .extralarger {
        font-size: 32px;
    }
}

/* d-flex content-center align-items-center */

.fcc {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fbc {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.navbar {
    background: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-md);
}



.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color 0.3s ease;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

.heading {
    font-family: var(--font-family);
    font-weight: 500;
    color: var(--text-color);
    font-size: 1rem;
    text-transform: uppercase;
}

/* Smooth Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Apply animations to elements */
.hero-content {
    animation: fadeIn 1s ease-out;
}

/* Loading States */
.btn.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}

.btn.loading:after {
    content: "";
    width: 1em;
    height: 1em;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    position: absolute;
    right: 0.5em;
    top: 50%;
    margin-top: -0.5em;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.bg-soft-blue {
    background-color: #eaf6ff; /* Soft sky blue */
}

.section-title {
  text-align: center;
  color: #f26522;
  font-weight: 600;
  font-size: 2rem;
}

.section-title h2 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 24px;
}

.section-title p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.section-subtitle {
    font-size: 1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* design for section */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
        padding: 10px 20px;
    }
}

/* for this project */

.custombutton {
    background: var(--text-color) !important;
}
.custombutton:hover {
    background: var(--secondary) !important;
    border: 1px solid var(--bg-color) !important;
    color: var(--black-off) !important;
}

.customcard {
    position: relative;
    border-radius: 0.3rem;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.08);
    transition: transform 0.45s ease, box-shadow 0.45s ease,
        border-radius 0.45s ease;
    will-change: transform, box-shadow, border-radius;
    cursor: pointer; /* better UX */
}

.customcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(16, 24, 40, 0.14);
    border-bottom-right-radius: 24%;
}

.offercard-image {
    position: relative;
    width: 100%;
    height: 100%; /* Make sure it fills card */
    overflow: hidden; /* clip corners */
    will-change: border-radius;
}

.offercard-image img {
    width: 100%;
    height: 400px !important;
    object-fit: cover;
    display: block;
    border-bottom-left-radius: 0;
    transition: transform 1.1s cubic-bezier(0.22, 0.61, 0.36, 1),
        border-bottom-left-radius 0.45s ease;
    will-change: transform, border-radius;
}

.custombg {
    background: var(--bg-color);
}
.btn-outline-light:hover {
    background: black !important;
    color: var(--black-off) !important;
    border: 1px solid var(--black-off);
}


 .cta-button {
    background: var(--bs-orange) !important;
    color: #fff !important;
    font-weight: 600 !important;
    border: none !important;
    border-radius: 30px !important;
    padding: 12px 30px !important;
    transition: background-color 0.3s !important;
  }

  .cta-button:hover {
    background: var(--text-color) !important;
    color: var(--white) !important;
  }
 /* //each hero section overlay */
  .herosectionoverlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 400px;
            background-color: rgba(0, 0, 0, 0.2);
            /* Equivalent to opacity-60 */
            z-index: 0.6;
            /* Make sure it's behind the text */
        }
         .content-topheading{
            color: var(--bs-orange);

         }
        .content-heading{
            color: var(--text-color);
            text-decoration: capitalize;;

        }
          .content-heading:hover{
            color: var(--bs-orange) !important;

        }

        .content-button {
            color: var(--text-color) ;

        }
          .content-button:hover{
            color: var(--bs-orange) !important;
        }
        .iconsimg{
            height:44px;

        }

        .card-bg {
      background: linear-gradient(to bottom, #fff, #fffbe6);
      transition: transform 0.3s;
    }

      .expercircle{
        background: var(--bs-orange);
      }

  @media (max-width: 576px) {
    .expercircle {
      width: 120px !important;
      height: 120px !important;
      bottom: 30px !important;
      left: 0px !important;
    }

    .expercircle div:first-child {
      font-size: 24px !important;
    }

    .expercircle div:last-child {
      font-size: 12px !important;
    }
  }



    .icon-circle {
      width: 80px;
      height: 80px;
      background-color: #ff8c22;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      color: #fff;
      margin: 0 auto 1rem;
    }

    

    .card-bg:hover {
      transform: translateY(-10px);
    }

    .section-overlap {
      margin-top: -100px;
      position: relative;
      z-index: 10;
    }

.service-card {
  position: relative;
  border-radius: 0.3rem;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.08);
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    border-radius 0.45s ease;
  will-change: transform, box-shadow, border-radius;
  cursor: pointer;
  width:300px !important;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(16, 24, 40, 0.14);
  border-bottom-right-radius: 24%;
}

.service-image {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  will-change: border-radius;
}

.service-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
  border-bottom-left-radius: 0;
  transition:
    transform 1.1s cubic-bezier(0.22, 0.61, 0.36, 1),
    border-bottom-left-radius 0.45s ease;
  will-change: transform, border-radius;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
  border-bottom-right-radius: 24%;
}

.service-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  color: #0f172a;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.service-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.25rem 1.25rem;
  color: #ffffff;
  transform: translateY(10px);
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.6s ease;
}

.service-content::before {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    content: "";
    opacity: 0.6;
    z-index: -1;
    border-radius: 0.3rem;
    background: var(--primary);
}

.service-card:hover .service-content {
  transform: translateY(0);
}

.contenttitle {
  margin: 0 0 0.25rem 0;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.3;
}

.contentdesc {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .service-image {
    height: 240px;
  }
}

.slider-wrapper {
  overflow: hidden;
  width: 100%;
  margin-top: 2rem;
}

.slider-track {
  display: flex;
  gap: 1rem;
  animation: scroll-left 40s linear infinite;
  width: max-content;
}

.slider-track > .col-md-3 {
  flex: 0 0 25%;
  max-width: 25%;
  box-sizing: border-box;
}

.tarveloffer {
  margin-top: 0px !important;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}



/* about pgae */

    /* ========== Global ========== */
        .highlighted {
            color: var(--primary);
            position: relative;
        }

        .highlighted::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 4px;
            background: var(--primary);
            left: 0;
            bottom: -6px;
            border-radius: 2px;
        }

        .tname {
            font-size: 1.5rem;
            color: #222;
            text-transform: capitalize;
        }






        /* ========== Mission Section ========== */
        .mission-card {
            background-color: #fff;
            border-left: 4px solid var(--primary);
            border-radius: 8px;
            transition: all 0.3s ease;
            min-height: 30vh;
        }

        .mission-card:hover {
            background-color: #f0f8ff;
            box-shadow: 0 8px 16px rgba(0, 123, 255, 0.1);
        }

        /* ========== CEO Typing ========== */
        #typing-text {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #555;
        }

        /* ========== Directors Section ========== */
        .directors-section {
            background-color: #f7f9fc;
        }

        .directors-title {
            font-size: 2.5rem;

        }

        .directors-description {
            font-size: 1rem;
            line-height: 1.7;
            color: #666;
        }

        .director-card {
            transition: transform 0.1s ease;

        }

        .director-card:hover {
            transform: translateY(0px);
        }

        .director-image-wrapper {
            position: relative;


        }

        .director-image-wrapper img {
            width: 100%;
            object-fit: cover;
            height: 50vh;
        }

        .badge-custom {
            position: absolute;
            padding: 12px;
            font-size: 0.75rem;
            border-radius: 20px;
            animation: popUp 0.6s ease-in-out;
            width: 150px;
            height: 5vh;
        }

        .badge-role {
            bottom: -10px;
            left: -10px;
            background-color: #ffc107;
            color: #212529;
            transform: rotate(-5deg);
        }

        .badge-position {
            bottom: -10px;
            right: -10px;
            background-color: #dc3545;
            color: white;
            transform: rotate(5deg);
        }

        @keyframes popUp {
            from {
                opacity: 0;
                transform: translateY(20px) scale(0.9);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* ========== Team Section ========== */
        .teammember-section {
            background-color: #f9f9f9;
            transform: translateY(200px);
            transition: opacity 1.6s ease-out, transform 1.6s ease-out;
        }

        .teammember-section.visible {
            opacity: 1;
            transform: translateY(0);
        }






        .team-card {
            border: 1px solid #eee;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .team-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .team-details {
            display: flex;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .team-details .badge {
            padding: 6px 12px;
            font-size: 0.85rem;
            font-weight: 500;
            border-radius: 20px;
        }




        /* festival page */

        


/* general offer  */

.card-title-clamp{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;min-height:3.2rem}
.subtitle-clamp{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;min-height:3rem}
.content-clamp{display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;}
.meta-row{min-height:1.25rem}
.price-slot{min-height:3.25rem}


/* group */


.group-card{
    height: 500px;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    transition: 0.3s ease;
}

.group-card:hover{
    transform: translateY(-6px);
}

.group-card .location-badge{
  background:#243447;
  color:#fff;
  padding:10px 18px;
  border-radius:50px;
  font-size:14px;
}

.group-card .price-badge{
  background:#f57c00;
  color:#fff;
  padding:10px 18px;
  border-radius:50px;
  font-size:14px;
  font-weight:600;
}

.group-overlay{
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0));
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.group-title-clamp{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.group-content-clamp{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

 /* whyuis */
.why-usimage {
        height:60vh;
        width: 100%;
        object-fit: cover;
    }



    /* festival page */
     .festival-card {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        height: 500px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .festival-card img {
        width: 100%;
        height: 500px;
        object-fit: cover;
    }

    .festival-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 25px;
        background: linear-gradient(transparent, rgba(0,0,0,0.9));
        color: #fff;
        z-index: 2;
      pointer-events: none; /* allow underlying elements to receive events, enable button explicitly */
    }

    /* Ensure overlay children don't intercept clicks; enable only the button to receive them */
    .festival-overlay :not(.festival-btn) {
      pointer-events: none;
    }

    /* Allow content layout but don't let text intercept clicks */
    .festival-content {
      position: relative;
      pointer-events: none;
    }
    .festival-content .festival-btn {
      pointer-events: auto;
    }

    .festival-overlay h5 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .festival-overlay p {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 14px;
    }

    .festival-btn {
        display: inline-block;
        padding: 8px 22px;
        background: #ffc107;
        color: #000;
        border-radius: 30px;
        font-weight: 600;
        text-decoration: none;
        font-size: 14px;
      pointer-events: auto; /* ensure button is clickable even when overlay blocks clicks */
      position: relative;
      z-index: 5;
    }

    /* Make the festival button visually consistent and easy to tap */
    .festival-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 24px;
      border-radius: 30px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    }

    .festival-btn:hover {
        background: #ffb300;
        color: #000;
    }


/* destination */
dest-grid{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
}

/* Offer overlay click handling */
.offer-overlay {
  pointer-events: none; /* allow underlying elements to receive events */
}
.offer-overlay :not(.generaloffer-btn) {
  pointer-events: none;
}
.offer-content { pointer-events: none; }
.generaloffer-btn { pointer-events: auto; position: relative; z-index: 5; }

/* CARD */
.dest-card{
    width:32%;
    height:420px;
    border-radius:12px;
    overflow:hidden;
    position:relative;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

/* IMAGE */
.dest-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* OVERLAY (BOTTOM ONLY) */
.dest-overlay{
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    padding:25px;
    background:linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.05));
    color:#fff;
    z-index:2;
    pointer-events: none; /* IMPORTANT - allows button click */
}

/* TITLE */
.dest-title{
    font-size:20px;
    font-weight:700;
    margin-bottom:10px;
}

/* DESCRIPTION */
.dest-desc{
    font-size:14px;
    line-height:1.6;
    margin-bottom:15px;
}

/* BUTTON */
.dest-btn{
    display:inline-block;
    padding:8px 20px;
    background:#fff;
    color:#000;
    text-decoration:none;
    border-radius:25px;
    font-size:14px;
    font-weight:600;
    position:relative;
    z-index:5;
    pointer-events: auto; /* IMPORTANT - clickable */
    transition:0.3s;
}

.dest-btn:hover{
    background:#000;
    color:#fff;
}

/* RESPONSIVE */
@media(max-width:992px){
    .dest-card{width:48%;}
}
@media(max-width:576px){
    .dest-card{width:100%;}
}



.item .col-md-10 {
    position: relative;
    overflow: hidden;
    /* To keep everything inside the card */
    background: linear-gradient(to top, #F2F2FF 0%, #E6E6FF 40%, #FAFAFA 100%);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    /* Smooth transition */
    padding: 24px 2px;
    min-height: 40vh;
    }


     .gallery_image{
            height:400px;
            width: 400px;
        }


        @media (max-width: 768px) {
            .floating-pricing-box {
                position: static !important;
                width: 100% !important;
                margin-top: 1rem;
            }
        }




        .lang-card{
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    color: white ;
}

.lang-overlay{
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.0));
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Ensure lang-overlay doesn't block clicks; only .couple-btn should receive pointer events */
.lang-overlay {
  pointer-events: none;
}
.lang-overlay :not(.couple-btn) {
  pointer-events: none;
}
.lang-overlay .couple-btn {
  pointer-events: auto;
  position: relative;
  z-index: 5;
}

.lang-card:hover{
    transform: translateY(-6px);
    transition: 0.3s ease;
}


.promo-card {
    position: relative;
    height: 500px;
    border-radius: 18px;
    overflow: hidden;
    color: #fff;
}

.promo-card img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 15%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.promo-content h4 {
    font-size: 24px;
    font-weight: 700;
}

.promo-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-top: 6px;
    max-width: 90%;
}

.promo-btn {
    margin-top: 12px;
    background: #fff;
    color: #000;
    padding: 8px 22px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    transition: 0.3s;
}

.promo-btn:hover {
    background: #000;
    color: #fff;
}

.promo-card .location-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0,0,0,0.7);
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 20px;
}

.price-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #ff7a00;
    padding: 5px 12px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
}

.procurement-check {
    width: 30px;
    height: 100%;
    background-color: #2f8b45;
    border-radius: 50%;
    color: white;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid black;
    flex-shrink: 0;
  }
  .procurement-question {
    border-left: 2px solid #2f8b45;
    padding-left: 1rem;
    color: #2f8b45;
    font-weight: 700;
    font-size: 1.1rem;
  }
  .procurement-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    background-color: #f5f6f5;
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
    padding: 0;
  }
  .procurement-content.active {
    max-height: 1000px;
    opacity: 1;
    padding: 2rem 0;
  }
  .procurement-header {
    background-color: white;
    padding:2rem 1rem;
    cursor: pointer;
  }



/* Updated styles for the blogs cards */
.whyus {
  background-color: #f5f5f5;
}

.blogs-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.08);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.blogs-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(16, 24, 40, 0.14);
}

.blogs-image {
  position: relative;
}

.blogs-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 1.1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.blogs-card:hover .blogs-image img {
  transform: scale(1.05);
}

.blogs-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(2, 6, 23, 0.85) 0%,
    rgba(2, 6, 23, 0.5) 45%,
    rgba(2, 6, 23, 0.0) 75%
  );
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.blogs-card:hover .blogs-image::after {
  opacity: 0.95;
}

.blogs-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  color: #0f172a;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.blogs-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.25rem 1.25rem;
  color: #ffffff;
  transform: translateY(10px);
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.6s ease;
}

.blogs-card:hover .blogs-content {
  transform: translateY(0);
}

.blogs-title {
  margin: 0 0 0.25rem 0;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.3;
}

.blogs-desc {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blogs-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #0f172a;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.blogs-cta:hover {
  background-color: #ffffff;
}

.blogs-cta .arrow {
  transition: transform 0.3s ease;
}

.blogs-cta:hover .arrow {
  transform: translateX(2px);
}

.btn-primary {
  background-color: #f26522;
  border-color: #f26522;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #d4571e;
  border-color: #d4571e;
}

/* Reveal-up effect (unified) */
.reveal-up, .reveal-ups {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.8s ease-out;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity;
}

.reveal-up.is-visible, .reveal-ups.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up, .reveal-ups {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 768px) {
  .blogs-image img { height: 240px; }
}



  .object-fit-cover {
    object-fit: cover;
  }

  .play-button {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .play-button:hover { transform: scale(1.06); box-shadow: 0 10px 20px rgba(0,0,0,.25); }
   .custom-section-height {
    height: 650px;
  }
  .rightcol {
    background:var(--primary);
  }
  .forpadding{
    padding-top:50px;
  }
  /* avoid horizontal scroll on small screens */
  section.bg-light { overflow-x: hidden; }

  @media (max-width: 767px) {
    .custom-section-height { height: auto; } /* let content define height on mobile */
    .forpadding { padding-top: 24px; }       /* reduce padding */
    .rightcol { padding-left: 1.25rem; padding-right: 1.25rem; } /* softer side padding */
    /* ensure reveal animations don't create horizontal overflow */
    .reveal-left, .reveal-right { transform: none; }
  }
  /* Reveal animations */
  .reveal-left, .reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .7s ease-out, transform .7s ease-out;
    will-change: opacity, transform;
  }
  .reveal-left { transform: translateX(-40px); }
  .reveal-left.in-view, .reveal-right.in-view { opacity: 1; transform: translateX(0); }
  @media (prefers-reduced-motion: reduce) {
    .reveal-left, .reveal-right { opacity: 1; transform: none; transition: none; }
  }


  .registration-container {
        max-width: 600px;
        margin: 0 auto;
        background-color: white;
        padding: 30px;
        border-radius: 15px;
    }

    .step-indicator {
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
        gap: 15px;
    }

    .step {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background: #ddd;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 14px;
    }

    .step.active {
        background: var(--primary);
        color: white;
    }

    .form-step {
        display: none;
    }

    .form-step.active {
        display: block;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .registration-container label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: var(--primary);
    }

    .registration-container input,
    .registration-container select {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 16px;
        box-sizing: border-box;
    }

    .registration-container select {
        appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 10px center;
        background-size: 20px;
    }

    .time-options {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 10px;
        margin-top: 15px;
    }

    .time-option {
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 8px;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s;
    }

    .time-option.selected {
        background-color: var(--primary);
        color: white;
        border-color: var(--primary);
    }

    .button-group {
        display: flex;
        justify-content: space-between;
        margin-top: 30px;
        gap: 15px;
    }

    .registration-container .btn {
        padding: 12px 25px;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        flex: 1;
        opacity: 1 !important;
        display: inline-block !important;
        visibility: visible !important;
    }

    .btn-continue {
        background-color: var(--primary);
        color: white;
        border: none;
   
    }

    .btn-continue:hover {
    
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        opacity: 1 !important;
        color: var(--primary);
    }


    .btn-back {
        background-color: white;
        color: var(--primary);
        border: 1px solid var(--primary);
    }

    .btn-back:hover {

        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        opacity: 1 !important;
    }

    .success-message {
        text-align: center;
        padding: 40px;
        display: none;
    }

    .success-message h2 {
        color: var(--primary);
        margin-bottom: 20px;
    }

    
.testimonial-carousel .slick-slide {
  max-height:68vh !important;
}
    @media (max-width: 768px) {
  .testimonial-carousel .slick-slide {
    padding: 10px;
  }
  .testimonial-carousel .bg-white {
    padding: 20px;
  }
  .heading {
    font-size: 1.8rem;
  }
  .extralarger {
    font-size: 1rem;
  }
}


 
  .main-heading {
    font-weight: 700;
    font-size: 2.5rem;
  }

  .feature-icon {
    font-size: 2.5rem;
    color: #f26522;
    margin-bottom: 10px;
  }

  .feature-title {
    font-size: 1.1rem;
    font-weight: 400;
    width: 100%;
  }


  .service-img {
    width: 100%;
    height:80vh;
    object-fit: cover;

  }

  /* Stagger up reveal */
  .stagger-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease-out, transform .6s ease-out;
    will-change: opacity, transform;
  }
  .stagger-up.in-view {
    opacity: 1;
    transform: translateY(0);
  }
  .delay-1 { transition-delay: .05s; }
  .delay-2 { transition-delay: .10s; }
  .delay-3 { transition-delay: .15s; }
  .delay-4 { transition-delay: .20s; }
  .delay-5 { transition-delay: .25s; }
  .delay-6 { transition-delay: .30s; }
  .delay-7 { transition-delay: .35s; }

  @media (max-width: 768px) {
    .main-heading {
      font-size: 2rem;
    }

    .feature-title {
      font-size: 1rem;
    }

    .feature-icon {
      font-size: 2rem;
    }
     .controlwidth{
    width:279px !important;
  }
  /* reduce motion on small screens */
  .stagger-up { opacity: 1; transform: none; transition: none; }
  }

  .gallery-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 0.3;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-header h1 {
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-header .xs-text {
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

.gallery-wrapper {
  position: relative;
}

.gallery-masonry {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
}

.gallery-item {
  width: calc(33.333% - 20px);
  margin: 10px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  transform-origin: center;
  transition: all 0.4s ease;
}

.gallery-item:nth-child(3n+1) {
  transform: rotate(-1deg);
}

.gallery-item:nth-child(3n+2) {
  transform: rotate(1deg);
}

.gallery-item:nth-child(3n+3) {
  transform: rotate(-0.5deg);
}

.gallery-item:hover {
  transform: rotate(0) scale(1.02);
  z-index: 2;
}

.gallery-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: all 0.4s ease;
}

.gallery-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.view-btn {
  color: white;
  font-size: 14px;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}

.view-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: white;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-content {
  transform: translateY(0);
}

.gallery-item:hover .view-btn::after {
  transform: scaleX(1);
  transform-origin: left;
}

@media (max-width: 991px) {
  .gallery-item {
    width: calc(50% - 20px);
  }
}

@media (max-width: 576px) {
  .gallery-item {
    width: calc(100% - 20px);
  }
  
  .gallery-section {
    padding: 60px 0;
  }
}


  .coupbg {
    background-color: #00264d;
    overflow-x: hidden; /* prevent horizontal scroll on mobile */
  }

  .custom-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #ff8c1a;
  }

  .custom-subtext {
    color: #dcdcdc;
    font-size: 1rem;
    line-height: 1.6;
  }

  .custom-overlay-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
  }

  .custom-overlay-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
  }

  .custom-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 30%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    /* start from bottom */
    opacity: 0;
    padding: 20px;
    color: white;
    border-radius: 10px;
    transform: translateY(100%);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
    /* prevents button from being clickable when hidden */
  }

  .custom-overlay-container:hover .custom-overlay {
    opacity: 1;
    transform: translateY(0);
    /* move from bottom to center */
    justify-content: center;
    /* center vertically on hover */
    pointer-events: auto;
    /* enable clicking */
  }

  .overlay-text {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 12px;
    text-align: center;
  }

  .overlay-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 10px 20px;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .overlay-btn:hover {
    background-color: white;
    color: #00264d;
  }

  @media (max-width: 767px) {
    .custom-heading {
      font-size: 1.5rem;
    }

    .overlay-text {
      font-size: 1.3rem;
    }

    .custom-overlay-container img {
      height: 260px; /* slightly smaller on mobile to reduce vertical scroll */
    }

    /* tighten spacing to reduce vertical scroll on small screens */
    .coupbg {
      padding-top: 1rem !important;
      padding-bottom: 1rem !important;
    }

    /* ensure reveal animations don't cause horizontal overflow */
    .reveal-left, .reveal-right {
      transform: none;
    }
  }

  /* Scroll reveal: move from two sides */
  .reveal-left,
  .reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    will-change: opacity, transform;
  }
  .reveal-left { transform: translateX(-40px); }
  .reveal-left.in-view,
  .reveal-right.in-view {
    opacity: 1;
    transform: translateX(0);
  }
  @media (prefers-reduced-motion: reduce) {
    .reveal-left,
    .reveal-right {
      opacity: 1;
      transform: none;
      transition: none;
    }
  }


  .blog-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.08);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(16, 24, 40, 0.14);
}

.blog-image {
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 1.1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(2, 6, 23, 0.85) 0%,
    rgba(2, 6, 23, 0.5) 45%,
    rgba(2, 6, 23, 0.0) 75%
  );
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.blog-card:hover .blog-image::after {
  opacity: 0.95;
}

.blog-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  color: #0f172a;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.blog-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.25rem 1.25rem;
  color: #ffffff;
  transform: translateY(10px);
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.6s ease;
}

.blog-card:hover .blog-content {
  transform: translateY(0);
}

.blog-title {
  margin: 0 0 0.25rem 0;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.3;
}

.blog-desc {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #0f172a;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.blog-cta:hover {
  background-color: #ffffff;
}

.blog-cta .arrow {
  transition: transform 0.3s ease;
}

.blog-cta:hover .arrow {
  transform: translateX(2px);
}


@media (max-width: 768px) {
  .blog-image img { height: 240px; }
}



 .hero-section {
    position: relative;
    height: 120vh; /* Your height preference */
    background: rgb(0, 0, 0,);
  }

  .carousel-item {
    height: 120vh;
    position: relative;
  }

  .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomEffect 20s ease-in-out infinite;
  }

  @keyframes zoomEffect {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }

  .hero-content h1.outline {
    font-size: 5rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .hero-content .solid {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    margin-top: -1rem;
  }

  .hero-content .btn 
  { padding: 0.75rem 2rem; border-radius: 50px; font-weight: 600; }
  @media (max-width: 768px) {
    .hero-content h1.outline {
      font-size:3rem;
    }
    .hero-content .solid {
      font-size:3rem;
    }
    .hero-content {
      left: 0 !important;           /* move to left */
      transform: translate(0, -50%) !important; /* remove horizontal centering */
      text-align: left !important;  /* align text to left */
      padding-left: 1rem;           /* optional */
    }
    .hero-content .lead{
      font-size:1.1rem;
    }
  }

  .footer-section {
    background: #0c2544;
    color: #e0e0e0;
    font-family: 'Segoe UI', sans-serif;
    padding: 50px 0 20px;
}

.footer-section h5 {
    color:var(--bs-orange);
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 60px;
    filter: brightness(0) invert(1);
}

.footer-menu a {
    color: #e0e0e0;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #ffffff;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    background: #152d56;
    color: #f26522;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background:var(--bs-orange);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(242, 101, 34, 0.7);
}

.footer-bottom {
    border-top: 1px solid #2c3e50;
    margin-top: 30px;
    padding-top: 15px;
    font-size: 14px;
    text-align: center;
}




   .text-warning{
    color: var(--bs-orange) !important;;
  }


   /* Left checklist */
    .trust-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: 1fr;
      gap: 8px 16px;
    }

    .trust-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #374151;
    }

    .trust-list .check {
      display: inline-flex;
      width: 22px;
      height: 22px;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      background: #e7f5ec;
      color: #1f7a4c;
      font-weight: 800;
      font-size: 13px;
    }

    /* KPI cards */
    .kpi-card {
      position: relative;
      border-radius: 16px;
      padding: 20px 18px;
      color: #ffffff;
      box-shadow: 0 10px 24px rgba(16, 24, 40, 0.12);
      transition: transform 0.45s ease, box-shadow 0.45s ease;
      overflow: hidden;
      isolation: isolate;
    }

    .kpi-card::after {
      content: "";
      position: absolute;
      inset: -20% -10% auto auto;
      width: 160px;
      height: 160px;
      border-radius: 50%;
      background: radial-gradient(circle at center, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0) 60%);
      transform: translate(20%, -20%);
      pointer-events: none;
      opacity: 0.35;
    }

    .kpi-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 32px rgba(16, 24, 40, 0.18);
    }

    .kpi-emoji {
      position: absolute;
      top: 10px;
      right: 12px;
      font-size: 20px;
      opacity: 0.35;
      filter: grayscale(0.1);
    }

    .kpi-orange {
      background: linear-gradient(135deg, #ff8a3d 0%, #f26522 60%, #b24110 100%);
    }

    .kpi-yellow {
      background: linear-gradient(135deg, #fff3b0 0%, #ffd166 60%, #b08c11 100%);
      color: #1f2937;
    }

    .kpi-gray {
      background: linear-gradient(135deg, #c7c7c7 0%, #6c6c6c 60%, #3c3c3c 100%);
    }

    .kpi-value {
      font-weight: 800;
      font-size: 36px;
      line-height: 1;
      letter-spacing: -0.5px;
      margin-bottom: 8px;
    }

    .kpi-yellow .kpi-value {
      color: #0f172a;
    }

    .kpi-suffix {
      margin-left: 2px;
      opacity: 0.9;
    }

    .kpi-label {
      font-size: 13px;
      opacity: 0.9;
      letter-spacing: 0.3px;
      text-transform: uppercase;
      font-weight: 700;
    }

    .kpi-progress {
      position: relative;
      width: 100%;
      height: 6px;
      border-radius: 999px;
      margin-top: 10px;
      background: rgba(255, 255, 255, 0.25);
      overflow: hidden;
    }

    .kpi-progress-bar {
      height: 100%;
      width: 0%;
      background: #ffffff;
      border-radius: 999px;
      transition: width 1.2s ease-out;
    }

    .kpi-yellow .kpi-progress {
      background: rgba(17, 24, 39, 0.15);
    }

    .kpi-yellow .kpi-progress-bar {
      background: #0f172a;
    }

    

    /* KPI grid layout */
    .kpi-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      grid-template-rows: 1fr 1fr;
      gap: 14px;
    }

    .kpi-card--primary {
      grid-row: 1 / span 2;
      grid-column: 1;
      min-height: 210px;
    }

    .kpi-card--secondary {
      grid-column: 2;
      min-height: 100px;
    }

    @media (max-width: 992px) {
      .kpi-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
      }

      .kpi-card--primary {
        grid-row: auto;
        grid-column: auto;
      }

      .kpi-card--secondary {
        grid-column: auto;
      }
    }


     .bordergreen {
        background: transparent;
        border: 2px solid var(--primary);
        transition: background 0.9s ease, color 0.3s ease;
      }

      .bordergreen:hover {
        background: #448c4c;
        color: white;
      }


       
        .main-heading {
            font-weight: 700;
            font-size: 2.5rem;
        }

        .feature-icon {
            font-size: 2.5rem;
            color: #f26522;
            margin-bottom: 10px;
        }

        .feature-title {
            font-size: 1.1rem;
            font-weight: 400;
            width: 100%;
        }


        .service-img {
            width: 100%;
            height: 80vh;
            object-fit: cover;

        }

        @media (max-width: 768px) {
            .main-heading {
                font-size: 2rem;
            }

            .feature-title {
                font-size: 1rem;
            }

            .feature-icon {
                font-size: 2rem;
            }
        }


           .contactsection {
            background-image: url("{{ asset('image/destin.jpg') }}");
            position: relative;
            background-color: #f8f9fa;
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            background-attachment: fixed;
            min-height: 80vh;
            overflow: hidden;
        }

        .text-warning {
            color: var(--bs-orange) !important;
            ;
        }

        /* Remove background & border */
        .custom-accordion-button {
            background-color: transparent;
            box-shadow: none;
            color: #000;
            font-weight: 600;
            padding: 1rem 0;
            transition: color 0.3s ease;
        }

        /* Change text color when open */
        .custom-accordion-button:not(.collapsed) {
            color: #f7941d;

        }

        /* Replace default caret with plus */
        .custom-accordion-button::after {
            content: '+';
            font-size: 1.5rem;
            transform: none;
            background-image: none !important;
            margin-left: auto;
            transition: transform 0.3s ease;
            bottom: none;
        }

        /* Change plus to minus when expanded */
        .custom-accordion-button:not(.collapsed)::after {
            content: '−';
            /* Unicode minus */
            color: #f7941d;
        }

        .addbg {
            background: var(--white);
        }
     .bordergreen {
        background: transparent;
        border: 2px solid var(--primary);
        transition: background 0.9s ease, color 0.3s ease;
      }
      .bordergreen:hover {
        background: #448c4c;
        color: white;
      }



      .ascent-flow .circle-img {
    position: relative;
    display: inline-block;
    background: radial-gradient(circle at center, #fff 50%, #f8dcdc 51%);
    border-radius: 50%;
    padding: 10px;
    border: 2px dashed #b40000;
    width: 220px;
    height: 220px;
    overflow: hidden;
}

.ascent-flow .circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.central-logo img {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.label-tag {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    background: #b40000;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.label-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -12px;
    width: 6px;
    height: 6px;
    background: #b40000;
    border-radius: 50%;
    transform: translateY(-50%);
    animation: pulse 1s infinite;
}

.label-info {
    position: absolute;
    top: -10px;
    left: 0;
    background: #fff;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 500;
    color: #b40000;
    border: 1px dashed #b40000;
    border-radius: 20px;
}

.flow-caption {
    font-weight: 600;
    font-size: 18px;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
    100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
    .central-logo img {
        width: 150px;
        height: 150px;
    }
    .ascent-flow .circle-img {
        width: 160px;
        height: 160px;
    }
    .label-tag {
        font-size: 12px;
        padding: 4px 10px;
    }
}


.content-body p {
        line-height: 1.9;
        font-size: 1.05rem;
        color: #555;
        margin-bottom: 1rem;
    }
    .scrollable-content {
        height:100vh;
        overflow-y: auto;
        padding-right: 0.25rem;
    }
    .asidebar li {
        border-bottom: 1px dashed #e9ecef;
    }
    .asidebar li:last-child {
        border-bottom: none;
    }
    .asidebar a {
        color: #333;
        transition: color .2s ease, transform .2s ease;
        display: inline-flex;
        align-items: center;
    }
    .asidebar a:hover {
        color: #0d6efd;
        transform: translateX(2px);
    }
    @media (min-width: 768px) {
        .asidebar {
            position: sticky;
            top: 1.5rem;
        }
    }


    .text-orange {
      color: #f26522 !important;
    }

    .bg-orange {
      background: #f26522;

    }


    notification-image img {
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        transition: transform 0.3s ease;
        object-fit: cover;
        max-height: 320px;
        width:500px;
    }

    .notification-image img:hover {
        transform: scale(1.01);
    }

    .modal-content {
        border-radius: 12px;
        box-shadow: 0 12px 40px rgba(0,0,0,0.25);
        border: none;
        overflow: hidden;
    }

    .modal-header {
        background:var(--primary) !important;
        color: #fff;
        padding: 1rem 1.5rem;
        border-bottom: none;
    }

    .modal-header .modal-title {
        font-size: 1.25rem;
        font-weight: 600;
    }

    .modal-body {
        padding: 2rem;
    }

    .modal-footer {
        padding: 1rem 1.5rem;
        border-top: none;
    }

    .btn-close-white {
        filter: brightness(0) invert(1);
    }

    .notification-content h6 {
        font-size: 0.875rem;
        color: #6c757d;
        font-weight: 500;
    }

    .notification-content p {
        font-size: 1rem;
        color: #333;
        margin-bottom: 0;
    }

    @media (max-width: 576px) {
        .modal-body {
            padding: 1.25rem;
        }

        .notification-image img {
            max-height: 240px;
        }

        .modal-header, .modal-footer {
            padding: 1rem;
        }

        .modal-title {
            font-size: 1rem;
        }
    }



     .hover-shadow:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-2px);
    transition: all 0.3s ease-in-out;
}

.transition {
    transition: all 0.3s ease-in-out;
}
.productimage{
    height:60px !important;;
    width:100% !important;
    object-fit: cover;
}
@media (min-width: 992px) {
    .position-sticky {
        position: sticky !important;
    }
}

   .content-body p {
            line-height: 1.9;
            font-size: 1.05rem;
            color: #555;
            margin-bottom: 1rem;
        }
        .scrollable-content {
            height: 100vh;
            overflow-y: auto;
            padding-right: 0.25rem;
        }
        .asidebar li {
            border-bottom: 1px dashed #e9ecef;
        }
        .asidebar li:last-child {
            border-bottom: none;
        }
        .asidebar a {
            color: #333;
            transition: color .2s ease, transform .2s ease;
            display: inline-flex;
            align-items: center;
        }
        .asidebar a:hover {
            color: #0d6efd;
            transform: translateX(2px);
        }
        @media (min-width: 768px) {
            .asidebar {
                position: sticky;
                top: 1.5rem;
            }
        }



        .hero {
    position: relative;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-title {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.event-meta {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.event-content {
    line-height: 1.8;
    font-size: 1.1rem;
}

.event-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

.related-event {
    transition: transform 0.2s, box-shadow 0.2s;
}

.related-event:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.card {
    border: none;
    border-radius: 12px;
}

.card-header {
    border-radius: 12px 12px 0 0 !important;
    border: none;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .event-content {
        font-size: 1rem;
    }
}



/* GRID */
.dest-grid{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
}

/* CARD */
.dest-card{
    width:32%;
    height:420px;
    border-radius:12px;
    overflow:hidden;
    position:relative;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

/* IMAGE */
.dest-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* OVERLAY (BOTTOM ONLY) */
.dest-overlay{
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    padding:25px;
    background:linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.05));
    color:#fff;
    z-index:2;
    pointer-events: none; /* IMPORTANT - allows button click */
}

/* TITLE */
.dest-title{
    font-size:20px;
    font-weight:700;
    margin-bottom:10px;
}

/* DESCRIPTION */
.dest-desc{
    font-size:14px;
    line-height:1.6;
    margin-bottom:15px;
}

/* BUTTON */
.dest-btn{
    display:inline-block;
    padding:8px 20px;
    background:#fff;
    color:#000;
    text-decoration:none;
    border-radius:25px;
    font-size:14px;
    font-weight:600;
    position:relative;
    z-index:5;
    pointer-events: auto; /* IMPORTANT - clickable */
    transition:0.3s;
}

.dest-btn:hover{
    background:#000;
    color:#fff;
}

/* RESPONSIVE */
@media(max-width:992px){
    .dest-card{width:48%;}
}
@media(max-width:576px){
    .dest-card{width:100%;}
}