@charset "utf-8";

/*=============================================================================
   INDIAN VISTAS - Custom Stylesheet
   Layout: Homepage redesign matching new brand design
   Uses: Bootstrap 3 grid, Google Fonts (Cormorant Garamond, Marcellus, Great Vibes)
=============================================================================*/

/* ---------- CSS Variables ---------- */
:root {
  --iv-cream: #f6f1eb;
  --iv-cream-2: #f2ead8;
  --iv-cream-3: #ede3cc;
  --iv-dark-green: #15321f;
  --iv-purple: #7a3880;
  --iv-purple-dark: #2a1130;
  --iv-gold: #b08d57;
  --iv-gold-light: #d4aa72;
  --iv-text-dark: #2b2218;
  --iv-text-mid: #5c4f3a;
  --iv-text-light: #8a7a62;
  --iv-border: #e0d4bb;
}

/* ---------- Global Resets & Base ---------- */
body {
  background-color: var(--iv-cream);
  color: var(--iv-text-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none!important;
  color: inherit;
  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}

a:hover {
  text-decoration: none;
}

/* ============================================================
   NAVIGATION
============================================================ */

.menu-master {
  background: rgba(246, 241, 235, 0.7)!important;
  z-index: 99;
  position: absolute;
  border: none !important;
}

.menu-master.sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--iv-cream) !important;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.12);
  z-index: 9999;
  animation-name: fadeInDown;
  animation-duration: 400ms;
  animation-timing-function: ease;
}

.nav-container {
  padding: 0 40px;
}

.nav-row {
  display: flex;
  align-items: center;
}
.iv-heros {
  background-color: #f6f1eb;
}

.nav-logo-col {
  padding: 0;
}

/* Logo */
.logo {
  text-align: left !important;
}

.logo img {
  width: auto;
  max-width: 230px;
  height: auto;
  margin: 10px 0 !important;
  margin-left: 0 !important;
}

/* Mobile toggle button */
.nav-toggle-col {
  text-align: right;
  padding-right: 15px;
}

.nav-menu-111 {
  background: none !important;
  display: inline-block;
  cursor: pointer;
  padding: 10px 0;
}

.nav-menu-111 img {
  width: 32px !important;
  margin-top: 8px !important;
}

/* Desktop nav menu */
.menu {
  float: right;
  width: 100%;
}

.menu ul {
  float: right;
  margin: 0 !important;
  padding: 0;
  list-style: none;
}

.menu li {
  float: left;
  position: relative;
}

.menu li a {
  display: inline-block;
  padding: 10px 15px;
  font-family: "Marcellus", serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--iv-text-dark);
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s ease;
  text-decoration: none;
}

.menu li a:hover,
.menu li.act-link a {
  color: var(--iv-purple);
}

/* Dropdown */
.menu ul li > ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9999;
  width: 220px;
  background: var(--iv-cream);
  border-top: 2px solid var(--iv-purple);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.menu ul li > ul li {
  float: none;
  width: 100%;
}

.menu ul li > ul li a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  border-bottom: 1px solid var(--iv-border);
  color: var(--iv-text-dark);
  white-space: normal;
}

.menu ul li > ul li a:hover {
  background: var(--iv-cream-2);
  color: var(--iv-purple);
}

.menu li:hover > ul {
  display: block;
}

/* ============================================================
   HERO BANNER
============================================================ */

.iv-hero {
  position: relative;
  background-image: url(../images/indiavistas-banner-home.webp);
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 100vh;
  background-color: #f5efe3;
  background-position: right bottom;
  background-size: 73%;
  background-repeat: no-repeat;
}

.iv-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    105deg,
    rgba(247, 241, 230, 0.92) 0%,
    rgba(247, 241, 230, 0.75) 40%,
    rgba(247, 241, 230, 0.15) 75%,
    rgba(247, 241, 230, 0.05) 100%
  );
  z-index: 1;
}

.iv-hero .container {
  position: relative;
  z-index: 2;
  /*padding-top: 70px;
    padding-bottom: 70px;*/
}

.iv-hero-content {
  text-align: left;
  padding: 20px 0;
  padding-top: 50px;
}

.iv-hero-star {
  display: inline-block;
  color: var(--iv-gold);
  font-size: 30px;
  margin-bottom: 15px;
  letter-spacing: 6px;
}

.iv-hero-title {
  font-family: "Marcellus", serif;
  font-size: 68px;
  line-height: 80px;
  color: var(--iv-dark-green);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  padding: 0;
  font-weight: 500;
}

.iv-hero-title span {
  display: block;
  font-size: 62px;
  color: var(--iv-dark-green);
}

.iv-hero-rule {
  width: 80px;
  height: 2px;
  background: var(--iv-gold);
  margin-top: 28px;
}

/* ============================================================
   FEATURE STRIP (Dark green bar)
============================================================ */

.iv-feature-strip {
  background: var(--iv-dark-green);
  padding: 28px 0;
}

.iv-feature-row {
  display: flex;
  align-items: center;
}

.iv-feature-col {
  position: relative;
}

.iv-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 20px;
}

.iv-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border: 1px solid var(--iv-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--iv-gold);
  font-size: 17px;
}

.iv-feature-text strong {
  display: block;
  font-family: "Marcellus", serif;
  font-size: 14px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.3;
}

.iv-feature-text span {
  display: block;
  font-size: 13px;
  color: #ffffff;
  margin-top: 3px;
}

.iv-feature-divider {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 50px;
  background: var(--iv-gold);
}

/* ============================================================
   SECTION TITLES
============================================================ */

.iv-section {
  padding-bottom: 20px;
  background: var(--iv-cream);
}

.iv-section-title-row {
  padding: 60px 0 12px;
}

.iv-section-title {
  font-family: "Marcellus", serif;
  font-size: 28px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--iv-purple);
  text-align: center;
  margin: 0 0 10px;
  font-weight: 400;
  padding: 0;
}

.iv-title-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.iv-title-ornament span {
  display: block;
  width: 80px;
  height: 1px;
  background: var(--iv-gold);
}

.iv-title-ornament i {
  color: var(--iv-gold);
  font-size: 10px;
}

/* ============================================================
   CARD GRID (Experiences & Explore)
============================================================ */

.iv-full-container {
  padding: 0 !important;
  max-width: 100%;
}

.iv-no-gutters {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/*.iv-no-gutters > [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
*/
/*.iv-card-row {
    border-top: 1px solid var(--iv-border);
}*/

/*.iv-card-col {
    border-right: 1px solid var(--iv-border);
    border-bottom: 1px solid var(--iv-border);
}*/

.iv-card-col:last-child {
  border-right: none;
}

.iv-card-col .iv-card {
  background: var(--iv-cream);
  text-align: center;
  overflow: hidden;
  border: 1px solid var(--iv-border);
  border-radius: 8px;
}

.iv-card-img-wrap {
  overflow: hidden;
  /*aspect-ratio: 1 / 1;*/
  width: 100%;
}

.iv-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.iv-card:hover .iv-card-img-wrap img {
  transform: scale(1.08);
}

.iv-card-body {
  padding: 18px 10px 22px;
  background: #f6efe9;
}

.iv-card-title {
  font-family: "Marcellus", serif;
  font-size: 15px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--iv-purple);
  margin: 0 0 5px;
  font-weight: 600;
  padding: 0;
  text-align: center;
  min-height: 36px;
}

.iv-card-sub {
  font-size: 13px;
  color: var(--iv-purple-dark);
  margin: 0 0 12px;
  text-align: center;
  line-height: 1.4;
}

.iv-card-dot {
  width: 30px;
  height: 30px;
  background: var(--iv-purple);
  border-radius: 50%;
  margin: 0 auto;
  padding: 3px;
}

/* ============================================================
   CURATED EXPERIENCES (icon circles)
============================================================ */

.iv-curated-row {
  padding-bottom: 10px;
}

.iv-curated-col {
  text-align: center;
  margin-bottom: 36px;
}


.iv-curated-item {
  padding: 0 10px;
  text-align: center;
}

.iv-curated-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  border: 2px solid var(--iv-border);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
  background: #f6efe9;
}

.iv-curated-circle:hover {
  box-shadow: 0 8px 24px rgba(61, 29, 69, 0.2);
  transform: translateY(-3px);
}

.iv-curated-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.iv-curated-title {
  font-family: "Marcellus", serif;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--iv-purple);
  margin: 0 0 8px;
  font-weight: 600;
}

.iv-curated-desc {
  font-size: 13px;
  color: var(--iv-purple-dark);
  line-height: 1.5;
  text-align: center;
  margin: 0;
}

/* ============================================================
   QUOTE BANNER
============================================================ */

.iv-quote-banner {
  background: linear-gradient(
    100deg,
    var(--iv-purple-dark) 0%,
    var(--iv-purple) 60%,
    #5a2265 100%
  );
  position: relative;
  /*overflow: hidden;*/
  padding: 0;
}

.iv-quote-row {
  display: flex;
  align-items: stretch;
  min-height: 180px;
}

/*.iv-quote-tiger-col {
    padding: 0 !important;
}*/

.iv-quote-tiger-wrap {
  /*height: 100%;
    min-height: 180px;
    overflow: hidden;*/

  height: auto;
  min-height: auto;
  margin-top: -40px;
  /*overflow: hidden;*/
}

.iv-quote-tiger-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  display: block;
  min-height: 165px;
}

.iv-quote-text-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
}

.iv-blockquote {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  background: none !important;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 24px;
  line-height: 1.55;
  color: rgba(242, 234, 216, 0.95);
  text-align: left;
}

.iv-blockquote em {
  font-style: italic;
}

.iv-quote-flowers-col {
  padding: 0 !important;
  position: relative;
}

.iv-quote-flowers {
  position: relative;
  inset: 0;
  background-image: url("../img/icons/banner-leaf.webp");
  opacity: 0.6;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 180px;
}

/* ============================================================
   STATS STRIP
============================================================ */

.iv-stats-strip {
  background: var(--iv-cream);
  border-top: 1px solid var(--iv-border);
  padding: 20px 0px 10px;
}

.iv-stats-row {
  display: flex;
  align-items: center;
}

.iv-stat-col {
  text-align: center;
  margin-bottom: 10px;
  position: relative;
}
.iv-feature-icon-wrap img {
  width: 60px;
}

.iv-stat-col:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: var(--iv-border);
}

.iv-stat-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 20px;
}

.iv-stat-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border: 1px solid var(--iv-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--iv-gold);
  font-size: 16px;
}

.iv-stat-number {
  display: block;
  font-family: "Marcellus", serif;
  font-size: 22px;
  color: var(--iv-purple);
  font-weight: 600;
  line-height: 1;
  text-align: left;
}

.iv-stat-label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--iv-purple-dark);
  margin-top: 4px;
  text-align: left;
}
.iv-stat-icon-wrap img {
  width: 80px;
}

/* ============================================================
   FOOTER
============================================================ */

.iv-footer {
  background: var(--iv-dark-green);
  color: var(--iv-cream-2);
  padding: 36px 0 28px;
}

.iv-footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.iv-footer-logo img {
  max-width: 140px;
  opacity: 0.85;
  filter: brightness(1.8);
}

.iv-footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.iv-footer-nav a {
  font-family: "Marcellus", serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(242, 234, 216, 0.7);
  transition: color 0.2s ease;
}

.iv-footer-nav a:hover {
  color: var(--iv-gold);
}

.iv-footer-copy p {
  font-size: 12px;
  color: rgba(242, 234, 216, 0.5);
  margin: 0;
  text-align: right;
}

/* ============================================================
   BACK TO TOP
============================================================ */

.to-top-wrap {
  background: var(--iv-cream-2);
  border-top: 1px solid var(--iv-border);
  text-align: center;
  padding: 14px 0;
}

.to-top-wrap a {
  font-family: "Marcellus", serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--iv-text-light);
  transition: color 0.2s ease;
}

.to-top-wrap a:hover {
  color: var(--iv-purple);
}

.to-top-wrap i {
  position: static !important;
  font-size: 14px !important;
  color: var(--iv-gold) !important;
  margin-right: 6px;
}

/*
.pay-btn{
  background-color: #7a3880;
  color: #ffffff!important;
}


.pay-btn:hover{
  background-color: var(--iv-gold);
}*/
.title-icon-bottom img {
  width: 100px;
  margin: auto;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
============================================================ */

/* Tablet landscape (max 1024px) */
@media (max-width: 1024px) {
  .menu li a {
    padding: 22px 9px;
    font-size: 12px;
  }
  .iv-hero-title {
    font-size: 54px;
  }
  .iv-hero-title span {
    font-size: 50px;
  }
  .iv-feature-item {
    padding: 8px 12px;
  }
  .iv-blockquote {
    font-size: 22px;
  }
}

/* Tablet portrait (max 768px) */
@media (max-width: 768px) {
  /* Nav: hide desktop nav, show mobile */
  #navigation {
    display: none;
    width: 100%;
    background: var(--iv-cream);
    border-top: 1px solid var(--iv-border);
  }

  .menu ul {
    float: none !important;
    width: 100%;
    margin: 0 !important;
  }

  .menu li {
    float: none;
    width: 100%;
  }

  .menu li a {
    padding: 13px 18px;
    width: 100%;
    display: block;
    border-bottom: 1px solid var(--iv-border);
  }

  .menu ul li > ul {
    position: static !important;
    width: 100%;
    box-shadow: none;
    border-top: none;
    background: var(--iv-cream-2);
  }

  .menu ul li > ul li a {
    padding-left: 30px;
  }

  .nav-container {
    padding: 0 16px;
  }

  .logo img {
    max-width: 140px;
    margin: 10px 0 !important;
  }

  /* Hero */
  .iv-hero {
    min-height: 420px;
    align-items: center;
  }

  .iv-hero-title {
    font-size: 42px;
  }

  .iv-hero-title span {
    font-size: 38px;
  }

  /* Feature strip: stacked */
  .iv-feature-item {
    padding: 12px 1px;
  }

  .iv-feature-divider {
    display: none;
  }

  /* Section titles */
  .iv-section-title {
    font-size: 22px;
    letter-spacing: 2px;
  }

  /* Cards: 2 per row on mobile already via col-xs-6 */
  .iv-card-col {
    border-right: none;
    margin-bottom: 20px !important;
  }

  .iv-card-col:nth-child(2n) {
    border-right: none !important;
  }

  /* Quote */
  /*.iv-quote-row {
    flex-direction: column;
    min-height: auto;
  }*/

  .iv-quote-tiger-img {
    min-height: 180px;
    max-height: 200px;
  }

  .iv-blockquote {
    font-size: 20px;
  }

  /* Stats */
  .iv-stat-col::after {
    display: none;
  }

  .iv-stat-item {
    padding: 10px 10px;
  }

  /* Footer */
  .iv-footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .iv-footer-copy p {
    text-align: center;
  }

  .iv-footer-nav ul {
    justify-content: center;
  }
  .iv-quote-flowers {
    min-height: 160px;
  }
}

/* Mobile small (max 480px) */
@media (max-width: 480px) {
  .iv-hero {
    min-height: auto !important;
  }

  .iv-hero-title {
    font-size: 20px;
    line-height: 28px;
  }

  .iv-hero-title span {
    font-size: 15px;
  }

  .iv-section-title {
    font-size: 18px;
    letter-spacing: 1.5px;
  }

  .iv-card-title {
    font-size: 13px;
    min-height: auto;
  }

  .iv-blockquote {
    font-size: 19px;
  }

  .iv-curated-circle {
    width: 70px;
    height: 70px;
  }

  .iv-stat-number {
    font-size: 18px;
  }
}

/* Very small mobile (max 360px) */
@media (max-width: 360px) {
  .iv-hero-title {
    font-size: 26px;
  }

  .iv-hero-title span {
    font-size: 24px;
  }
}

/* custom css */
@media (max-width: 767px) {
  .nav-row {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
  }

  .nav-logo-col {
    width: 83.333333% !important;
    float: none !important;
  }

  .nav-toggle-col {
    width: 16.666667% !important;
    float: none !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
  }

  .nav-row > div:last-child {
    width: 100% !important;
    margin-top: 10px !important;
  }
  .iv-hero {
    height: auto;
    background-size: 100%;
    padding-top: 50px;
  }
  .iv-hero-rule {
    margin-top: 10px;
  }
  .iv-experiences-section .iv-card-body {
    padding: 12px 5px 25px !important;
    min-height: 136px;
  }
  .iv-explore-section .iv-card-body .iv-card-title {
    min-height: 31px;
  }
  .iv-section-title-row {
    padding-top: 25px;
  }
  .iv-heros.p-0 {
    padding-top: 30px !important;
  }
}

/* ============================================================
   MISSION & VISION SECTION
============================================================ */

.iv-mission-vision-section {
  padding: 0;
  background: var(--iv-dark-green);
  overflow: hidden;
}

.iv-mv-title-row {
  padding: 55px 0 35px;
}

.iv-mv-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto;
}

.iv-mv-ornament span {
  display: block;
  width: 120px;
  height: 1px;
  background: var(--iv-border);
}

.iv-mv-ornament i {
  width: 6px;
  height: 6px;
  background: var(--iv-gold);
  transform: rotate(45deg);
  display: block;
}

.iv-mv-row {
  align-items: stretch;
}

.iv-mv-img-col {
  padding: 0;
  /*min-height: 380px;*/
}

.iv-mv-img-col img {
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 15px;
}

.iv-mv-content-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 5px;
}

.iv-mv-content-col.iv-mv-has-divider {
  border-right: 1px solid var(--iv-border);
}

.iv-mv-inner {
  max-width: 380px;
  text-align: center;
  margin: 0 auto;
  min-height: 248px;
}

.iv-mv-icon {
     width: 50px;
    height: auto;
    margin: 0px auto 15px;
}

.iv-mv-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--iv-gold);
  stroke-width: 1.2;
}

.iv-mv-heading {
  font-family: "Marcellus", serif;
  font-size: 22px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--iv-purple);
  font-weight: 400;
  margin: 0 0 22px;
}

.iv-mv-text {
font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 16px;
    line-height: 25px;
    color: var(--iv-purple-dark);
    margin: 0 0 10px;
    text-align: center;
}

.iv-mv-text:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .iv-mv-img-col {
    min-height: 260px;
  }
  /*.iv-mv-img-col img {
    min-height: 260px;
  }*/
  .iv-mv-content-col.iv-mv-has-divider {
    border-right: none;
    border-bottom: 1px solid var(--iv-border);
  }
  .iv-mv-content-col {
    padding: 40px 25px;
  }
}

@media (max-width: 767px) {
  .iv-mv-title-row {
    padding: 35px 0 20px;
  }
  .iv-mv-ornament span {
    width: 60px;
  }
  .iv-mv-img-col {
    min-height: 200px;
  }
  /*.iv-mv-img-col img {
    min-height: 200px;
  }*/
}

/* ============================================================
   LEADERSHIP SECTION
============================================================ */

.iv-leadership-section {
  background: var(--iv-dark-green);
  padding: 60px 0;
  position: relative;
}

.iv-leader-row {
  position: relative;
}

/*.iv-leader-col {
  padding: 20px 55px;
}*/

.iv-leader-col-divider {
  position: relative;
}

.iv-leader-col-divider::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%23b08d57' stroke-width='1.2'%3E%3Ccircle cx='32' cy='32' r='4'/%3E%3Cpath d='M32 6c4 8 4 16 0 26 -4-10-4-18 0-26z'/%3E%3Cpath d='M32 58c4-8 4-16 0-26 -4 10-4 18 0 26z'/%3E%3Cpath d='M6 32c8-4 16-4 26 0 -10 4-18 4-26 0z'/%3E%3Cpath d='M58 32c-8 4-16 4-26 0 10-4 18-4 26 0z'/%3E%3Cpath d='M13 13c7 1 13 5 19 13 -8-2-14-6-19-13z'/%3E%3Cpath d='M51 51c-7-1-13-5-19-13 8 2 14 6 19 13z'/%3E%3Cpath d='M13 51c7-1 13-5 19-13 -8 2-14 6-19 13z'/%3E%3Cpath d='M51 13c-7 1-13 5-19 13 8-2 14-6 19-13z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
}

.iv-leader-col-divider::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  width: 1px;
  background: rgba(176, 141, 87, 0.45);
}

.iv-leader-inner {
  gap: 0;
}

.iv-leader-photo-frame {
  position: relative;
  padding: 10px;
}

.iv-leader-photo-frame img {
  width: 100%;
  height: auto;
  border: 2px solid var(--iv-gold-light);
  border-radius: 10px;
}

/*.iv-corner {
  position: absolute;
  width: 26px;
  height: 26px;
  border: 2px solid var(--iv-gold);
}

.iv-corner-tl {
  top: -4px;
  left: -4px;
  border-right: none;
  border-bottom: none;
}

.iv-corner-tr {
  top: -4px;
  right: -4px;
  border-left: none;
  border-bottom: none;
}

.iv-corner-bl {
  bottom: -4px;
  left: -4px;
  border-right: none;
  border-top: none;
}

.iv-corner-br {
  bottom: -4px;
  right: -4px;
  border-left: none;
  border-top: none;
}*/

/*.iv-leader-content {
  padding: 10px 0 10px 30px;
}*/

.iv-leader-name {
  font-family: "Marcellus", serif;
  font-size: 26px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--iv-purple);
  font-weight: 400;
  margin: 0 0 16px;
}

.iv-leader-text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 17px;
    line-height: 25px;
    color: var(--iv-purple-dark);
    margin: 0 0 10px;
}
.iv-leader-content p{
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 17px;
    line-height: 25px;
    color: var(--iv-purple-dark);
    margin: 0 0 10px;   
}
.iv-leader-content p:empty{

    margin: 0px!important;   
}
.iv-leader-text:last-child {
  margin-bottom: 0;
}

.iv-leadership-section-s{
  background: var(--iv-cream);
}

.iv-leadership-section-s .info-box-row:nth-child(even){
flex-direction: row-reverse;
}

.wildlife-rows .mantras-bg img{
      width: 100%;
    height: auto;
    border: 2px solid var(--iv-gold-light);
    border-radius: 10px;
}
.iv-col-circle-divider:after{
  content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    transform: translateX(-50%);
    width: 1px;
    background: rgba(176, 141, 87, 0.45);
}

.wildlife-rows .iv-info-text{
font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 18px;
    line-height: 30px;
    color: var(--iv-purple-dark);
    margin: 0 0 10px;
}

.iv-mantras-section .wildlife-rows:nth-child(odd) .rows-filip{
flex-direction: row-reverse;
}

.iv-mantras-section .wildlife-rows:nth-child(odd) .rows-filip .iv-col-circle-divider:after{
  right: auto;
  left: 0;
}


@media (max-width: 991px) {
  
  .iv-leader-col-divider::before,
  .iv-leader-col-divider::after {
    display: none;
  }
  .iv-leader-col-divider {
    border-top: 1px solid rgba(176, 141, 87, 0.35);
    margin-top: 10px;
  }
  .iv-leader-content {
    padding: 20px 0 0;
    text-align: center;
  }
  .iv-leader-photo-frame {
    max-width: 100%;
    padding:0px!important;
  }
}

/* ============================================================
   OUR MANTRAS SECTION
============================================================ */

.iv-mantras-section {
  background: var(--iv-cream);
  padding: 55px 0 60px;
  position: relative;
  overflow: hidden;
}

.iv-mantras-corner {
  position: absolute;
  bottom: 0;
  width: 220px;
  height: auto;
  pointer-events: none;
  opacity: 0.95;
}

.iv-mantras-corner-left {
  left: 0;
}

.iv-mantras-corner-right {
  right: 0;
}

.iv-mantras-title-row {
  padding-bottom: 30px;
}

.iv-mantras-title {
  font-family: "Marcellus", serif;
  font-size: 26px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--iv-purple);
  text-align: center;
  font-weight: 400;
  margin: 0 0 10px;
}

.iv-mantras-row {
  position: relative;
}

.iv-mantra-col {
  padding: 25px 35px;
}

.iv-mantra-inner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.iv-mantra-icon-circle {
  flex: 0 0 90px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--iv-cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.iv-mantra-icon-circle svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--iv-gold);
  stroke-width: 1.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.iv-mantra-heading {
  font-family: "Marcellus", serif;
  font-size: 19px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--iv-text-dark);
  font-weight: 400;
  margin: 6px 0 16px;
}

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

.iv-mantra-list li {
      display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 17px;
    color: var(--iv-purple-dark);
    margin-bottom: 10px;
    line-height: 25px;
    font-weight: 600;
}

.iv-mantra-list li:last-child {
  margin-bottom: 0;
}

.iv-mantra-bullet {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  /*margin-top: 4px;*/
}

.iv-mantra-bullet svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--iv-gold);
  stroke-width: 1.4;
}



.philosophy-bg {
    position: absolute;
    left: 0px;
    bottom: 0;
}
.philosophy-bg.right {
left: auto!important;
right: 0px!important;
}
.philosophy-bg img{
  width: 140px;
}

.philosophy-wrapper .iv-curated-col {
 margin-bottom: 20px;
}

.mantras-icon-circle{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 0px;
    border: 2px solid var(--iv-border);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    background:#ede5dd;
    padding: 10px;
}
.mantras-icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.iv-curated-col:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 100%;
    background: var(--iv-border);

}

.why-traval-wrapper .iv-why-circle{
  width: 80px;
  margin: 0 auto 18px;
}
.philosophy-wrapper .iv-curated-circle{
padding: 12px;
}

.iv-about-info .iv-mv-text{
  text-align: justify;
  color: #ede8db;
}
.iv-about-info .iv-mv-heading{
  font-size: 20px;
  color: var(--iv-gold-light);
}


@media (max-width: 991px) {
  .iv-mantras-corner {
    display: none;
  }
  .philosophy-bg img {
    width: 100px;
}
.iv-col-circle-divider:after{
  display: none;
}
}

@media (max-width: 767px) {
  .iv-mantra-col {
    padding: 20px 15px;
  }
  .iv-mantra-inner {
    gap: 16px;
  }
  .iv-mantra-icon-circle {
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
  }
  .iv-mantras-title {
    font-size: 22px;
    letter-spacing: 2px;
  }
  .philosophy-bg img {
    width: 60px;
}

.iv-mantra-text-wrap{
  margin: 20px 0px;
}
.iv-mantras-section .iv-leader-inner{
  margin-bottom: 40px;
}
.iv-mantras-section .iv-leader-col-divider .mantras-icon-circle{
margin-top: 50px;
}
.iv-mantras-section {
  padding-bottom: 0px!important;
}
.philosophy-bg{
  left: 0px!important;
}
.philosophy-bg.right{
  right: 0px!important;
}
}











/*.philosophy-wrapper:before{
content: '';
position: absolute;
left: 0;
top: 0;
z-index: 9;
background-image: url("../images/philosophy-left.png");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 180px;
}*/






.iv-page-title-section {
  background: var(--iv-cream-2);
  padding: 70px 0 30px;
  text-align: center;
}

.iv-page-title-section h1 {
  font-family: "Marcellus", serif;
  font-size: 36px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--iv-purple);
  margin: 0 0 10px;
}

.iv-page-breadcrumb {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 16px;
  color: var(--iv-text-mid);
}

.iv-page-breadcrumb a {
  color: var(--iv-text-mid);
  text-decoration: none;
}

.iv-page-breadcrumb a:hover {
  color: var(--iv-purple);
}

/* ---------- Info Cards Section ---------- */

.iv-contact-info-section {
  padding: 20px 0 50px;
  background: var(--iv-cream);
}

.iv-info-card {
  background: #f6ede5;
  border: 1px solid var(--iv-border);
  border-radius: 8px;
  padding: 35px 18px;
  text-align: center;
  height: 100%;
}

.iv-info-icon-circle {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--iv-gold);
  border-radius: 50%;
  color: var(--iv-gold);
  font-size: 22px;
}

.iv-info-card-title {
  font-family: "Marcellus", serif;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--iv-purple);
  margin: 0 0 14px;
  font-weight: 400;
}

.iv-info-card-text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--iv-text-dark);
  margin: 0;
  text-align: center!important;
}

/* ---------- Send Us A Message Section ---------- */

.iv-message-form-section {
  padding: 10px 0 70px;
  background: var(--iv-cream);
}

.iv-message-form-box {
  background: #f6ede5;
  border: 1px solid var(--iv-border);
  border-radius: 10px;
  padding: 45px 40px;
  max-width: 720px;
  margin: 0 auto;
}

.iv-message-form-box .iv-section-title {
  margin-bottom: 6px;
}

.iv-message-form-box .title-icon-bottom {
  margin-bottom: 28px;
}

.iv-form-group {
  margin-bottom: 22px;
  text-align: left;
}

.iv-form-group label {
  display: block;
  font-family: "Marcellus", serif;
  font-size: 14px;
  color: var(--iv-text-dark);
  margin-bottom: 8px;
}

.iv-form-control {
  width: 100%;
  background: transparent;
  border: 1px solid var(--iv-border);
  border-radius: 5px;
  padding: 11px 15px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 16px;
  color: var(--iv-text-dark);
}

.iv-form-control:focus {
  outline: none;
  border-color: var(--iv-gold);
}

textarea.iv-form-control {
  resize: vertical;
}

.iv-form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 26px;
  text-align: left;
}

.iv-form-check input[type="checkbox"] {
  margin-top: 5px;
}

.iv-form-check label {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 15px;
  color: var(--iv-text-mid);
}

.iv-form-check a {
  color: var(--iv-purple);
  text-decoration: underline;
}

.iv-btn-send {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--iv-dark-green);
  color: #ffffff;
  border: none;
  padding: 13px 34px;
  border-radius: 5px;
  font-family: "Marcellus", serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.iv-btn-send:hover {
  background: var(--iv-purple);
  color: #ffffff;
}




.iv-testi-card {
    position: relative;
    background: #f6ede5;
    border: 1px solid var(--iv-border);
    border-radius: 10px;
    padding: 30px 30px 5px;
    margin-bottom: 30px;
    overflow: hidden;
    min-height: 100%;
}
.iv-testi-quote-icon {
    color: var(--iv-gold);
    font-size: 26px!important;
    margin-bottom: 12px;
    display: block!important;
}

.iv-testi-text {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--iv-text-dark);
    position: relative;
    z-index: 2;
}
.iv-testi-text p {
    margin-bottom: 8px;
}
.iv-testi-text p:empty {
    margin-bottom: 0px;
}
.iv-testi-text br{
    display:none;
}

.iv-testi-author {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 16px;
    margin-top: 10px;
    position: relative;
    z-index: 2;
}

.iv-testi-author strong {
    font-family: "Marcellus", serif;
    color: var(--iv-purple);
    font-weight: 500;
}
.iv-testi-author span {
    color: var(--iv-text-dark);
}















/* ---------- Responsive ---------- */

@media (max-width: 767px) {
  .iv-message-form-box {
    padding: 30px 22px;
  }
  .iv-page-title-section h1 {
    font-size: 26px;
  }
}


