.navbar-brand img {

    height: 40px;

    margin-right: 10px;

}




.carousel-item {
    height: 500px;
    overflow: hidden;
}

.carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

 






#about {

    background-color: #FFFFFF;

    padding: 40px 0;

}

#about h2 {

    font-weight: bold;

    margin-bottom: 40px;

}

#about .col-md-4 {

    text-align: center;

    padding: 20px;

}

#about img {

    width: 100%;

    height: auto;

    border-radius: 10px;

    margin-bottom: 15px;

}

#about p {

    font-size: 1.2rem;

    color: #555;

}


.retreat-section {
    padding: 60px 0;
}

.section-header h3,
.featured-title {
    color: #0066ff;
}

.featured-subtitle {
    margin-top: 10px;
    font-size: 16px;
    color: #444;
}

.poster-wrapper {
    display: flex;
    justify-content: center;
}

.poster-image {
    max-width: 100%;
    width: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}


.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #FEFEFF;
}

.tour-header,
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.tour-header h2 {
    color: #0D6EFD;

}


.section-header h3 {
    font-size: 28px;

    color: #0D6EFD;
    margin-bottom: 10px;
}

.tour-header p,
.section-header p {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.tour-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .tour-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tour-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tour-card {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-6px);
}

.tour-card-image img {
    width: 100%;
    height: auto;
    max-height: 240px;
    object-fit: cover;
    display: block;
}

.tour-card-content {
    padding: 20px;
}

.tour-card-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 15px;
    color: #444;
}

.check-icon {
    width: 20px;
    height: 20px;
    stroke: #28a745;
    margin-right: 10px;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item span {
    flex: 1;
}
/* 
.trip-details-section {
    padding: 50px 20px;
    background: #FFFFFF;
}

.trip-details-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    gap: 30px;
}

.trip-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trip-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.trip-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.trip-item h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}

.trip-item p {
    margin: 4px 0 0;
    font-size: 14px;
    color: #374151;
}

@media (min-width: 768px) {
    .trip-details-card {
        flex-direction: row;
    }

    .trip-column {
        flex: 1 1 50%;
    }
} */



.trip-details-section {
    padding: 50px 20px;
    background: #FFFFFF;
    display: flex;
    justify-content: center; /* ➕ Centers the inner card */
}

.trip-details-card {
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    border-radius: 30px 20px;
    padding: 30px 20px;
    max-width: 1100px; /* ⬅️ Reduced width to fit between your black lines */
    width: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    gap: 30px;
    align-items: center;
}

.trip-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.trip-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.trip-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.trip-item h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}

.trip-item p {
    margin: 4px 0 0;
    font-size: 14px;
    color: #374151;
}

@media (min-width: 768px) {
    .trip-details-card {
        flex-direction: row;
    }

    .trip-column {
        flex: 1 1 50%;
    }
}









/* 
.testimonial-section {
      padding: 60px 20px;
      text-align: center;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: bold;
      color: #111;
    }

    .section-subtitle {
      font-size: 1rem;
      color: #555;
      margin: 10px auto;
      max-width: 600px;
    }

    .underline {
      width: 60px;
      height: 3px;
      background: linear-gradient(to right, #d400f3, #8c2ce2);
      margin: 15px auto;
      border-radius: 10px;
    }

    .testimonial-wrapper {
      max-width: 900px;
      margin: 40px auto;
      position: relative;
    }

    .testimonial-card {
      background-color: #fff;
      border-radius: 20px;
      padding: 40px 30px;
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
      display: none;
      position: relative;
    }

    .testimonial-card.active {
      display: block;
    }

    .quote-mark {
      font-size: 3rem;
      color: #d8a7f7;
      position: absolute;
      top: 20px;
      left: 30px;
    }

    .testimonial-text {
      font-size: 1.1rem;
      color: #333;
      margin: 40px 0 20px;
      line-height: 1.6;
      font-style: italic;
    }

    .name {
      font-weight: bold;
      font-size: 1.2rem;
      color: #111;
    }

    .nav-arrows {
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      transform: translateY(-50%);
      display: flex;
      justify-content: space-between;
      padding: 0 25px;
      box-sizing: border-box;
    }

    .arrow {
      background-color: white;
      color: #555;
      font-size: 1.4rem;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      line-height: 45px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .arrow:hover {
      background-color: #f2e8fc;
    }

    .dots {
      margin-top: 25px;
    }

    .dots span {
      display: inline-block;
      width: 10px;
      height: 10px;
      background: #ddd;
      margin: 0 5px;
      border-radius: 50%;
      cursor: pointer;
    }

    .dots .active {
      background: #9b4de0;
    } */




.testimonial-section{
         padding: 60px 20px;
      text-align: center;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: bold;
      color: #0D6EFD;
    }

    .section-subtitle {
      font-size: 1rem;
      color: #555;
      margin: 10px auto;
      max-width: 600px;
    }

    .underline {
      width: 60px;
      height: 3px;
      background: linear-gradient(to right, #d400f3, #8c2ce2);
      margin: 15px auto;
      border-radius: 10px;
    }

    .testimonial-wrapper {
      max-width: 900px;
      margin: 40px auto;
      position: relative;
    }

    .testimonial-card {
      background-color: #fff;
      border-radius: 20px;
      padding: 40px 30px;
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
      display: none;
      position: relative;
    }

    .testimonial-card.active {
      display: block;
    }

    .quote-mark {
      font-size: 3rem;
      color: #d8a7f7;
      position: absolute;
      top: 20px;
      left: 30px;
    }

    .testimonial-text {
      font-size: 1.1rem;
      color: #333;
      margin: 40px 0 20px;
      line-height: 1.6;
      font-style: italic;
    }

    .name {
      font-weight: bold;
      font-size: 1.2rem;
      color: #111;
    }

    .nav-arrows {
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      transform: translateY(-50%);
      display: flex;
      justify-content: space-between;
      padding: 0 25px;
      box-sizing: border-box;
    }

    .arrow {
      background-color: white;
      color: #555;
      font-size: 1.4rem;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      line-height: 45px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .arrow:hover {
      background-color: #f2e8fc;
    }

    .dots {
      margin-top: 25px;
    }

    .dots span {
      display: inline-block;
      width: 10px;
      height: 10px;
      background: #ddd;
      margin: 0 5px;
      border-radius: 50%;
      cursor: pointer;
    }

    .dots .active {
      background: #9b4de0;
    }























    
#qna {

    background-color: #ffffff;

    padding: 60px 0;

}

.qna-box {

    background: #f8f9fa;

    padding: 30px;

    border-radius: 15px;

    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

}

.qna-box h2 {

    font-weight: bold;

    font-style: italic;

}




img {

    max-width: 100%;

}

.gallery {

    background-color: rgb(129, 130, 133);

    padding: 80px 0;

}

.gallery img {

    background-color: rgb(250, 254, 255);

    padding: 15px;

    width: 100%
}








#contact {

    background-color: #f8f9fa;

    padding: 60px 0;

}

.contact-form {

    background: white;

    padding: 30px;

    border-radius: 10px;

    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

}



.contact-form-container {

    background-color: #fff;

    padding: 30px;

    border-radius: 8px;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

    width: 100%;

    max-width: 600px;



}

form h2 {

    margin-bottom: 20px;

    text-align: center;

}



.form-group {

    margin-bottom: 15px;

}



label {

    display: block;

    font-weight: bold;

    margin-bottom: 5px;

}



input,
textarea {

    width: 100%;

    padding: 10px;

    border: 1px solid #ddd;

    border-radius: 4px;

}



textarea {

    resize: vertical;

}



button {

    width: 100%;

    padding: 12px;

    background-color: #4CAF50;

    color: white;

    border: none;

    border-radius: 4px;

    cursor: pointer;

    font-size: 16px;

}



button:hover {

    background-color: #45a049;

}



#status-message {

    margin-top: 10px;

    text-align: center;

    font-size: 16px;

}



@media (max-width: 768px) {

    .contact-form-container {

        padding: 20px;

    }

}







footer {

    background-color: #222;

    color: white;

    padding: 20px 0;

    text-align: center;

}

footer a {

    color: #f8f9fa;

    text-decoration: none;

    font-weight: bold;

}

footer a:hover {

    text-decoration: underline;

}