.letters-loading{
    color: rgb(0, 199, 43) !important;
}

.banner-content-text{
    width: 40%;
    position: absolute;
    top: 120px;
    text-align: left;
    color: white;
}

.banner-content-text-btn{
    padding: 8px 10px;
    background: white;
    width: 150px;
    text-align: center;
    border-radius: 20px;
    position: relative;
    color: black;
}
.banner-content-text-btn::before{
    position: absolute;
    left: 10px;
    top: 15px;
    content: '';
    width: 10px;
    height: 10px;
    background-color: rgb(2, 206, 19);
    border-radius: 50%;
}
.banner-content-text-btn::after{
    position: absolute;
    left: 10px;
    top: 15px;
    content: '';
    width: 10px;
    height: 10px;
    background-color: rgba(2, 206, 19, 0);
    border: 1px solid rgb(2, 206, 19);
    border-radius: 50%;
    animation:spot 2s infinite linear;
}
@keyframes spot {
    0%{
transform: scale(1);
        border: 1px solid rgb(2, 206, 19);
    }
    100%{
        transform: scale(3.5);
        border: 1px solid rgba(2, 206, 19, 0.103);
    }
}

.banner-content-text-title{
margin: 10px 0px;
}
.banner-content-text-desc{
color: rgb(231, 231, 231);
}


/* form */
.travel-form {
    width: 100%;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    max-width: 350px;
    position: absolute;
    right: 10px;
    top: 50px;
}

.tf-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.tf-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.tf-tab {
    flex: 1;
    padding: 10px 0;
    background: #f5f5f5;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.tf-tab.active {
    background: #000;
    color: #fff;
}

.tf-form .tf-group {
    margin-bottom: 20px;
}

.tf-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    text-align: left;
    font-weight: 600;
}

.tf-input {
    position: relative;
    width: 100%;
    text-align: left;
}

.tf-input input,
.tf-input select {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 14px;
    outline: none;
    background: #fafafa;
}

.tf-input.icon-left i {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    font-size: 16px;
    color: #888;
}

.tf-input.select i {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    font-size: 14px;
}

.tf-row {
    display: flex;
    gap: 15px;
}

.tf-btn {
    width: 100%;
    padding: 14px 0;
    background: #000;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.2s ease;
}

.tf-btn:hover {
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 500px) {
    .tf-row {
        flex-direction: column;
    }
}

/* form */


/* footer */
/* footer */
/* FOOTER MAIN */
.bromo-footer {
    width: 100%;
    background: #111;
    color: #fff;
    padding: 50px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    margin-top: 70px;
}

/* TOP SECTION */
.bf-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.bf-title {
    font-size: 30px;
    font-weight: 800;
}

.bf-subtitle {
    color: #aaa;
    margin-top: 5px;
}

/* SUBSCRIBE */
.bf-subscribe-box {
    display: flex;
    background: #222;
    padding: 5px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    gap: 10px;
}

.bf-input {
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    outline: none;
    width: 220px;
    color: #fff;
    background: transparent;
}

.bf-btn {
    padding: 10px 25px;
    border-radius: 25px;
    background: #fff;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

/* DIVIDER */
.bf-divider {
    border: none;
    height: 1px;
    background: #333;
    margin: 40px 0;
}

/* CONTENT GRID */
.bf-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.bf-logo {
    width: 170px;
    margin-bottom: 15px;
    border-radius: 20px;
}

.bf-desc {
    color: #bbb;
    line-height: 1.6;
}

.bf-more {
    display: inline-block;
    margin-top: 10px;
    color: #fff;
    font-weight: 600;
}

.bf-socials {
    margin: 20px 0;
}

.bf-socials a {
    margin-right: 12px;
    color: #fff;
    background: #222;
    padding: 5px 5px;
    border-radius: 48%;
    display: inline-block;
    width: 30px;
    height: 30px;
    align-items: center;
    text-align: center;
}

.bf-copy {
    font-size: 13px;
    color: #666;
    margin-top: 20px;
}

/* FOOTER LINKS & HEADERS */
.bf-links h4,
.bf-contact h4,
.bf-legal h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.bf-links a,
.bf-legal a {
    display: block;
    color: #ccc;
    margin-bottom: 8px;
}

.bf-contact p {
    color: #bbb;
    margin-bottom: 6px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .bf-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .bf-content {
        grid-template-columns: 1fr;
    }

    .bf-top {
        text-align: center;
        gap: 20px;
        justify-content: center;
    }

    .bf-subscribe-box {
        width: 100%;
        justify-content: center;
    }
}

/* footer */

/* doc */
/* .trip-steps-section {
    padding: 20px 20px;
    max-width: 1300px;
    margin: auto;
} */
 .trip-steps-section {
    padding: 20px 20px;
    max-width: 1300px;
    margin: auto;
    background: url(https://static.vecteezy.com/system/resources/thumbnails/050/830/794/small/artistic-background-for-studio-portrait-hand-drawn-oil-brushstrokes-retro-backdrop-bright-green-wall-with-noisy-large-texture-gradient-from-light-to-dark-from-top-to-bottom-free-vector.jpg);
    background-size: cover;
    border-radius: 20px;
    margin: 20px auto;
}

.tss-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.tss-left {
    flex: 1;
    padding: 0px 0px 0px 100px;
}

.tss-label {
    text-transform: uppercase;
    color: #777;
    font-weight: 600;
    font-size: 14px;
}

.tss-title {
    font-size: 36px;
    font-weight: 800;
    margin: 10px 0 25px;
}

.tss-title span {
    color: green;
}

.tss-step {
    display: flex;
    gap: 19px;
    margin-bottom: 1px;
    align-items: flex-start;
}



.tss-step h4 {
    margin: 0 0 6px;
    font-size: 18px;
}

.tss-step p {
    color: #424242;
    line-height: 1.5;
    font-size: 12px;
}
/* ICON CIRCLE */
.tss-icon {
    width: 40px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
    font-size: 18px;
    color: #fff;
}

.tss-icon.yellow { background: #f9c74f; }
.tss-icon.orange { background: #f3722c; }
.tss-icon.blue { background: #4cc9f0; }

/* RIGHT SIDE CARD */
.tss-right {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}
.tss-right::after{
    position: absolute;
    content: '';
    z-index: -1;
    width: 400px;
    height: 400px;
    background-image: radial-gradient( rgb(2, 218, 2), rgba(0, 255, 13, 0),rgba(0, 0, 255, 0));
    left: -10px;
    border-radius: 50%;
    animation: bg-green 5s infinite linear;
}
@keyframes bg-green {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(180px, -10px) scale(1.1);
        opacity: 1;
        
    }
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }
}




.tss-card {
    width: 330px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.12);
    overflow: hidden;
    position: relative;
}

.tss-card-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.tss-card-body {
    padding: 20px;
    position: absolute;
    bottom: 0;
    background: linear-gradient( rgba(255, 0, 0, 0), rgba(0, 0, 0, 0.671));
    width: 100%;
}

.tss-card-body h3 {
    color: rgb(255, 255, 255);
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.tss-card-body p {
    color: #777;
    margin: 5px 0 15px;
}

/* ICONS UNDER TITLE */
.tss-card-icons i {
    background: #f4f4f4;
    padding: 10px;
    border-radius: 50%;
    margin-right: 8px;
}

/* People Going */
.tss-going {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tss-going img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

/* TAG CARD */
.tss-tag-box {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.tss-tag-box i {
    color: #ff4f70;
    font-size: 18px;
}

.tss-tag-box span {
    margin-left: auto;
    color: #2d2dff;
    font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .tss-container {
        flex-direction: column;
        text-align: center;
    }

    .tss-step {
        justify-content: center;
    }
}

/* doc */

.featured-destinations {
    padding: 70px 20px;
    max-width: 1300px;
    margin: auto;
}

.fd-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.fd-subtitle {
    display: inline-block;
    background: #078f07;
    padding: 6px 20px 6px 25px;
    border-radius: 50px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    position: relative;
}
.fd-subtitle::before{
    position: absolute;
    left: 8px;
    top: 13px;
    content: '';
    width: 8px;
    height: 8px;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
}
.fd-subtitle::after{
    position: absolute;
    left: 8px;
    top: 13px;
    content: '';
    width: 8px;
    height: 8px;
    background-color: rgba(2, 206, 19, 0);
    border: 1px solid rgb(252, 255, 252);
    border-radius: 50%;
    animation:spot2 2s infinite linear;
}
@keyframes spot2 {
    0%{
transform: scale(1);
        border: 1px solid rgb(255, 255, 255);
    }
    100%{
        transform: scale(2.5);
        border: 1px solid rgba(255, 255, 255, 0.103);
    }
}

.fd-title {
    margin: 12px 0;
    font-size: 36px;
    font-weight: 800;
}

.fd-desc {
    color: #666;
}

/* GRID */
.fd-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


/* RESPONSIVE */
@media (max-width: 992px) {
    .fd-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .fd-grid {
        grid-template-columns: 1fr;
    }

    .fd-title {
        font-size: 22px;
        line-height: 1.24;
    }
    .fd-desc {
    color: #666;
    font-size: 12px;
    line-height: 1.23;
}

}




/* card */
.featured-destinations .package-cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      /* width: ; */
      /* grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); */
      gap: 20px 20px;
      margin: 20px 0px;
    }

    .featured-destinations .card {
      width: 360px;
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
      cursor: pointer;
    }

    .featured-destinations .card:hover {
      transform: translateY(-6px);
    }

    .featured-destinations .card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .featured-destinations .card-content {
      /* position: absolute; */
      /* bottom: 0; */
      width: 100%;
      padding: 20px;
      /* background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0)); */
      color: #000000;
    }

    .featured-destinations .card-content h3 {
      font-size: 18px;
      margin: 0 0 8px;
    }

    .card-content p {
      font-size: 14px;
      margin-bottom: 10px;
    }

    .featured-destinations .tags {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

.featured-destinations .tag {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 12px;
    background: rgb(247, 247, 247);
    backdrop-filter: blur(4px);
    border: 1px solid rgb(62 181 7);
}

    /* Arrow button */
    .featured-destinations .arrow-btn {
      position: absolute;
      top: 15px;
      right: 15px;
      background: rgba(255,255,255,0.9);
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: #111;
      transition: 0.3s;
      transform: rotate(-25deg);
    }

    .featured-destinations .card:hover .arrow-btn {
      background: #078f07;
      color: #fff;
    }

/* card */
.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: 300px !important;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    object-fit: cover !important;
}






.tripozy-about {
    padding: 10px 20px;
    max-width: 1350px;
    margin: auto;
}

.ta-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT IMAGE & FLOATING CARDS */
.ta-image-box {
    position: relative;
    flex: 1;
}

.ta-image-box img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.ta-floating-card {
    position: absolute;
    background: #fff;
    padding: 15px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    top: 15%;
    left: -20px;
    animation: float 4s ease-in-out infinite;
}

.ta-floating-card h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
}

.ta-floating-card p {
    margin: 0;
    color: #666;
}

.ta-floating-card.ta-alt {
    top: auto;
    bottom: 10%;
    left: auto;
    right: -20px;
    animation-delay: 1s;
}

/* FLOAT ANIMATION */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}


/* RIGHT CONTENT */
.ta-content {
    flex: 1;
}

.ta-label {
    background: #eef1ff;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
    color: #078f07;
    font-size: 14px;
}

.ta-title {
    font-size: 38px;
    font-weight: 800;
    margin: 20px 0;
}

.ta-title span {
    color: #078f07;
}

.ta-text {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* HIGHLIGHT POINTS */
.ta-highlights {
    margin-bottom: 30px;
}

.ta-point {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
}

.ta-point i {
    color: #3f51ff;
    font-size: 16px;
    margin-top: 4px;
}

/* BUTTON */
.ta-btn {
    padding: 14px 28px;
    background: #078f07;
    color: #fff;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.ta-btn:hover {
    background: #056d05;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .ta-container {
        flex-direction: column;
        text-align: center;
    }

    .ta-point {
        justify-content: center;
    }

    .ta-floating-card,
    .ta-floating-card.ta-alt {
        display: none; /* optional */
    }
}

@media (max-width: 600px) {
    .ta-title {
        font-size: 26px;
        line-height: 1.23;
    }
}


.tripozy-services {
    padding: 10px 20px;
    max-width: 1300px;
    margin: auto;
}

.ts-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 40px;
    text-align: left;
}

/* GRID */
.ts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.ts-card {
    background: #fff;
    padding: 25px 15px;
    border-radius: 22px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
    text-align: left;
    transition: 0.3s ease;
}

.ts-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
}

.ts-card img {
    width: 65px;
    margin-bottom: 20px;
}

.ts-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ts-card p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .ts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .ts-header h2 {
        text-align: center;
    }

    .ts-grid {
        grid-template-columns: 1fr;
    }

    .ts-card {
        text-align: center;
    }
}





.our-package-right{
    position: relative;
    background-image: url(https://hillstarholidays.com/wp-content/uploads/2024/03/1613118179_shutterstock_728731177-min.jpg.jpg);
    background-size:cover ;
    padding: 20px;
    /* height: auto; */
    margin: 20px 20px 0px 20px;
    border-radius: 20px;
    display: flex;
    align-items: end;
}

.package-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px 25px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.package-card h2 {
  font-size: 22px;
  margin: 0 0 5px;
}

.package-card p {
  color: #555;
  font-size: 14px;
  margin-bottom: 10px;
}

.package-card .learn-more {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  color: black;
  font-weight: 600;
  margin-bottom: 5px;
}

.package-card .learn-more span {
  display: inline-block;
  background: black;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 12px;
  text-align: center;
  line-height: 24px;
  margin-right: 8px;
}

.package-card .package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #777;
}

.package-card .package-card .dots {
  display: flex;
  gap: 5px;
}

.package-card .dot {
  width: 8px;
  height: 3px;
  background: #ddd;
  border-radius: 2px;
}

.package-card .dot.active {
  background: black;
  width: 16px;
}



.package-section {
      padding: 30px 3%;
      width: 100%;
      /* border: 1px solid; */
      /* margin-top: 50px; */
    }

    .package-section .package-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      margin-bottom: 40px;
      width: 100%;
    }

    .package-section .package-header h2 {
      font-size: 32px;
      font-weight: 700;
      /* max-width: 500px; */
      text-align: center;
    }

    .package-section .package-header p {
      font-size: 14px;
      color: #555;
      max-width: 300px;
    }

    .package-section .btn-book {
      background: #111;
      color: #fff;
      padding: 12px 24px;
      border-radius: 30px;
      text-decoration: none;
      transition: 0.3s ease;
    }

    .package-section .btn-book:hover {
      background: #f97316; /* orange hover */
    }

    .package-section .package-cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      /* width: ; */
      /* grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); */
      gap: 20px 20px;
      margin: 20px 0px;
    }

    .package-section .card {
      width: 360px;
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
      cursor: pointer;
    }

    .package-section .card:hover {
      transform: translateY(-6px);
    }

    .package-section .card img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      display: block;
    }

    .package-section .card-content {
      position: absolute;
      bottom: 0;
      width: 100%;
      padding: 20px;
      background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
      color: #fff;
    }

    .package-section .card-content h3 {
      font-size: 18px;
      margin: 0 0 8px;
    }

    .card-content p {
      font-size: 14px;
      margin-bottom: 10px;
    }

    .package-section .tags {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .package-section .tag {
      font-size: 12px;
      padding: 4px 10px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.103);
      backdrop-filter: blur(4px);
      border: 1px solid rgba(255, 255, 255, 0.089);
    }

    /* Arrow button */
    .package-section .arrow-btn {
      position: absolute;
      top: 15px;
      right: 15px;
      background: rgba(255,255,255,0.9);
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: #111;
      transition: 0.3s;
      transform: rotate(-25deg);
    }

    .package-section .card:hover .arrow-btn {
      background: #1665f9;
      color: #fff;
    }


    /* page title */
.page-title{
  /* border: 1px solid; */
  height: 250px;
  padding-top: 130px;
  padding-left: 50px;
  background-image: url('https://static.vecteezy.com/system/resources/thumbnails/038/997/774/small/ai-generated-snowy-mountains-of-alaska-landscape-with-forests-valleys-and-rivers-in-daytime-serene-wilderness-nature-composition-background-wallpaper-travel-destination-adventure-outdoors-free-photo.jpg');
  background-size: cover;
  background-position: 0px 0px;
}
.page-title h1{
  font-size: 40px;
  color: white;

}



/* packagr detail  */
.package-container-d {
      max-width: 1100px;
      margin: 20px auto;
      padding: 20px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .package-image img {
      width: 100%;
    border-radius: 10px;
    height: 300px;
    object-fit: cover;
    }

    .package-details-d h2 {
      text-transform: capitalize;
      font-size: 28px;
      margin-bottom: 10px;
      color: rgb(46, 46, 46);
    }

    .package-details-d p {
      margin-bottom: 10px;
    }

    .package-container-d .price {
      font-size: 18px;
      font-weight: bold;
      color:     #313471;
    }

    .package-container-d .enquire-btn {
      display: inline-block;
      margin-top: 10px;
      padding: 8px 14px;
      background:     #313471;
      color: #fff;
      text-decoration: none;
      border-radius: 4px;
      font-size: 14px;
    }

    .itinerary {
      max-width: 1100px;
      margin: 20px auto;
      padding: 20px;
    }

    .itinerary h3 {
      padding: 20px 0px;
      margin-bottom: 15px;
      font-size: 29px;
      border-bottom: 1px solid;
      color: rgb(46, 46, 46);


    }

    .day {
      padding:30px 0px;
      border-bottom: 1px solid;

    }
.day-title{
font-weight: bold;
font-size: 18px;
color:#383838;
font-family: 'Oswald', sans-serif;
}
    .day-title span{
      background: linear-gradient(45deg,#313471,navy);
      color: #fff;
      padding: 5px 10px;
      border-radius: 3px;
      display: inline-block;
      margin-right: 10px;
      
    }

    .day p {
      padding: 30px 0 0px 50px;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .package-container-d {
        grid-template-columns: 1fr;
        text-align: center;
      }
    }

    @media (max-width: 768px) {
      .package-details-d h2 {
        font-size: 20px;
      }
      .price {
        font-size: 16px;
      }
      .itinerary h3 {
        font-size: 18px;
      }
    }

    @media (max-width: 576px) {
      .package-container-d {
        padding: 10px;
      }
      .itinerary {
        padding: 10px;
      }
      /* .day-title {
        font-size: 14px;
      } */
    }
/* packagr detail  */
/* Gallery Grid */
    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
      padding: 20px;
    }

    .gallery img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      cursor: pointer;
      transition: 0.3s;
    }

    .gallery img:hover {
      transform: scale(1.05);
    }

    /* Lightbox */
    .lightbox {
      display: none;
      position: fixed;
      z-index: 9999;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.9);
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }

    .lightbox img {
      max-width: 80%;
      max-height: 80%;
      border-radius: 8px;
    }

    /* Controls */
    .lightbox .close, .lightbox .prev, .lightbox .next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      color: white;
      font-size: 2rem;
      padding: 10px;
      cursor: pointer;
      user-select: none;
    }

    .lightbox .close {
      top: 20px;
      right: 30px;
      font-size: 2.5rem;
      transform: none;
    }

    .lightbox .prev {
      left: 30px;
    }

    .lightbox .next {
      right: 30px;
    }



/* form */
.form-container {
      max-width: 500px;
      margin: 30px auto;
      background: #fff;
      padding: 30px 25px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .form-container h2 {
      text-align: center;
      margin-bottom: 20px;
      color: #0a2850;
      font-size: 20px;
      font-weight: bold;
    }

    .form-group {
      margin-bottom: 15px;
    }

    .form-group label {
      display: block;
      margin-bottom: 6px;
      font-weight: bold;
      font-size: 14px;
      color: #333;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
      outline: none;
      transition: border 0.3s ease;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: #0a2850;
    }

    .form-group textarea {
      resize: none;
      height: 70px;
    }

    .btn-submit {
      display: block;
      width: 100%;
      padding: 12px;
      background: #0a2850;
      color: #fff;
      border: none;
      border-radius: 6px;
      font-size: 16px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .btn-submit:hover {
      background: #133b7a;
    }

    /* Responsive */
    @media (max-width: 576px) {
      .form-container {
        padding: 20px 15px;
      }
      .form-container h2 {
        font-size: 18px;
      }
    }
/* form */




/* Main Section */
.tripozy-vegan-section {
  padding: 40px 20px;
  background: #f8fbf7;
  font-family: "Poppins", sans-serif;
}

.veg-container {
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* Left Content */
.veg-content {
  flex: 1 1 450px;
}

.veg-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1c3d2d;
  margin-bottom: 15px;
}

.veg-subtitle {
  font-size: 1.1rem;
  margin-bottom: 35px;
  line-height: 1.7;
  color: #4f5f57;
}

/* Features */
.veg-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
}

.veg-feature-box {
  background: #ffffff;
  padding: 15px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.veg-feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.veg-icon {
  font-size: 2.3rem;
  margin-bottom: 10px;
  display: inline-block;
}

/* Right Image */
.veg-image {
  flex: 1 1 400px;
}

.veg-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .veg-title {
    font-size: 2rem;
  }
  .veg-container {
    flex-direction: column-reverse;
    text-align: center;
  }
  .veg-image {
    flex: 1 1 100%;
}
}
.veg-feature-box h3{
  font-size: 18px;
  margin-bottom: 8px;
  color: #2c4a38;
}
.veg-feature-box p{
    font-size: 12px;
    line-height: 1.24;

}


.banner-one {
    position: relative;
}

.banner-one_image-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
    opacity: 1;
}

.layer2 {
    opacity: 0;
}

/* Buttons (same as before) */
.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    font-size: 30px;
    padding: 10px 18px;
    cursor: pointer;
    z-index: 10;
}
.banner-nav.left { left: 20px; }
.banner-nav.right { right: 20px; }
.banner-nav:hover { background: rgba(0,0,0,0.7); }




/* ================================
    TRIPOZY MODERN TRANSPORT SECTION
================================ */

.tripozy-transport-modern {
    padding: 70px 20px;
    background: #f7f8fb;
    font-family: "Poppins", sans-serif;
}

.tp-container {
    max-width: 1200px;
    margin: auto;
}

.tp-title {
    font-size: 34px;
    text-align: center;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.tp-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

/* Grid */
.tp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 17px;
}

/* Card */
.tp-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: 0px 8px 28px rgba(0,0,0,0.06);
    position: relative;
}

.tp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 14px 38px rgba(0,0,0,0.10);
}

/* Car Image */
.tp-img {
    height: 180px;
    background: #eef1f6;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tp-img img {
width: 100%;
height: 100%;
object-fit: cover;
}

/* Content */
.tp-content {
    padding: 10px;
}

.tp-car-name {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Row info */
.tp-row {
    display: flex;
    gap: 9px;
    font-size: 14px;
    color: #444;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.tp-row i {
    color: #fe7e05;
}

/* Features */
.tp-features {
    list-style: none;
    padding: 0;
    margin: -8px 0 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.tp-features li {
    font-size: 10px;
    margin-bottom: 1px;
    padding: 2px 10px;
    border-radius: 20px;
    color: rgb(73, 73, 73) !important;
    background: #e0e0e0;
    box-shadow: 5px 4px 10px #bebebe, -4px -4px 10px #ffffff;
}
.tp-features i {
    color: #595353;
    margin-right: 7px;
}

/* CTA Buttons */
.tp-actions {
    display: flex;
    gap: 12px;
}

.tp-btn-call,
.tp-btn-wa {
    flex: 1;
    padding: 10px 0;
    border-radius: 8px;
    text-align: center;
    font-size: 15px;
    color: #fff;
    font-weight: 600;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

/* Call */
.tp-btn-call {
    background: #0078ff;
}

.tp-btn-call:hover {
    background: #005fcc;
    color: white;
}

/* WhatsApp */
.tp-btn-wa {
    background: #25d366;
}

.tp-btn-wa:hover {
    background: #1ebe57;
}

/* Responsive */
@media (max-width: 600px) {
    .tp-car-name { font-size: 20px; }
}



/* ============================
   MODERN POPUP MODAL STYLING
=============================*/

.tp-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 9999;
    backdrop-filter: blur(3px);
}

.tp-modal-box {
    background: #fff;
    width: 100%;
    max-width: 530px;
    border-radius: 14px;
    padding: 10px;
    position: relative;
    animation: tpFadeUp .4s 
ease;
    height: 500px;
    overflow: scroll;
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.18);
}

@keyframes tpFadeUp {
    from { transform: translateY(40px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

.tp-modal-close {
    position: absolute;
    right: 18px;
    top: 12px;
    font-size: 26px;
    cursor: pointer;
    color: #333;
    transition: .3s;
}

.tp-modal-close:hover {
    color: #ff3b3b;
}

/* Form styling inside modal */
.form-container {
    width: 100%;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #222;
    font-weight: 600;
}

/* Form Groups */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
    color: #444;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 15px;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #007bff;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: #007bff;
    color: #fff;
    font-size: 17px;
    cursor: pointer;
    transition: .3s;
}

.btn-submit:hover {
    background: #005fcc;
}

/* Responsive */
@media (max-width: 480px) {
    .tp-modal-box {
        padding: 20px;
    }
}
