﻿/*Slider Start*/
.slider {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-item {
    min-width: 100%;
    box-sizing: border-box;
    position: relative;
}

    .slider-item img {
        width: 100%;
        height: 90vh;
        object-fit: cover;
    }

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.48);
    z-index: 1;
    pointer-events: none;
}

.caption-container {
    position: absolute;
    top: 40%;
    left: 3%;
    color: white;
    padding: 10px;
    text-align: left;
    box-sizing: border-box;
    z-index: 2;
    width: 50%;
}

    .caption-container h2 {
        font-family: var(--togo-ff-playfair);
        font-size: 3.5rem;
        font-weight: 600;
        margin: 0;
        background: linear-gradient(to bottom, #ffffff 20%, #ffffff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: 3px 3px 8px rgba(0,0,0,0.35);
    }

    .caption-container h5 {
        font-size: 1.5rem;
        margin-top: 10px;
        background: linear-gradient(to bottom, #ffffff 10%, #fccb02 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
    }

    .caption-container a.button {
        display: inline-block;
        margin-top: 15px;
        background-color: #890C25;
        color: black;
        text-decoration: none;
        padding: 10px 20px;
        border-radius: 5px;
        font-size: 1rem;
        color: #fff;
    }

        .caption-container a.button:hover {
            background-color: rgba(255, 255, 255, 1);
            color: #0054b5;
        }

button.prev,
button.next {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    padding: 0;
    background-color: #032f36;
    color: white;
    border: none;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

button.prev {
    left: 5px;
}

button.next {
    right: 5px;
}

    button.prev:hover, button.next:hover {
        background-color: #0054b5;
    }

@media (max-width: 768px) {
    .slider {
        padding-top: 0px;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
        max-width: 100%;
    }

    .slider-item img {
        height: 35vh;
        object-fit: contains;
    }

    button.prev,
    button.next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 17px;
        height: 17px;
        padding: 0;
        background-color: #032f36;
        color: white;
        border: none;
        cursor: pointer;
        z-index: 10;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 8px;
    }

    .caption-container {
        width: 100%;
    }

    .gradient-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
        z-index: 1;
        pointer-events: none;
    }

    .caption-container h2 {
        display: block;
        font-size: 1.5rem;
    }

    .caption-container h5 {
        display: block;
        font-size: 1rem;
    }

    .caption-container a.button {
        display: none;
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    .gradient-overlay {
        background: none;
    }
}
/*Slider End*/

.specialhtwo {
    font-size:18px!important;
}
.specialp {
    font-size:14px!important;
}

.togo-btn-primary-new {
    font-size: 12px;
    font-weight: 500;
    border-radius: 50px;
    display: inline-block;
    padding: 0px 12px 0px;
}
.togo-btn-primary-package {
    font-size: 12px;
    font-weight: 500;
    border-radius: 50px;
    display: inline-block;
    padding: 0px 12px 0px;
    border:solid 1px #032f36;
}

/*Section Header Start*/

/*Section Header End*/

.border-blue-rounded {
   
    border-radius: 16px;
    padding: 30px 20px;
}

.text-primary {
    color: #002B66 !important; /* Theme blue color */
}

.border-end-divider {
    position: relative;
}

@media (min-width: 1200px) {
    .border-end-divider:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 15%;
        height: 70%;
        width: 1px;
        background-color: #E29D45; /* Golden-orange divider color */
    }
}
/*Slider Dropdown css Start*/
/* Container Wrapper */
.tt-pill-search-container {
    max-width: 700px;
    /*margin: 40px auto 0;*/
    position: relative;
    z-index: 1 !important;
}

/* Outer Pill Form */
.tt-pill-form {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 2px solid #0B1F3A;
    border-radius: 60px;
    padding: 4px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 99999 !important;
}

/* Dropdown Column Item */
.tt-custom-dropdown {
    flex: 1;
    position: relative;
    padding: 0 20px;
    cursor: pointer;
    user-select: none;
}

.tt-border-right {
    border-right: 2px solid #0B1F3A;
}

/* Dropdown Click Header */
.tt-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.tt-selected-text {
    font-size: 11px;
    font-weight: 700;
    color: #0B1F3A;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}

.tt-arrow {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.tt-custom-dropdown.active .tt-arrow {
    transform: rotate(180deg);
}

/* Dropdown Floating Options Menu */
.tt-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    min-width: 260px;
    background: #ffffff;
    border: 1.5px solid #0B1F3A;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    padding: 8px 0;
    max-height: 250px;
    overflow-y: auto;
    display: none;
    z-index: 1000000 !important;
    text-align: left;
}

.tt-custom-dropdown.active .tt-dropdown-menu {
    display: block;
}

/* Menu Items */
.tt-option {
    padding: 10px 18px;
    font-size: 14px;
    color: #333333;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease;
}

.tt-option:hover {
    background-color: #f1efff;
    color: #3b2d99;
    font-weight: 600;
}

/* Submit Button */
.tt-btn-container {
    flex: 0 0 170px;
}

.tt-search-submit {
    width: 100%;
    background-color: #C8102E;
    color: #ffffff;
    border: none;
    outline: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 13px 10px;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.tt-search-submit:hover {
    background-color: #0B1F3A;
    transform: scale(1.02);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tt-pill-form {
        flex-direction: column;
        border-radius: 20px;
        padding: 14px;
        gap: 12px;
    }
    .tt-border-right {
        border-right: none;
        border-bottom: 1.5px solid #3b2d99;
        padding-bottom: 10px;
    }
    .tt-custom-dropdown {
        width: 100%;
        padding: 0;
    }
    .tt-dropdown-menu {
        width: 100%;
    }
    .tt-btn-container {
        width: 100%;
        flex: auto;
    }
}
/*Slider Dropdown css End*/
/* Container Wrapper - pull upward over the hero section */
.tt-feature-bar-wrapper {
    position: relative;
    /*z-index: 10;*/
    margin-top: -45px; /* Overlap effect on top of hero bottom */
    padding-bottom: 30px;
}

/* Main White Floating Bar */
.tt-feature-bar {
    display: flex;
    align-items: stretch;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(11, 34, 64, 0.08);
    border: 1px solid rgba(220, 226, 235, 0.8);
    overflow: hidden;
}

/* Individual Feature Item */
.tt-feature-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px 18px;
    border-right: 1px solid #edf1f7;
    transition: all 0.3s ease;
}

.tt-feature-item:last-child {
    border-right: none;
}

.tt-feature-item:hover {
    background-color: #fbfcfe;
}

/* Icon */
.tt-feature-icon {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.tt-feature-item:hover .tt-feature-icon {
    transform: translateY(-2px);
}

.tt-feature-item:hover .tt-feature-icon svg {
    stroke: #C8102E; /* Highlights to your brand red on hover */
}

/* Text */
.tt-feature-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0B2240;
    margin: 0 0 5px 0;
    letter-spacing: -0.2px;
}

.tt-feature-content p {
    font-size: 13px;
    color: #7b8a9e;
    margin: 0;
    font-weight: 400;
    line-height: 1.4;
}

/* Responsive adjustment for tablets & mobiles */
@media (max-width: 991px) {
    .tt-feature-bar {
        flex-wrap: wrap;
    }
    .tt-feature-item {
        flex: 0 0 50%;
        border-bottom: 1px solid #edf1f7;
    }
    .tt-feature-item:nth-child(2n) {
        border-right: none;
    }
}

@media (max-width: 575px) {
    .tt-feature-item {
        flex: 0 0 100%;
        border-right: none;
    }
    .tt-feature-bar-wrapper {
        margin-top: -20px;
    }
}

/*Tour package home page */
/* Card Container */
.tt-tour-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 31, 58, 0.07);
    border: 1px solid #f0f3f6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 24px;
}

.tt-tour-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(11, 31, 58, 0.12);
}

/* Image */
.tt-tour-card-thumb {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.tt-tour-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.tt-tour-card:hover .tt-tour-card-thumb img {
    transform: scale(1.04);
}

/* Card Content Body */
.tt-tour-card-content {
    padding: 22px 20px 20px 20px;
}

/* Top Meta Row (India | 6 Nights / 7 Days) */
.tt-tour-card-top-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.tt-tour-card-top-meta .tt-location,
.tt-tour-card-top-meta .tt-duration {
    font-size: 12px;
    color: #708198;
    /*font-weight: 500;*/
}

/* Main Title */
.tt-tour-card-title {
    margin: 0 0 18px 0;
    font-size: 1.17em;
    font-weight: bold;
    line-height: 1.3;
}

.tt-tour-card-title a {
    color: #0b1f3a;
    text-decoration: none;
    transition: color 0.2s ease;
    font-family: var(--togo-ff-body);
}

.tt-tour-card-title a:hover {
    color: #c8102e;
}

/* Bottom Row (Stay perk + Price) */
.tt-tour-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tt-tour-perk p {
    font-size: 13px;
    color: #8292a6;
    margin: 0;
    font-weight: 400;
}

.tt-tour-price .tt-price-val {
    font-size: 20px;
    font-weight: 800;
    color: #c8102e;
    letter-spacing: -0.3px;
}
/*Tour package home page */

/*why choose us css start*/
/* Base Section Styling */
.features {
  background-color: #0b1a2e; /* Deep navy background from image */
  color: #ffffff;
  padding: 50px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header & Typography */
.section-title {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 56px;
}

.eyebrow {
  color: #ff385c;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 12px;
}

.section-title h2 {
  color: #ffffff;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 0 0 14px;
}

.section-title p {
  color: #c4d1db;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Feature Grid */
.grid {
  display: grid;
  gap: 20px;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* Feature Cards */
.feature {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature:hover {
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.feature .icon {
  font-size: 22px;
  color: #ff385c;
  margin-bottom: 36px;
}

.feature h3 {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
}

.feature p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #94a3b8;
  margin: 0;
}

/* Tablet Responsive View */
@media (max-width: 992px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* Mobile Responsive View */
@media (max-width: 600px) {
  .features {
    padding: 50px 16px;
  }

  .section-title {
    margin-bottom: 36px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .section-title p {
    font-size: 14px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .feature {
    padding: 24px 20px;
  }

  .feature .icon {
    margin-bottom: 20px;
  }
}
/*why choose us css end*/