 .top-header {
     background-color: #fff;
     font-size: 14px;
     padding: 5px 0;
     justify-content: space-between;
 }

 .top-header a {
     color: #ae285d;
     text-decoration: none;
     margin-right: 15px;
     font-weight: 500;
 }


 .main-header {
     position: sticky;
     top: 0;
     z-index: 1020;
     background-color: #ae285d;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
 }

 .navbar-nav .nav-link {
     color: #fff;
     font-weight: 500;
     margin: 0 8px;
     border-bottom: 2px solid #ae285d;
 }

 .navbar-nav .nav-link:hover {
     color: #fff;
     border-bottom: 2px solid #fff;
 }

 .btn-trip {
     background-color: #fff;
     color: #ae285d;
     font-weight: 500;
     border-radius: 30px;
     padding: 6px 18px;
 }

 .btn-trip:hover {
     background-color: #fff;
     color: #ae285d;
 }

 .navbar-toggler {
     background-color: #fff;
 }


 .hero-section img {
     max-height: 500px;
     object-fit: cover;
 }

 .section-title {
     color: #ae285d;
     font-weight: 700;

     text-align: center;
 }

 .package-card {
     position: relative;
     overflow: hidden;
     border-radius: 15px;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     height: 350px;
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
 }

 .package-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
 }

 .package-card img {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 15px;
     z-index: 1;
 }


 .discount-badge {
     position: absolute;
     top: 12px;
     left: 12px;
     background: #ae285d;
     color: #fff;
     padding: 5px 12px;
     border-radius: 8px;
     font-size: 0.85rem;
     font-weight: 600;
     z-index: 3;
 }


 .package-overlay {
     position: relative;
     z-index: 2;
     padding: 20px;
     text-align: center;
     color: #fff;
     width: 100%;
     border-radius: 0 0 15px 15px;
     background: linear-gradient(to top, rgb(1 1 1 / 49%), rgb(0 0 0 / 49%));
 }

 .package-overlay h5 {
     font-size: 1.2rem;
     font-weight: 600;
     margin-bottom: 8px;
 }

 .stars {
     font-size: 1rem;
     color: gold;
     letter-spacing: 3px;
 }

 .testimonial-card {
     flex: 1 1 30%;
     /* 3 cards per row */
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     height: 280px !important;
     /* adjust based on design */
     padding: 20px;
     margin: 10px;
     background: #fff;
     border-radius: 10px;
     box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
 }

 .testimonial-card p {
     font-size: 16px;
     color: #333;
     margin-bottom: 15px;
     line-height: 1.5;
 }

 .testimonial-author {
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .testimonial-author img {
     width: 50px;
     height: 50px;
     border: 1px dotted #ae285d;
     border-radius: 50%;
     object-fit: cover;
 }

 .testimonial-author h6 {
     margin: 0;
     font-weight: 600;
     color: #ae285d;
 }

 .quote {
     color: #ae285d;
     margin: 0;
 }

 .testimonial-author small {
     color: #777;
 }

 /* new one */

 .sticky-section {
     font-family: "Segoe UI", sans-serif;
     background: #f7f9fc;
     padding: 80px 15px;
     text-align: center;
     margin-bottom: 30px;
 }

 .sticky-section .img-border {
     margin-bottom: 50px;
 }

 .sticky-wrapper {
     position: relative;
     max-width: 900px;
     margin: 0 auto;
 }

 .sticky-container {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 40px 60px;
     position: relative;
 }

 /* Outer card */
 .sticky-card {
     background: #fff;
     border-radius: 16px;
     padding: 40px 20px 30px;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
     position: relative;
     transition: transform 0.3s ease;
     display: flex;
     justify-content: center;
     align-items: center;
     min-height: 220px;
 }

 .sticky-card:nth-child(odd) {
     transform: rotate(-2deg);
 }

 .sticky-card:nth-child(even) {
     transform: rotate(2deg);
 }


 .sticky-inner {
     border-radius: 12px;
     padding: 20px;
     max-width: 85%;
     background: #f0f0f0;
 }

 .sticky-inner h3 {
     font-size: 1.2rem;
     font-weight: 700;
     margin-bottom: 8px;
     color: #222;
 }


 .sticky-pin {
     position: absolute;
     top: -16px;
     left: 50%;
     transform: translateX(-50%);
     width: 28px;
     height: 28px;
     border-radius: 50%;
     background: var(--pin-color, #ff6f61);
     box-shadow:
         -6px 3px 0px rgba(0, 0, 0, 0.2);
 }


 .sticky-yellow {
     background: #fffbe6;
 }

 .sticky-purple {
     background: #f4ecff;
 }

 .sticky-pink {
     background: #ffe6f1;
 }

 .sticky-blue {
     background: #eaf4ff;
 }

 .sticky-green {
     background: #e9fbee;
 }

 .sticky-red {
     background: #ffeceb;
 }


 .sticky-lines {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     pointer-events: none;
 }

 .sticky-lines line {
     stroke: #ae285d;
     stroke-width: 2;
     stroke-dasharray: 6;
 }


 @media (max-width: 991px) {
     .sticky-container {
         grid-template-columns: repeat(2, 1fr);
     }

     .sticky-card {
         transform: rotate(0deg) !important;
     }

     .sticky-lines {
         display: none;
     }
     .top-header a{margin-right:0px;}
 }

 /* Mobile: 1 per row */
 @media (max-width: 767px) {
     .sticky-container {
         grid-template-columns: 1fr;
     }

     .sticky-card {
         padding: 45px 0px 20px;
         transform: rotate(0deg) !important;
     }

     .sticky-lines {
         display: none;
     }
 }

 .img-border:after {
     content: "";
     background: url(data:data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPoAAAAZCAYAAAAYPDMRAAACv0lEQVR4nO3aT6hMURwH8Pcmz5/nT/nTs7bwiGRhIRLJQpJ/RchGVmLnTzb+laSwskT2spcdipQNUuiXpEgWT6Qnj2R8f507ze3MvdObe++Zc9zzXXya5r4z955zZ75zzvnNG2g2mwNEVG/eO0BE7nnvABG5570DROSe9w4QkXulTyD3VlD4ZsAVeAEv4RrMCqBf0WPQqUqHoGk5FkC/osegU5W2SWfQDwTQr+gx6DRZDVgLW2Bhl3Y74Qt8h/1d2s2HzbAOpgQwvlpj0Gmy7kp7lv4Am3LaLYVx+AWrctqsgXep890PYHy19j8FfaqYws6wmNnF+82LjL0kv5PT7maqze2cNrcyzud7fLWWZEhzozmaro+hBn0BbIR9sB7m+r55kXkm7VD+hB0ZbRbB11S7H7A8o52uBsZT7V4HML660+3REjgON8QUSUf1eDBBFxPyc/AGPsErOCNmn+f7BsZiDuyGxzABF2Gm1easdM7UV6020+C0mC8B/fLYC/MCGF/dLYaH8Dd5X/TxgZiwN7wHXcxyQ2ePMesDpM93CZfx/XYi9R48hdXJ8dnwXjqD/hlGkjYr4VHqbxcCGE8MdLmuM3kr5Gn6fla2jC8TdO3kpZxOUjV6+dActF6rM/NhONrl/KeS132zjh/p8dq+71MdXYfhkILu+4bUWS9h05/D/mScY6LL+X/nHN/a47V936c6OikV7tPLLt23i1mqp2f1sQIfFCpPC272zFyErgSWBTCeWGTt0fX5aFUhLxX0JOytYpwW4T5KuxjHynv/aVHurZQPuhZVRwpcn4ppVd11T65Vd92zh1V1T8KuFfYNsEf485pPg2Iq72WD/lz4H3F9Y22F9Xf0oSoDXmXQVUNYZQ/BeXgipoJehL72cgDjiIaLUDsJOhGFz3sHiMg97x0gIve8d4CI3PPeASJy7x+Z962+40a4ywAAAABJRU5ErkJggg==) no-repeat center center;
     height: 25px;
     width: 250px;
     display: block;
     margin: 0 auto 1.5rem;

 }

 :after,
 :before {

     -moz-box-sizing: border-box;
     box-sizing: border-box;
 }

 .testimonial-wrapper {
     position: relative;
     display: flex;
     align-items: center;
 }

 .swiper {
     flex: 1;
 }

 .swiper-button-prev,
 .swiper-button-next {
     position: relative;

     width: 40px;
     height: 40px;
     background: #fff;
     border-radius: 50%;
     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
 }

 .swiper-button-prev::after,
 .swiper-button-next::after {
     font-size: 20px;
     color: #ae285d;
     font-weight: 700;
 }

 .swiper-button {
     display: flex;
     justify-content: flex-end;
     column-gap: 40px;
     margin-bottom: 20px;
 }

 /* Form */
 .form {
     background-color: #f7f9fc;
 }

 .copy {
     font-size: 12px;
 }

 .form-btn {
     background: #ae285d;
     color: white;
 }

 .form-btn:hover {
     background-color: #666;
     color: white;
 }

 .form-btn:active:hover {
     background-color: #204d74;
     color: white;
 }

 .lgo img {
     margin-bottom: 20px;
 }

 .contact-wrapper {
     background-color: #ae285d;
     background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100%25' height='100%25' fill='%23ae285d'/%3E%3C/svg%3E");
     background-size: cover;
     background-position: center;
 }

 .contact-card {
     background: #fff;
     border-radius: 12px;
 }

 .accordion-body {
     text-align: start;
 }

 h2 .accordion-button {
     color: #ae285d;
 }

 h2 .accordion-button:not(.collapsed) {
     color: #ffffff;
     background-color: #ae285d;

     border: none;
 }

 .copyright {
     color: white;
     text-decoration: none;
 }

 .copyright:hover {
     color: #e37900;
 }

 .accordion-button::after {
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ae285d' viewBox='0 0 16 16'%3e%3cpath fill='%23ae285d' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
 }

 .accordion-button:not(.collapsed)::after {
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3e%3cpath fill='white' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
 }