.hero {
    position: relative;
   
    height: 90vh;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.commonhero {
    position: relative;
    height: 22vh;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.commonhero-content {
    position: relative;
    margin-top: 74px;
    z-index: 2;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.search-box {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
    margin-top: -60px;
    position: relative;
}

.offer-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.2s ease-in-out;
}

    .offer-card:hover {
        transform: translateY(-5px);
    }

.offer-img {
    height: 180px;
    object-fit: cover;
    width: 100%;
}

.price {
    color: #d32f2f;
    font-size: 1.5rem;
    font-weight: bold;
}

.btn-book {
    background: #8e24aa;
    border: none;
}

    .btn-book:hover {
        background: #6a1b9a;
    }

.date-label {
    font-size: 0.9rem;
    color: #6c63ff;
}




.price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #e53935; /* matches the red price in your screenshot */
}

.btn-book {
    background: linear-gradient(90deg, #a445f7, #7b1fa2); /* purple gradient */
    border: none;
    border-radius: 25px; /* pill-shaped */
    font-weight: 600;
    padding: 8px 18px;
    transition: 0.3s ease-in-out;
    white-space: nowrap; /* prevents breaking into two lines */
}

    .btn-book:hover {
        background: linear-gradient(90deg, #7b1fa2, #4a148c);
        transform: scale(1.05);
    }

.promo-section {
    background-color: #e0f7fa; /* light blue background */
}

.btn-explore {
    background-color: #e53935; /* red button */
    color: #fff;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 5px;
    transition: 0.3s ease;
}

    .btn-explore:hover {
        background-color: #c62828;
        color: #fff;
    }


.destination-card {
    position: relative;
    color: white;
    height: 250px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.destination-content {
    position: relative;
    z-index: 2;
}

.destination-btn {
    margin-top: 10px;
}

.help-section {
    background-color: #ffffff;
    padding: 50px 0;
  
}

.help-btn {
    background-color: #7f4fff;
    color: white;
    font-weight: 500;
}

    .help-btn:hover {
        background-color: #6936e3;
        color: white;
    }

.help-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius:100px 10px 30px 30px;
}
.diagonal-box {
    background-image: linear-gradient(45deg, #ffffff, #9396dd);
    background-color: #ffffff;
    padding: 50px 0;
    transform: skewY(-1deg);
}

.diagonal-box2 {
    margin-top: 33px;
    background-image: linear-gradient(45deg, #ff5d009e, #ffffff);
    background-color: #ffffff;
    padding: 50px 0;
    transform: skewY(2deg);
}
.diagonal-background {
    margin-top: 33px;
    background: linear-gradient( 90deg, #ffcc00 50%,#cccccc 50% );
    padding: 50px 0;
}
.circle-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.contact-box {
    background-color: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.btn-purple {
    background-color: #a854f3;
    color: white;
    font-weight: 500;
}

    .btn-purple:hover {
        background-color: #843ce3;
    }

.form-check-label {
    font-size: 0.9rem;
}

.recaptcha-text {
    font-size: 0.7rem;
    color: #666;
    margin-top: 10px;
}

.contactus-form {
    background-color: #f5f0ff;
    padding: 50px;
}


.footer {
    background-color: #002f6c;
    color: white;
    font-size: 14px;
}

    .footer a {
        color: white;
        text-decoration: none;
    }

        .footer a:hover {
            text-decoration: underline;
        }

.footer-logo {
    font-weight: bold;
    font-size: 20px;
    color: white;
}

    .footer-logo span {
        color: #a854f3;
    }

.footer-divider {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin: 15px 0;
}

.footer-bottom {
    font-size: 12px;
    padding: 10px 0;
    background-color: #001e40;
    text-align: center;
}

.social-icons i {
    font-size: 18px;
    margin: 0 5px;
    color: white;
}

.trust-logos img {
    height: 30px;
    margin: 0 10px;
}

.phone-badge {
    background: white;
    color: red;
    font-weight: bold;
    border-radius: 25px;
    padding: 5px 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}


@media (max-width: 768px) {
    .diagonal-box {
        background-image: linear-gradient(90deg, #ffffff, #9396dd);
        background-color: #ffffff;
        padding: 50px 0;
        transform: skewY(0deg);
    }

    .diagonal-box2 {
        margin-top: 33px;
        background-image: linear-gradient(90deg, #ff5d009e, #ffffff);
        background-color: #ffffff;
        padding: 50px 0;
        transform: skewY(0deg);
    }

    .diagonal-background {
        margin-top: 33px;
        background: linear-gradient( 180deg, #ffcc00 50%,#cccccc 50% );
        padding: 50px 0;
    }

}


.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}

.destination-content p{
    padding:10px;
}

@keyframes phoneBuzz {
    0% {
        transform: translate(0, 0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(2px, -2px);
    }

    60% {
        transform: translate(-2px, 2px);
    }

    80% {
        transform: translate(2px, -2px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes vibrate {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(2px, -2px);
    }

    60% {
        transform: translate(-2px, 2px);
    }

    80% {
        transform: translate(2px, -2px);
    }

    100% {
        transform: translate(0);
    }
}
.buzzer {
    display: inline-block;
    animation: vibrate 2s infinite;
}

@keyframes ring {
    0% {
        transform: rotate(0);
    }

    1% {
        transform: rotate(30deg);
    }

    3% {
        transform: rotate(-28deg);
    }

    5% {
        transform: rotate(34deg);
    }

    7% {
        transform: rotate(-32deg);
    }

    9% {
        transform: rotate(30deg);
    }

    11% {
        transform: rotate(-28deg);
    }

    13% {
        transform: rotate(26deg);
    }

    15% {
        transform: rotate(-24deg);
    }

    17% {
        transform: rotate(22deg);
    }

    19% {
        transform: rotate(-20deg);
    }

    21% {
        transform: rotate(18deg);
    }

    23% {
        transform: rotate(-16deg);
    }

    25% {
        transform: rotate(14deg);
    }

    27% {
        transform: rotate(-12deg);
    }

    29% {
        transform: rotate(10deg);
    }

    31% {
        transform: rotate(-8deg);
    }

    33% {
        transform: rotate(6deg);
    }

    35% {
        transform: rotate(-4deg);
    }

    37% {
        transform: rotate(2deg);
    }

    39% {
        transform: rotate(-1deg);
    }

    41% {
        transform: rotate(1deg);
    }

    43% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(0);
    }
}

.ringing {
    display: inline-block;
    animation: ring 3s ease-in-out infinite;
    transform-origin: top center;
    color: #FF3333;
}

.offerHeading {
    background-color: #163341;
    color: #fff;
    padding: 20px;
    text-align: center;
    margin-bottom:1px !important;
   
}
.features{
    min-height:150px;
}
.optionalfeatures {
    min-height: 70px;
}
.hotdealprice {
    font-size: 1.2rem;
    font-weight: bold;
    color: #e53935;
}