

/* palakkad */

.palakkad-image-con {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 8px;
  border: 2px solid #ccc;
}

.palakkad-image-con img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.palakkad-image-con img:hover {
  transform: scale(1.05);
}

/* rooms */

.uniform-img {
  max-height: 250px;
  min-height: 250px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.4s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* .uniform-img:hover {
  transform: scale(1.05);
} */

.tharavadu h6{
    margin-top: 20px;
}
.recognisation{
  padding: 60px 0;
  background-color: #81a26b;
}
.p-3 {
    padding: 1rem !important;
}
.rounded {
    border-radius: .25rem !important;
}
.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}
/* recognition */
.container-recognition{
  padding: 0 !important;
}
 .recognition-tile {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recognition-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.g-4 {
    --bs-gutter-y: 1.5rem;
}

/* who are we? */

.who-are-we {
  background-color: #f8f9fa; 
}

.who-title {
  font-size: 2.5rem;
  border-left: 5px solid #81a26b; 
  padding-left: 15px;
}

/* philosophy */

.philosophy{
  padding: 80px 0 !important;
}

.keyword-tile {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* .keyword-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
} */

.icon i {
  font-size: 2.5rem;
}
.philosophy-one{
  background-color: #81a26b;
  /* width: 200px !important; */
}

.philosophy-2{
  background-color: #a7cf8c;
}
.philosophy-3{
  background-color: #d2f6ba;
}

/* pillars of thrika */

.pillar-container{
  width: 74%;
  margin: auto;
}
.text-theme {
  color: #7B3F00;
}

.img-container {
  max-width: 300px;
  width: 100%;
}

.pillar-list li {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #444;
}

@media (max-width: 767.98px) {
  .pillar-details-container {
    text-align: center;
  }

  .details {
    margin-top: 1rem;
  }
}


/* triangle pillar */

.circle-layout-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1000px;
}

.circle-block {
  position: relative;
  width: 200px;
  transition: all 0.3s ease;
}

.circle-item {
  width: 120px;
  height: 120px;
  /* background-color: #7B3F00; */
  border: 1px solid #81a26b;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
  margin: 0 auto;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.circle-item img{
  width: 100%;
}
.circle-item:hover {
  transform: scale(1.05);
}

.circle-info {
  margin-top: 15px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  display: none;
  animation: fadeIn 0.3s ease;
  text-align: left;
}

/* Show info on hover */
.circle-block:hover .circle-info {
  /*display: block;*/
}

.circle-info li {
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: #444;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile layout */
@media (max-width: 576px) {
  .circle-layout-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

/* iteneray */

.text-theme {
  color: #7B3F00;
}

.bg-gradient-light {
  background: linear-gradient(to bottom, #fdfdfd, #f4f4f4);
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  /* background: linear-gradient(to bottom, #698f5e, #e0a96d); */
  background-color: #698f5e;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 1rem 2rem;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

.timeline-content {
  position: relative;
  z-index: 2;
}

.timeline-badge {
      display: inline-block;
    background-color: #74915f;
    color: #fff;
    padding: 5px 15px;
    font-weight: bold;
    border-radius: 10px;
    margin-bottom: 10px;
}
.timeline-badge-even {
      display: inline-block;
    background-color: #fff;
    color: #74915f;
    padding: 5px 15px;
    font-weight: bold;
    border-radius: 10px;
    margin-bottom: 10px;
}

.itinerary-list li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  /* color: #444; */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .timeline::before {
    left: 10px;
  }

  .timeline-item,
  .timeline-item.left,
  .timeline-item.right {
    width: 100%;
    left: 0;
    text-align: left;
    padding-left: 2.5rem;
  }
}
.shadow-sm-iti {
    box-shadow: 0 0.125rem 1.25rem rgb(116 145 95) !important;
}
.title-area {
    margin-bottom: 0 !important;
}
/* meet our experts */
.text-theme {
  color: #74915f; /* Match your brand color */
}
.expert-card:hover {
  transform: translateY(-6px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.content-box {
    width: 80%;
    margin: auto;
}
.expert-con{
  /* box-shadow: 0 0.125rem 1.25rem rgb(116 145 95) !important; */
  padding: 20px;
}
.ep-3 {
    padding: 2rem 32px !important;
}
.room-con{
    border: 2px solid #74915f;
    padding: 10px;
    border-radius: 20px;
    margin-left: 10px;
    flex: 0 0 auto;
    width: 31.333333%;
    margin: auto;
    height: 490px;
}
.room-con-last{
    border: 2px solid #74915f;
    padding: 10px;
    border-radius: 20px;
    flex: 0 0 auto;
    width: 31.333333%;
    margin: auto;
    height: 490px;
}
.experience{
    padding-top: 3rem !important;
  
}
.room-section{
    margin-bottom: 40px;
}

.spoth3{
    font-size: 15px;
    margin-top: 70px;
    font-weight: 600;
    color: #847b67;
}
.date-detail {
    /* color: #4CAF50;  */
    font-weight: 600;
    margin-top: 300px !important;
}