@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

html, body {
  font-family: 'Inter', sans-serif;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Apply globally */
html, body {
  font-family: "Inter", sans-serif;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}
p {
  font-size: 16px;
  font-weight: 300;
  font-family: 'Inter', sans-serif;
  color: #000000;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
   
.facilities{
  padding: 20px 0;
  text-align: center;
  background-color: #ffffff;
}



/* ===== Hero ===== */
.hero {
  position: relative;
  width: 100%;
  height: 60vh;              /* control banner height */
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;         /* IMPORTANT: makes it behave like a banner */
  display: block;
}

.hero-btn {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}


.btn:hover {
  background: #1e4ed8;
}


/* ===== About ===== */
.about {
  padding: 40px 0;
  text-align: center;
  background-color: #ffffff;
}

.about h2 {
  margin-bottom: 10px;
}

/* ===== Services ===== */
.services {
  background: #f9f9f9;
  padding: 60px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: center;
}

/* ===== CTA ===== */
.cta {
  background: #2563eb;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}


.readmore {
  text-align: left;
  font-size: 16px;
  margin-top: 20px;
  color: #000000;
  font-weight:300;
  font-family: 'Inter', sans-serif;
  
 
}

.desc {
  text-align: left;
  font-size: 16px;
  margin-bottom: 20px;
  color: #000000;
  font-weight:300;
  font-family: 'Inter', sans-serif;
  
 
}





/* ===== Hero ===== */
.hero {
  position: relative;
  height: 60vh;
  overflow: hidden;
  
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  z-index: 2;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: -10px;
}

/* ===== Activities ===== */
.activities {
  padding: 40px 0 60px 0;
  background: #ffffff;
}

.section-title {
  text-align: center;

  font-size: 46px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: #328ad5;
}
.facilities-title {
  text-align: center;
  margin-bottom: 0px;
  font-size: 46px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: #328ad5;
}


.section-title-1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 46px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: #328ad5;
}
.activities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 40px;
}

.activity-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.activity-card:hover {
  transform: translateY(-5px);
}

.activity-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.activity-card h3 {
  padding: 15px 15px 5px;
  font-size: 24px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: #328ad5;
}

.activity-card p {
  padding: 0 15px 20px;
  color: #000001c7;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}

/* ===== Responsive ===== */
@media (min-width: 768px) {
  .activities-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* day tour */



/* ===== Header ===== */
.site-header {
  background: #0b2545;
  color: #fff;
  padding: 15px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}




/* ===== Hero ===== */
.hero {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0,0,0,0.4); */
}



/* ===== Intro Strip ===== */
.intro-strip {
  background: #f1f5f9;
  padding: 30px 0;
  text-align: center;
  font-size: 1.05rem;
}

/* ===== Timeline ===== */
.day-tours {
  padding: 40px 0 0px 0;
}


.timeline {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timeline-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 10px;
}

.timeline-content {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.tour-time {
  display: inline-block;
  background: #328ad5;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-family: 'Inter', sans-serif;
  position: relative;
  left: 80%;
}

.timeline-content h3 {
  margin-bottom: 5px;
  font-size: 24px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
}

.timeline-content p {
  color: #000001c7;
  font-size: 16px;
  font-weight: 300;
}

/* ===== Highlight Strip ===== */
.highlight-strip {
  background: linear-gradient(90deg, #ecebeb, #e7e6e6);
  color: #fff;
  padding: 50px 0;
}

.highlight-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.btn {
  background: #fff;
  color: #328ad5;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}
 .highlight-inner h2 {
  font-size: 24px;
  color: #000000;
  font-weight: 400;
}

/* ===== Responsive ===== */
@media (min-width: 768px) {
  .timeline-item {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .timeline-img {
    flex: 1;
  }

  .timeline-content {
    flex: 1;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* party */

  .sbr-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 10px 18px;
  border: 1.5px solid #0f172a;
  color: #0f172a;
  background: #6bad62;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.sbr-read-btn:hover {
  background: #57975b;
  color: #ffffff;
  text-decoration: none;
  
}
a .sbr-read-btn:hover {
    text-decoration: none;
    
}

    .sbr-services-section {
  background: #ecebeb;
  padding-top: 150px;
    padding-bottom: 100px;
  overflow: hidden;
}

.sbr-services-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* LEFT SIDE */
.sbr-services-left {
  flex: 1;
}

.sbr-services-tag {
  display: inline-block;
  background: #2b8cff;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 12px;
}

.sbr-services-title {
  font-size: 48px;
  font-weight: 400;
  color: #328ad5;
  margin-bottom: 25px;
  line-height: 1.2;
}

.sbr-services-intro {
  color: #000000;
  
  margin-bottom: 10px;
  line-height: 1.8;
}

/* GRID */
.sbr-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 40px;
}

.sbr-service-card {
  max-width: 260px;
  padding-bottom: 20px;
}

.sbr-service-icon {
  width: 48px;
  height: 48px;
  background: #f1f5f9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 12px;
}
.sbr-service-icon img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  padding-bottom: 10px;
  margin-left: 60px;
}

.sbr-service-card h4 {
  font-size: 24px;
  color: #0f172a;
  margin-bottom: 8px;
  margin-top: 8px;
}

.sbr-service-card p {
  color: #000000;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
  font-weight: 400;
}

.sbr-service-card a {
  color: #0f172a;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
}

.sbr-service-card a:hover {
  text-decoration: none;
}

/* RIGHT SIDE */
.sbr-services-right {
  flex: 1;
  position: relative;
}

.sbr-image-stack {
  position: relative;
  width: 420px;
  height: 520px;
  margin-left: auto;
}

.sbr-img-back {
  position: absolute;
  top: -60px;
  left: -40px;
  width: 300px;
  height: 400px;
  right: 10px;
  background: #ffffff ;
    padding: 6px;
 
    /* 5-sided polygon shape */
  clip-path: polygon(
    60% 0%,   /* top-left angled */
    100% 30%,  /* top-right */
    100% 100%, /* right-bottom */
    0% 100%, /* bottom-left angled */
    0% 0%    /* left-bottom */
  );
}


.sbr-img-front {
  position: absolute;
  bottom: 0;
  right: -60px;
  width: 300px;
  height: 400px;

 
  background: #fff;
  padding: 6px;

  /* 5-sided polygon shape */
  clip-path: polygon(
    60% 0%,   /* top-left angled */
    100% 30%,  /* top-right */
    100% 100%, /* right-bottom */
    0% 100%, /* bottom-left angled */
    0% 0%    /* left-bottom */
  );
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .sbr-services-wrapper {
    flex-direction: column;
  }

  .sbr-image-stack {
    width: 300px;
    height: 380px;
    margin: 0 auto;
  }

  .sbr-services-grid {
    grid-template-columns: 1fr;
  }

  .sbr-services-title {
    font-size: 36px;
  }
}

.grouptours  {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
  font-weight: 300;
  color: #000000;
}
.grouptours-title {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 20px;
  
  color: #328ad5;
}

/* restaurant  */


.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


/* ===== Hero ===== */
.food-hero {
  position: relative;
  height: 60vh;
  background: url("https://eventsmanagementkerala.com/wp-content/uploads/elementor/thumbs/sagara90-r87oc5c57fv5a9kjgxyipbw5mq0l1b984ai1dp8sjg.webp") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.food-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.food-hero-text {
  position: relative;
  color: #fff;
  text-align: center;
  z-index: 2;
}

.food-hero-text h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}




/* ===== Footer ===== */
.bottom-footer {
  background: #020617;
  color: #fff;
  padding: 40px 0 20px;
}

.footer-flex {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.copy-line {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: #cbd5e1;
}

/* ===== Responsive ===== */
@media (min-width: 768px) {
  .footer-flex {
    flex-direction: row;
    justify-content: space-between;
  }
}


.about-showcase {
  background: #f0f0f0;
}
.about-showcase1 {
  
  background: #ffffff;
}
.about-showcase2 {

  background: #f0f0f0;
}

.about-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
}

/* ===== Left Image ===== */
.about-visual {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.blue-shape {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 220px;
  height: 220px;
  background: #328ad5;
  z-index: 1;
}

.about-photo {
  width: 450px;
  height: 320px;
  border-radius: 0px;
  position: relative;
  z-index: 2;
  top: 10px;
  left: 10px;
}

/* Experience Badge */
.experience-badge {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background: #ffffff;
  padding: 18px 22px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  text-align: center;
  z-index: 3;
  width: 160px;
}

.badge-icon {
  font-size: 26px;
  margin-bottom: 6px;
}

.badge-number {
  font-size: 32px;
  font-weight: 700;
  color: #518a5f;
}

.badge-text {
  font-size: 14px;
  color: #555;
}

/* ===== Right Content ===== */
.about-info {
  max-width: 500px;
  margin-bottom: 100px;
  margin-top: 50px;
}

.about-label {
  color: #518a5f;
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
}

.about-info h2 {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #328ad5;
}

.title-line {
  width: 60px;
  height: 4px;
  background: #328ad5;
  margin-bottom: 20px;
}

.about-desc {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* Points */
.about-points {
  list-style: none;
  margin-bottom: 30px;
  padding: 0;
}

.about-points li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #333;
}

.about-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #518a5f;
  font-weight: bold;
}

/* Button */
.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000000;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-btn span {
  background: #ffffff;
  color: #000;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
}

.about-btn:hover {
  background: #2b4cff;
}

/* ===== Responsive ===== */
@media (min-width: 900px) {
  .about-wrap {
    flex-direction: row;
    justify-content: space-between;
  }

  .about-visual {
    max-width: 480px;
  }

  .about-info {
    max-width: 520px;
  }

}
 .bar{
    color: #328ad5;
    text-align: center;
    margin-bottom: 10px;
    font-size: 36px;
    font-weight: 300;
    font-family: 'Inter', sans-serif;
}


/* facilities */


  .bucket-section {
  padding: 50px 20px 120px 20px;
  background: #ffffff;
}

.bucket-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  display: flex;
  align-items: center;
}

/* Left Blue Box */
.bucket-content {
  background: #f3f3f3;
  color: #000000;
  padding: 60px;
  width: 55%;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
   border:#7fc3d8 1px solid ;
}

.bucket-content h2 {
  font-size: 30px;
  font-weight: 400;
  color: #328ad5;
  line-height: 1.3;
}

.bucket-content .divider {
  width: 60px;
  height: 2px;
  background: #328ad5;
  margin-bottom: 20px;
}

.profile-divider {
  width: 60px;
  height: 2px;
  background: #328ad5;
  margin-bottom: 20px;
}

.bucket-content p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 30px;
  width: 400px;
}

.btn-explore {
  display: inline-block;
  padding: 8px 28px;
  border: 1px solid #328ad5;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  width: fit-content;
  transition: 0.3s ease;
  
  background-color: #328ad5;

}

.btn-explore:hover {
  background: #ffffff;
  color: #000000;
}

.btn-room {
  display: inline-block;
  padding: 2px 8px;
  border: 1px solid #328ad5;
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  width: fit-content;
  transition: 0.3s ease;
  border-radius: 0px;
  background-color: #328ad5;
  margin-left: 20px;
  margin-bottom: 20px;
}

.btn-room:hover {
  background: #ffffff;
  color: #000000;
}

/* Right Image */
.bucket-image {
  position: absolute;
  right: 0;
  width: 55%;
  height: 550px;
 padding-top: 100px;
}

.bucket-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media(max-width:1065px){
  .bucket-content p{
    width: 300px;
  }
}


@media (max-width: 992px) {
  .bucket-container {
    flex-direction: column;
  }

  /* Image comes first */
  .bucket-image {
    position: relative;
    order: 1;
    width: 100%;
    height: 280px;              /* perfect proportional height */
    padding-top: 0;
    margin: 0 auto;
    overflow: hidden;
  }

  .bucket-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;         /* keeps proportion */
  }

  /* Content comes after image */
  .bucket-content {
    order: 2;
    width: 100%;
    margin-top: -40px;         /* slight overlap for luxury effect */
    padding: 50px 30px 40px;
    min-height: auto;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    text-align: left;
  }

  .bucket-content h2 {
    font-size: 26px;
  }

  .bucket-content p {
    width: 100%;
    font-size: 16px;
    font-weight: 300;
  }

  .btn-explore {
    margin-top: 10px;
  }
}
@media (max-width: 700px) {

  .bucket-container {
    flex-direction: column;
  }

  /* Image on top - full width card style */
  .bucket-image {
    position: relative;
    width: 100%;
    height: auto;              /* auto height */
    padding-top: 0;
    margin: 0;
    box-shadow: none;
  }

  .bucket-image img {
    width: 100%;
    height: auto;             /* keeps original proportion */
    object-fit: cover;
    border-radius: 0;
    display: block;
  }

  /* Content below image - full width */
  .bucket-content {
    width: 100%;
    margin-top: 0;
    padding: 40px 25px 45px;
    min-height: auto;
    border-radius: 0;
    box-shadow: none;
    text-align: left;
  }

  .bucket-content h2 {
    font-size: 24px;
  }

  .bucket-content p {
    width: 100%;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
  }

  .btn-explore {
    margin-top: 10px;
  }
}


/* Overlay Image */
.content-overlay {
  position:absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url('/assets/images/pattern/pattern-3.png') no-repeat center;
  background-size: cover;

  z-index: 0;
}
.content-overlay-1 {
  position:absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url('/assets/images/pattern/pattern-3.png') no-repeat center;
  background-size: cover;

  z-index: 0;
}


.bucket2-section {
  position: relative;
  overflow: hidden;
}


/* Keep content above overlay */
.bucket2-container {
  position: relative;
  z-index: 2;
}
/* ===== Second Card : Image Left, Content Right ===== */

.bucket2-section {
  padding: 20px 20px 40px 20px;
  background: #f0f0f0;
}

.bucket2-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  display: flex;
  align-items: center;
}

/* Left Image */
.bucket2-image {
  width: 55%;
  height: 100%;
  z-index: 50;
  padding-top: 100px;
}

.bucket2-image img {
  width: 660px;
  height: 450px;
  object-fit: cover;
  display: block;
}

/* Right Content Box */
.bucket2-content {
  background: #f3f3f3;
  color: #000000;
  padding: 0px 0px 0px 150px;
  width: 55%;
  min-height: 420px;
  margin-left: -100px;        /* overlap effect like first card */
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 10;
  border:#7fc3d8 1px solid ;
}

.bucket2-content h2 {
  font-size: 30px;
  font-weight: 400;
  color: #328ad5;
  line-height: 1.3;
}

.bucket2-content .divider {
  width: 60px;
  height: 2px;
  background: #328ad5;
  margin-bottom: 20px;
}

.bucket2-content p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 30px;
  width: 450px;
}
/* Responsive */
@media(max-width:1180px){
 .bucket2-image img {
    width: 550px;
    height: 450px;
  }
  
  .bucket2-image {
    width: 40%;
  }
  .bucket2-content{
    margin-left: 40px;
  }
  .bucket2-content p{
    width: 300px;
  }
}

@media (max-width: 992px) {
  .bucket2-container {
    flex-direction: column;
  }

  /* Image comes first */
  .bucket2-image {
    position: relative;
    order: 1;
    width: 100%;
    height: 280px;              /* perfect proportional height */
    padding-top: 0;
    margin: 0 auto;
    overflow: hidden;
  }

  .bucket2-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;         /* keeps proportion */
  }

  /* Content comes after image */
  .bucket2-content {
    order: 2;
    width: 100%;
    margin-top: -40px;         /* slight overlap for luxury effect */
    padding: 50px 30px 40px;
    min-height: auto;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    text-align: left;
    margin-left: 0px;
  }

  .bucket2-content h2 {
    font-size: 26px;
  }

  .bucket2-content p {
    width: 100%;
    font-size: 16px;
    font-weight: 300;
  }

  .btn-explore {
    margin-top: 10px;
  }
}

  @media (max-width: 700px) {

  .bucket2-container {
    flex-direction: column;
  }

  /* Image on top */
  .bucket2-image {
    width: 100%;
    height: auto;
  }

  .bucket2-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  /* Content below image */
  .bucket2-content {
    width: 100%;
    margin-left: 0;
    margin-top: 0;
    padding: 40px 25px 45px;
    min-height: auto;
    box-shadow: none;
  }

  .bucket2-content p {
    width: 100%;
    font-size: 16px;
    font-weight: 300;
  }
}



/* ===== BOOKING BAR ===== */
.booking-wrapper {
  position: relative;
  margin-top: -70px;
  z-index: 10;
}

.booking-bar {
  max-width: 1200px;
  margin: auto;
  background: #fff;
  display: flex;
  gap: 30px;
  padding: 25px 30px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.booking-item {
  flex: 1;
}

.booking-item label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #328ad5;
  display: block;
  margin-bottom: 8px;
}

.booking-item input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ddd;
  padding: 8px 0;
  font-size: 14px;
  outline: none;
}

.counter-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.counter-box button {
  width: 28px;
  height: 28px;
  border: 1px solid #ccc;
  background: none;
  cursor: pointer;
  font-size: 16px;
}

.counter-box span {
  font-size: 14px;
  min-width: 20px;
  text-align: center;
}

.booking-action {
  flex: 1.3;
}

.booking-btn {
  width: 100%;
  height: 100%;
  background: #328ad5;
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.booking-btn:hover {
  background: #328ad5;
}


/* =========================
   RESPONSIVE BOOKING BAR
========================= */

@media (max-width: 992px) {

  .booking-bar {
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
  }

  .booking-item,
  .booking-action {
    flex: 1 1 45%;
  }

}

@media (max-width: 768px) {

  .booking-wrapper {
    margin-top: -40px; /* reduce overlap */
  }

  .booking-bar {
    flex-direction: column;
    gap: 18px;
    padding: 20px 18px;
  }

  .booking-item,
  .booking-action {
    flex: 1 1 100%;
  }

  .booking-btn {
    height: 50px;
  }

}

@media (max-width: 480px) {

  .booking-bar {
    padding: 18px 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
  }

  .booking-item label {
    font-size: 11px;
  }

  .booking-item input {
    font-size: 13px;
  }

}
/* ===== WORLD SECTION ===== */
.world-section {
  padding: 60px 0px 0px 0px;
  text-align: center;
  max-width: 1160px;
  margin: auto;
}

.world-section h2 {
  font-size: 46px;
  color: #328ad5;
  margin-bottom: 16px;
  font-weight: 300;
}
.world-section h1 {
  font-size: 46px;
  color: #328ad5;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 300;
}


.world-divider {
  width: 70px;
  height: 2px;
  background: #328ad5;
  margin: 1px auto 30px;
}

.world-section p {
  font-size: 16px;
 
  color: #000000;
  text-align: left;
  font-weight: 300;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    height: 60vh;
  }

  .booking-bar {
    flex-direction: column;
    gap: 20px;
  }

  .booking-btn {
    padding: 14px;
  }

  .world-section {
    padding: 80px 20px;
  }

  .world-section h2 {
    font-size: 28px;
  }
}

.signup-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  background: url("https://ttg.com.bd/uploads/tours/hotels/474_sagara-beach-resort-1jpg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
}

/* Dark overlay */
.signup-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.4) 35%,
    rgba(0,0,0,0.1) 70%
  );
}

/* Content */
.signup-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
  padding-left: 80px;
  color: #ffffff;
}

.signup-content h2 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 15px;
}

.signup-divider {
  width: 60px;
  height: 2px;
  background: #ffffff00;
  display: block;
  margin-bottom: 20px;
}
.ayurveda-divider{
  width: 60px;
  height: 2px;
  background: #ffffff00;
  display: block;
  margin-top: -40px;
}

.signup-content p {
  font-size: 15px;
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.9);
}

/* Button */
.signup-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #328ad5;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.3s ease;
  border: 1px solid #328ad5;
}

.signup-btn:hover {
  background: #ffffff;
  color: #000000;
}


 @media (max-width: 768px) {
  .signup-hero {
    height: 60vh;
  }

  .signup-content {
    padding: 0 25px;
  }

  .signup-content h2 {
    font-size: 28px;
  }

  .signup-content p {
    max-width: 100%;
  }
}
.ayurveda-section {
  padding: 20px 20px;
  background: #ffffff;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.kids-club-section {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

/* Header */
.kids-club-header {
  max-width: 1160px;
  margin: 0 auto 70px;
}

.kids-club-header h2 {
  font-size: 46px;
  font-weight: 300;
  color: #328ad5;
  margin-bottom: 15px;
}

.kids-divider {
  width: 70px;
  height: 2px;
  background: #328ad5;
  display: block;
  margin: 0 auto 25px;
}

.kids-club-header p {
  font-size: 16px;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 35px;
  text-align: left;
  font-weight: 300;
}

/* Button */
.kids-btn {
  display: inline-block;
  padding: 14px 40px;
  background: #328ad5;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.3s ease;
  border: 1px solid #328ad5;
}

.kids-btn:hover {
  background: #ffffff;
  color: #000000;
}

/* Images Grid */
.ayurveda-images {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ayurveda-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 992px) {
  .ayurveda-images {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .ayurveda-images {
    grid-template-columns: 1fr;
  }

  .kids-club-header h2 {
    font-size: 28px;
  }
}


/* ===== ROOMS & SUITES SECTION ===== */
.suite {
  padding: 50px 20px 70px 20px;
  background: #ffffff;
  font-family: 'Inter', sans-serif;
}

.suite .container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* Title */
.suite-title {
  font-size: 46px;
  font-weight: 300;
  color: #328ad5;
  margin-bottom: 20px;
  position: relative;
}

/* .suite-title::after {
  content: "";
  width: 70px;
  height: 2px;
  background: #328ad5;
  display: block;
  margin: 15px auto 0;
} */

/* Description */
.suite .desc {
  max-width: 1160px;
  margin: 30px auto 0px;
  font-size: 16px;
  line-height: 1.8;
  color: #000000;
}

/* Grid */
.suite-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.suite-card {
  background: #ffffff;
  text-align: left;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

.suite-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

/* Image */
.suite-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

/* Card Content */
.suite-card h3 {
  font-size: 24px;
  font-weight: 400;
  margin: 25px 25px 10px;
  color: #328ad5;
}

.suite-card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: #000000;
  margin: 0 25px 0px;
  flex-grow: 1;
}

/* Button */
.btn-room {
  display: inline-block;
  margin: 0 25px 30px;
  padding: 12px 28px;
  border: 1px solid #328ad5;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.3s ease;
  width: fit-content;
}

.btn-room:hover {
  background: #ffffff;
  color: #000000;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .suite-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .suite-title {
    font-size: 28px;
  }

  .suite .desc {
    margin-bottom: 40px;
  }

  .suite-grid {
    grid-template-columns: 1fr;
  }

  .suite-card img {
    height: 200px;
  }
}


  .rooms-offer-section {
  padding: 60px 20px;
  background: #f7f7f7;
}

.rooms-offer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Left Content */
.rooms-offer-content {
  width: 45%;
}

.rooms-offer-content h2 {
  font-size: 36px;
  font-weight: 300;
  color: #328ad5;
  line-height: 1.;
  margin-bottom: 0px;
}

.rooms-offer-divider {
  width: 60px;
  height: 2px;
  background: #328ad5;
  display: block;
  margin-bottom: 25px;
}

.rooms-offer-content p {
  font-size: 16px;
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 35px;
  font-weight: 300;
}

.rooms-offer-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #328ad5;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.3s ease;
  border: 1px solid #328ad5;
}

.rooms-offer-btn:hover {
  background: #ffffff;
  color: #000000;
}

/* Right Image */
.rooms-offer-image {
  width: 50%;
}

.rooms-offer-image img {
  width: 500px;
  height: auto;
  display: block;
}
.rooms-offer-title {
  font-size: 46px;
  font-weight: 300;
  color: #328ad5;
  margin-top: 0px;
  margin-bottom: 10px;
  position: relative;
  text-align: center;
}
.rooms-offer-desc {
  font-size: 16px;
  font-weight: 300;
  color: #000000;
  max-width: 1200px;
  margin-bottom: 60px;
  position: relative;
  text-align: left;
    margin: 20px auto 60px auto;
}

@media (max-width: 768px) {
  .rooms-offer-container {
    flex-direction: column;
    gap: 30px;
  }

  .rooms-offer-image {
    width: 100%;
    order: 1;
  }

  .rooms-offer-content {
    width: 100%;
    order: 2;
  }

  .rooms-offer-content h2 {
    font-size: 30px;
  }

  .rooms-offer-content p {
    max-width: 100%;
  }
}

.divider-gap{
  height: 120px;
}

  .resort-inclusions {
  padding: 60px 20px;
  background: #ffffff;
  font-family: 'Inter', sans-serif;
}

.resort-inclusions .container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* Title */
.inclusion-title {
  font-size: 46px;
  font-weight: 300;
  color: #328ad5;
  margin-bottom: 15px;
}

.inclusion-divider {
  width: 70px;
  height: 2px;
  background: #328ad5;
  display: block;
  margin: 0 auto 25px;
}

.inclusion-desc {
  max-width: 1160px;
  margin: 0 auto 60px;
  font-size: 16px;
  line-height: 1.8;
  color: #000000;
  font-weight: 300;
}

/* Grid */
.inclusion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Item */
.inclusion-item {
  padding: 35px 25px;
  border: 1px solid #eee;
  transition: 0.3s ease;

  
}

.inclusion-item:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transform: translateY(-5px);
}

.inclusion-item .icon {
  font-size: 34px;
  display: block;
  margin-bottom: 20px;
}

.inclusion-item h4 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #328ad5;
}

.inclusion-item p {
  font-size: 16px;
  line-height: 1.4;
  color: #000000;
  font-weight: 300;
}

/* Responsive */
@media (max-width: 900px) {
  .inclusion-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .inclusion-title {
    font-size: 28px;
  }

  .inclusion-grid {
    grid-template-columns: 1fr;
  }
}


/* ayurveda */


.header {
  display: flex;
  justify-content: space-between;
  padding: 20px 50px;
  background: #3a5a40;
  color: #fff;
}

.header a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
}

.hero-ayurveda {
  height: 70vh;
  background: url('/ayurvedic.png') center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.hero-ayurveda button {
  padding: 12px 30px;
  background: #588157;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
}


.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
}

.card {
  background: white;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
}

.footer {
  background: #344e41;
  color: white;
  text-align: center;
  padding: 30px;
}


.trust-strip {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  text-align: center;
  padding: 40px;
  background: #e8ede6;
  font-weight: 600;
}

.trust-strip > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #328ad5;
  font-size: 24px;
  font-weight: 400;
}

.strip-img {
  width: 100px;
  height: 100px;

}

/* PROGRAM CARD */
.program {
  background: white;
  padding: 40px;
  margin-top: 30px;
  border-left: 5px solid #42804d;
}

/* FLEX LAYOUT */
article.program {
  max-width: 900px;
  margin: auto;
  display: flex;
  align-items: flex-start;
  gap: 30px;

}

/* LEFT CONTENT */
.program-content {
  flex: 1;
}

/* HEADING */
.program-content h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  color: #328ad5;
}

/* LIST */
article.program ul {
  list-style: inside disc;
  margin-top: 15px;
  padding: 0;
}

/* IMAGE */
.program img {
  max-width: 200px;
  height: 200px;
  object-fit: cover;
  
}

.ayurveda-info  {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.2;
  
  color: #328ad5;
}
.ayurveda {
  padding: 30px 0;
  text-align: center;
  background-color: #f7f7f7;
}
.ayurveda-desc {
  text-align: left;
  font-size: 16px;
  margin-top: 10px;
  color: #000000;
  font-weight:300;
  font-family: 'Inter', sans-serif;
  
 
}
@media(max-width:1200px){
  .ayurveda-desc{
    margin: 0 30px;
  }
  p{
    margin: 0 30px;
  };
}

.treatment-section{
  padding: 0px 20px;
  background: #f7f7f7;

  font-family: 'Inter', sans-serif;
}
.treatment-classification {
  background: #f7f7f7;
  padding: 40px 20px;
  font-family: 'Inter', sans-serif;
  color: #000;
  max-width: 920px;
  margin: auto;
 
}

.treatment-classification h3 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 300;
  color: #328ad5;
}

.treatment-classification h4 {
  font-size: 30px;
  margin-top: 25px;
  margin-bottom: 0px;
  font-weight: 400;
  color: #328ad5;
}

.treatment-classification p {
  font-size: 16px;
  font-weight: 300;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 15px;
  max-width: 900px;
}
p.treatment-tagline {
  font-size: 16px;
  color: #000000;
  font-weight: 400;
  text-align: left;
  max-width: 800px;
 
}

.arrow-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.arrow-list li {
  font-size: 16px;
  font-weight: 300;
  color: #000000;
  margin-bottom: 8px;
  padding-left: 30px;
  position: relative;
}

.arrow-list li::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: #328ad5;
}

.arrow-list span{
  color: #328ad5;
  font-size: 16px;
  font-weight: 500;
}

.program-divider {
  width: 60px;
  height: 80px;
  background: #f6f9f5;
  display: block;
  margin-bottom: 0px;
}



.medical-tourism {
  max-width: 1100px;
  margin: 0px auto;
  padding: 40px;
  display: flex;
  align-items: flex-start;
  gap: 50px;
  background-color: #ffffff;
}

/* LEFT SIDE */
.medical-content {
  flex: 1;
}

.medical-content h2 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 20px;
  color: #328ad5;
  line-height: 1.2;
}

/* LIST */
.arrow-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.arrow-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  font-size: 16px;
  color: #000000;
}

.arrow-list li::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: #328ad5;
}

/* RIGHT SIDE IMAGE */
.medical-reason {
  width: 520px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}


.panchakarma-poster {
  background: radial-gradient(circle at top, #ffffff, #ffffff);
  padding: 120px 60px 140px;
  font-family: "Inter", sans-serif;
  color: #fff;
  
}

.poster-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

/* LEFT TEXT */
.poster-text {
  flex: 1;
}



.poster-text h2 {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.4;
  color: #328ad5;
  margin-bottom: 40px;
}



/* VISUAL */
.poster-visual {
  position: relative;
  width: 300px;
  height: 300px;
}

/* MAIN IMAGE */
.main-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 6px solid #fff;
  object-fit: cover;
}

/* SMALL CIRCLES */
.circle {
  position: absolute;
  text-align: center;
  font-weight: 600;
}

.circle img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 4px solid #fff;
  object-fit: cover;
  display: block;
  margin: auto;
}

.circle span {
  margin-top: 6px;
  display: block;
  color: #000000;
  font: 24px;
  font-weight: 300;
}

/* EXACT POSITIONS */
.basti {
  top: -120px;
  left: 60%;
  transform: translateX(-50%);
}

.nasya {
  top: -40px;
  right: -100px;
}

.virechana {
  bottom: 40px;
  right: -120px;
}

.vamana {
  bottom: -120px;
  left: 95%;
  transform: translateX(-50%);
}

.rakta {
  top: 340px;
  left: 60px;
}


/* SECTION */
.treatments-section {
  padding: 40px 40px;
  background: #e8ede6;
  text-align: center;
}

.treatments-section h2 {
  font-size: 36px;
  color: #328ad5;
  margin-bottom: 50px;

  font-weight: 300;
}

/* GRID */
.treatments-card-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.treatments-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  padding: 20px 20px 30px 20px;
}


/* CARD TITLE */
.treatments-card h3 {
  font-size: 24px;
  font-weight: 400;
  color: #328ad5;
  margin-bottom: 20px;
  line-height: 1.1;
}

/* IMAGE */
.treatments-card img {
  width: 100%;
  max-width: 220px;
  height: 300px;
  margin: auto;
  display: block;
  
}

/* HOVER */
.treatments-card:hover {
  transform: translateY(-8px);
  
}


  .mv-class{
    padding: 30px;
    background-color: #f3f3f3;
  }
.beach-experience {
  padding: 0px 20px 60px 20px;
  background: linear-gradient(to bottom, #ffffff, #f0f8f7);
  text-align: center;
}

.beach-experience h2 {
  font-size: 36px;
  font-weight: 300;
  color: #328ad5;
  margin-bottom: 40px;
}

.beach-grid {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.beach-grid h3 {
  font-size: 24px;
  font-weight:400;
  color: #328ad5; /* sea tone */
  margin-bottom: 10px;
}
 
.beach-grid p {
  font-size: 16px;
  color: #000000;
  font-weight: 300;
}


.gallery-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #ffffff;
}
.gallery-section h2 {
  font-size: 46px;
  font-weight: 300;
  color: #328ad5;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  
}


  .Journey-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(to top, #ffffff, #ffffff);
}

.Journey {
  display: flex;
  flex-direction: column;
  gap: 20px;
    max-width: 800px;
  margin: 20px auto;
}

.Journey-section h2 {
  font-size: 46px;
  font-weight: 300;
  color: #328ad5;
  margin-bottom: 40px;

  
}

.event {
  border-left: 4px solid #328ad5;
  padding: 10px 20px;
  margin-bottom: 0px;
  text-align: left;
  background-color: #f3f3f3;
}

.event span {
  font-weight: 400;
  font-size: 16px;
  color: #328ad5;
}



.founder-section {
  padding: 80px 20px;
  background: #f6f9f4;
}

.founder-content {
  max-width: 1000px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

.founder-content img {
  width: 220px;
 height: 220px;;
}

.founder-content h2{
  font-size: 36px;
  font-weight: 400;
  color: #328ad5;
 
}
.founder-content strong{
  color: #328ad5;
  font-size: 16px;
  font-weight: 500;
}


  .doctor-section {
  text-align: center;
  padding: 0px 20px 60px;
  background-color: #ffffff;
}

.doctor-section h2 {
  font-size: 46px;
  font-weight: 300;
  color: #328ad5;
  margin-bottom: 40px;
  line-height: 1;
}
.doctor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.doctor-card {
  background: #f7f7f7;
  padding: 30px 0 30px 0px ;
  width: 330px;

}

.doctor-card img {
  width: 250px;
  height: 310px;
  border-radius: 0%;
  object-fit: cover;
  margin-bottom: 15px;
}

.doctor-card h3 {
  color: #328ad5;
  margin-bottom: 0  px;
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}

/* ===============================
   RESPONSIVE DOCTOR SECTION
================================ */

@media(max-width:1030px){
  .doctor-card{
    width: 250px;
  }
  .doctor-grid{
    gap: 10px;
     
     max-width: 800px;
  }
  .doctor-card img {
    width: 220px;
    height: 280px;
  }
}
/* Tablet */
@media (max-width: 992px) {

  .doctor-section h2 {
    font-size: 36px;
  }

  .doctor-card img {
    width: 220px;
    height: 280px;
  }

}

@media(max-width:963px){
  .doctor-grid{
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  }
}

/* Mobile */
@media (max-width: 600px) {

  .doctor-section {
    padding: 0 15px 40px;
  }

  .doctor-section h2 {
    font-size: 28px;
    margin-bottom: 25px;
  }

  .doctor-grid {
    gap: 20px;
  }

  .doctor-card {
    padding: 20px 0;
  }

  .doctor-card img {
    width: 100%;
    max-width: 240px;
    height: 240px;
  }

  .doctor-card h3 {
    font-size: 20px;
  }

}
@media(max-width:470px){
  .doctor-card{
    margin: 10px auto;
  }
  }



/* MAIN CONTENT */
.about-content {
  max-width: 1100px;
  margin: 40px auto 60px auto;
  padding: 0 20px;
}

.about-text h1 {
  font-size: 46px;
  font-weight: 300;
  color: #328ad5;
  margin-bottom: 0px;
  text-align: center;
}

.about-text p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #000000;
}

/* VALUES */
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.value-card {
  background: #f6f9f4;
  padding: 30px;
  
}

.value-card h3 {
  font-size: 24px;
  font-weight: 400;
  color: #328ad5;
  margin-bottom: 10px;
}

/* MISSION & VISION */
.about-mission,
.about-vision {
  max-width: 900px;
  margin: 40px auto;
  padding: 60px 60px;
  text-align: center;
  background-color: #e6e6e6;
}

.about-mission h2,
.about-vision h2 {
  font-size: 36px;
  font-weight: 300;
  color: #328ad5;
  margin-bottom: 15px;
}

.about-mission p,
.about-vision p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
}

/* WHY CHOOSE US */
.about-why {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
}

.about-why h2 {
  font-size: 36px;
  font-weight: 300;
  color: #328ad5;
  margin-bottom: 25px;
}

.arrow-list {
  list-style: none;
  padding: 0;
}

.arrow-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 14px;
  font-size: 16px;
}

.arrow-list li::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: #328ad5;
}


.ayur-tariff{
  width: 200px;
  height: 200px;
}

@media(max-width:1200px){
  .arrow-list{
    padding: 0 30px;
  }
}
/* packages SBR */


.package-detail {
  padding: 80px 20px;
  background: #f8f6f1;
  font-family: 'Inter', sans-serif;
}
/* Vertical offset effect */
.package-left {
  margin-top: 40px;   /* pushes image DOWN */
}

.package-right {
  margin-top: -40px;  /* pulls content UP */
}
.package-wrapper {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: flex-start; /* SAME BASELINE */
}

/* IMAGE */
.package-left img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

/* CONTENT PANEL */
.package-right {
  background: #e00000;          /* red panel */
  color: #000;
  padding: 60px 50px;
  margin-left: -120px;          /* HORIZONTAL OVERLAY ONLY */
  position: relative;
  z-index: 2;
}


.suitable-box {
  padding: 25px;
  background: #efede6;
}

.suitable-box h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.suitable-box ul {
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.6;
}

/* RIGHT SIDE */
.package-right {
  padding: 40px 40px 0px 50px;
  background-color: #fff;
}

.package-no {
  font-size: 14px;
  letter-spacing: 1px;
}

.package-right h2 {
  font-size: 34px;
  font-weight: 400;
  margin: 10px 0 20px;
}

.package-desc {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.package-meta {
  font-size: 14px;
  margin-bottom: 30px;
}

.package-meta div {
  margin-bottom: 6px;
}

/* INCLUDES */
.package-includes h4 {
  font-size: 14px;
  margin-bottom: 15px;
}
.include-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(2px, 1fr));
  gap: 0px;
  text-align: center;
}

.icon-item {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ICON */
.icon-item img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
 margin-left: 10px;
 margin-right: 10px;
  transition: transform 0.3s ease;
}

/* NAME (Hidden initially) */
.icon-name {
  white-space: nowrap;      /* force single line */
  position: absolute;       /* float it */
  bottom: -28px;            /* adjust position */
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  background: #dadada6b;
  color: #000000;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}
/* HOVER EFFECT */
.icon-item:hover img {
  transform: scale(1.1);
}

.icon-item:hover .icon-name {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
/* RESPONSIVE */
@media (max-width: 900px) {
  .package-wrapper {
    grid-template-columns: 1fr;
  }

  .package-left img {
    height: 300px;
  }
}


.tariff-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
  font-family: 'Inter', sans-serif;
}

.tariff-section h2 {
  font-size: 36px;
  color: #328ad5;
  margin-bottom: 10px;
}

.tariff-section h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

.tariff-note {
  font-size: 14px;
  margin-bottom: 40px;
}

.tariff-block {
  margin-bottom: 60px;
}

.tariff-block h4 {
  margin: 10px 0 15px;
  font-size: 16px;
}

.season-label {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.season-label.ayurveda { background: #8b1c13; }
.season-label.high { background: #8b1c13; }
.season-label.peak { background: #8b1c13; }

.tariff-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.tariff-table th,
.tariff-table td {
  border: 1px solid #333;
  padding: 8px 10px;
  text-align: center;
width: 80px;
}

.tariff-table td:first-child {
  width: 300px;     
  text-align: center;
}

.tariff-table th {
  background: #f1efe6;
  font-weight: 600;
}

.tariff-table td:first-child {
  text-align: left;
  padding-left: 30px;
}
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* smooth scrolling on iPhone */
}

/* Optional: keep table from shrinking */
.tariff-table {
  min-width: 1100px;   /* adjust based on number of columns */
}

.centre {
  text-align: center;
  padding-bottom: 40px;
  padding-top: 40px;
}



p.saga-inner-tagline {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  text-align: center;
  line-height: 1.3;
  color: #000000;
 padding-top: 5px;

  max-width: 1920px;
  font-weight: 300;
}

.saga-underline {
  width: 200px;
  height: 2px;
  margin: 6px auto 20px;
  background: #328ad5;
  position: relative;
  border-radius: 50px;
}


.pdf-section {
  padding: 0 20px 60px 20px;
  text-align: center;
}

.pdf-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #328ad5;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  border-radius: 0px;
  transition: 0.3s ease;
 
}

.pdf-btn:hover {
  background: #ffffff;
  color: #000000;
   border: #328ad5 solid 1px;
}

.qr-box {
  margin-top: 30px;
}

.qr-box img {
  width: 150px;
  height: 150px;
}

.qr-box p {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 300;
}



  .resort-amenities {
  padding: 60px 20px 90px;
  background: #f7f7f7;
  font-family: 'Inter', sans-serif;
}

.resort-amenities .container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}


 .wellness{
    color: #328ad5;
    text-align: center;
    margin-bottom: 10px;
    font-size: 46px;
    font-weight: 300;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
}

.rejuvenation-content{
  font-size: 36px;
  line-height: 1.2;
  color: #ffffff;
  font-weight: 400;
  text-align: center;
  margin-bottom: 60px;
}

.certificates {
  max-width: 650px;
  margin: 50px auto;           /* Center the box */
  padding: 40px;              
  text-align: left;
   border: 1px solid transparent;
  background: 
    linear-gradient(rgb(250, 244, 216)) padding-box,
    linear-gradient(135deg, #b4b4b4, #b4b4b4 ) border-box;

}

.certificates h2 {
  margin-bottom: 0px;
  font-size: 34px;
  font-weight: 400;
  color: #328ad5;
  text-align: center;
  line-height: 1.2;
}

.certificates p {
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  padding-bottom: 10px;
}

.certificates img{
  width: 150px;
 

  display: block;
  margin: 20px auto;
}

.about {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}

/* Overlay Background */
.about .content-overlay {
  position: absolute;
  inset: 0;
  background: url('/assets/images/pattern/pattern-4.png') center/cover no-repeat;
  
  z-index: 1;
}

/* Make content appear above overlay */
.about .container {
  position: relative;
  z-index: 2;
}

.experience-section{
   position: relative;
  overflow: hidden;
}

/* Overlay Background */
.experience-section .content-overlay {
  position: absolute;
  inset: 0;
  background: url('/assets/images/pattern/pattern-3.png') center/cover no-repeat;
  
  z-index: 1;
}

/* Make content appear above overlay */
.experience-section .container {
  position: relative;
  z-index: 2;
}


/* ===== Activities ===== */
.ayurveda {
  padding: 40px 0 60px 0;
  background: #f7f7f7;
}


.facilities-title {
  text-align: center;
  margin-bottom: 0px;
  font-size: 46px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: #328ad5;
}



.experience-section {
  padding: 80px 20px;
  background: #f7f7f7;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 6 columns for better control */
  gap: 30px;
}

/* Top Row */
.cards-grid .experience-card:nth-child(1) {
  grid-column: 1 / 3;
}

.cards-grid .experience-card:nth-child(2) {
  grid-column: 3 / 5;
}

.cards-grid .experience-card:nth-child(3) {
  grid-column: 5 / 7;
}

/* Bottom Row - Centered */
.cards-grid .experience-card:nth-child(4) {
  grid-column: 2 / 4;
}

.cards-grid .experience-card:nth-child(5) {
  grid-column: 4 / 6;
}

.experience-card {
  background: #ffffff;
  padding: 40px;
  
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}
/* Title */
.card-title {
  font-size: 24px;
  margin-bottom: 25px;
  color: #328ad5;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

/* Items */
.card-items {
  flex: 1;
}

.card-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}

.card-item img {
  width: 30px;
  height: 30px;
}

.card-item span {
  font-size: 16px;
  color: #000000;
  font-weight: 300;
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.2;
}


/* ===============================
   RESPONSIVE EXPERIENCE SECTION
================================ */

/* Tablet */
@media (max-width: 992px) {

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Reset manual grid placements */
  .cards-grid .experience-card {
    grid-column: auto !important;
  }

}

/* Mobile */
@media (max-width: 600px) {

  .experience-section {
    padding: 50px 15px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .experience-card {
    padding: 25px;
  }

  .card-title {
   
    margin-bottom: 18px;
  }

 

}

.treatment-tariff-section{
  max-width: 900px;
  margin: 60px auto;
  text-align: center;
}

.treatment-tariff-section h2{
  color:#328ad5;
  letter-spacing:1px;
  margin-bottom: 5px;
  font-size: 46px;
  font-weight: 300;
}

table{
  width:100%;
  border-collapse: collapse;
  background:#ffffff;
}

thead{
  background:#000;
  color:#fff;
  font-size: 24px;
}

th, td{
  padding:12px 10px;
  border:1px solid #d0d0d0;
  font-size:14px;
}

th{
  font-weight:600;
}

td:nth-child(1){
  width:60px;
  text-align:center;
}

td:nth-child(2){
  width:250px;
  text-align:left;
}


td:nth-child(3){
  width:150px;
}

td:nth-child(4){
  width:100px;
  text-align:center;
}

tbody tr:hover{
  background:#dddddd;
  transition:0.3s;
}

.isha-img{
  width: 300px;
  align-items: center;

}



.ayur-program-section {
  background-image: url('/assets/images/banner/ayurvrda-banner-15.jpg');
  background-size: cover;          /* Makes image fill properly */
  background-position: center;     /* Centers image */
  background-repeat: no-repeat;
  padding: 70px 170px;
  overflow: hidden;
}


/* SLIDER STRUCTURE */
.slider-container {
  position: relative;
  display: flex;
  align-items: center;
}

.slider {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  transition: transform 0.6s ease;
  width: 1200px;
}

/* CARD (3 visible) */
.program-card {
  min-width: 33.3333%;
  padding: 0 15px;
  box-sizing: border-box;
}

.program-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;

}
.content-overlay-5 {
  position:absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url('/assets/images/pattern/pattern-4.png') no-repeat center;
  background-size: cover;
 opacity: 0.5;
  z-index: 0;
}
.card-content {
  position: relative;
  z-index: 6; /* Ensure content is above the overlay */
}

.card-content {
  background: white;
  padding: 25px;
 height: 400px;
  text-align: left;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}
.card-content h3{
  font-size: 22px;
 
  color: #328ad5;
  font-weight: 400;
  z-index: 6;
  margin-top: -10px;
 
}
.card-content p {
  flex-grow: 1;
   z-index: 6;
  
}

.btn {
  padding: 12px 30px;
  background: #42b2f3;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-size: 13px;
}

/* ARROWS */
.nav {
  position: absolute;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.nav img {
  width: 45px;
  height: 45px;
}

.prev { left:   -60px; }
.next { right: -60px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .program-card { max-width: 50%; }
  .prev { left:   -90px; }
.next { right: -90px; }
.ayur-program-section {
  padding: 70px 110px;
}
}


@media (max-width: 800px) {
  .program-card { max-width: 100%; }
}
@media (max-width: 623px) {
  .program-card { max-width: 30%; }
}

@media (max-width: 606px) {
  .program-card { width: 250px; }
   .ayur-program-section {
  padding: 70px 0px;
}
.prev { display: none; }
.next { display: none;}
}


.ayur-consultant {
  background: #f7f7f7;
  padding: 80px 60px;
}

.ayur-consultant-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: auto;
  gap: 60px;
  background-color: #ffffff;
  padding: 30px;
}


 .consultant{
    color: #328ad5;
    text-align: center;
    margin-bottom: 60px;
    font-size: 46px;
    font-weight: 300;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
}
/* LEFT CONTENT */
.ayur-consultant-content {
  flex: 1;
}

.ayur-consultant-name {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 0px;
  color: #328ad5;
}

.ayur-consultant-designation {
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 25px;
  color: #328ad5;
}
.ayur-consultant-content h3{
  font-size: 22px;
  font-weight: 300;
  color: #000000;
  line-height: 1;
}
.ayur-consultant-content p {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 18px;
  color: #000000;
  font-weight: 300;
}

/* RIGHT IMAGE */
.ayur-consultant-image {
  flex: 1;
  text-align: right;
}

.ayur-consultant-image img {
  max-width: 500px;
  height: auto;
}

/* Responsive */
@media (max-width: 992px) {
  .ayur-consultant-wrapper {
    flex-direction: column;
    text-align: left;
  }

  .ayur-consultant-image {
    text-align: center;
    margin-top: 40px;
  }
}
span.italic{
  font-style: italic;
}

.action-section{
  padding:60px 20px;
  background:#ffffff;
}

.action-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.action-btn{
  display:block;
  text-align:center;
  padding:8px;
  background:#328ad5;
  color:#ffffff;
  text-decoration:none;
  font-size:16px;
  font-weight: 300;
  border-radius:0px;
  transition:0.3s;
}

.action-btn:hover{
  background:#ffffff;
  color: #000;
  border: #328ad5 solid 1px;
  font-weight: 400;
}

@media(max-width:1113px){
  .action-container{
    max-width: 900px;
  }
  h1.thiruvananthapuram {
    font-size: 36px;
  }
}
/* MOBILE */
@media(max-width:768px){

  .action-container{
    grid-template-columns:1fr;
  }

}


.btn-tours {
  display: inline-block;
  padding: 4px 28px;
  border: 1px solid #328ad5;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  width: fit-content;
  transition: 0.3s ease;
  margin-top: 10px;
  background-color: #328ad5;
  font-size: 14px;
}

.btn-tours:hover {
  background: #ffffff;
  color: #000000;
}