:root {
  --font-title: "Playfair Display SC", serif;
  --font-body: "Raleway", sans-serif;

  --title-size: 52px;
  --tagline-size: 22px;
  --body-size: 18px;
}



body {
        margin: 0;
        padding: 0;
        background: #FAF7F2;
        font-family: var(--font-body);
        line-height: 1.65;
    }
.hero-title,
.culture-title,
.founder-title,
.featured-title,
.services-title,
.dest-title,
.faq-title,
.contact-title,
.testi-title {
  font-family: var(--font-title);
  font-size: var(--title-size); 
  font-weight: 700;
}


.hero {
    position: relative;
    width: 100%;
    min-height: 100svh;
    height: 100vh;
    overflow: hidden;
    background: url(images/FRONT\ PAGE\ VIDEO\ HOME\ PAGE.jpg) center / cover no-repeat;
}

/* VIDEO CONTAINER */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 100vw;
    height: 56.25vw;
    min-width: 177.77vh;
    min-height: 100vh;

    transform: translate(-50%, -50%) scale(1.03);
    filter: blur(6px);

    pointer-events: none;
    opacity: 0;

    transition:
        opacity 0.9s ease,
        transform 1.1s ease,
        filter 1.1s ease;
}



/* OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
}

/* CONTENT */
.hero-content {
    position: absolute;
    bottom: 12%;
    left: 6%;
    z-index: 3;
    color: #fff;
    width: 90%;
    max-width: 700px;
    text-align: left;
}

/* TITLE */
.hero-title {
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
    white-space: normal;
    text-shadow:
        0 3px 6px rgba(0,0,0,0.55),
        0 8px 24px rgba(0,0,0,0.45);
}

/* TEXT */
.hero-slogan {
    line-height: 1.6;
    margin-bottom: 36px;
      text-shadow:
        0 2px 4px rgba(0,0,0,0.5),
        0 6px 18px rgba(0,0,0,0.35);
}

/* BUTTON */
.hero-btn {
    display: inline-block;
    padding: 14px 34px;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}

/* TABLET & MOBILE */
@media (max-width: 768px) {
    .hero-content {
        bottom: 10%;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        max-width: 92%;
    }

    .hero-slogan {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .hero-btn {
        padding: 12px 28px;
        font-size: 15px;
    }
}

/* SMALL PHONES */
@media (max-width: 480px) {
    .hero {
        height: 92vh;
    }

    .hero-slogan {
        font-size: 15px;
    }
}



.culture-clean {
  background: #ec5f95;            
  padding: 90px 20px;            
  text-align: center;
  color: #fff;
}

.culture-content {
  max-width: 1100px;             
  margin: 0 auto;
  font-family: var(--font-body);
}


.culture-title {
  font-weight: 700;
  color: #FFD740;                
  margin-bottom: 12px;
}


.culture-motto {
  color: #ffffff;
  margin-bottom: 40px; 
  letter-spacing: 0.5px;
}



.culture-text {
  color: #ffffff;
  margin-bottom: 26px;
}


.culture-sub {
  font-weight: 700;
  font-size: calc(var(--body-size) + 2px); 
  margin: 28px 0 10px;
}



.culture-sub:nth-of-type(1) { color: #FFD740; } 
.culture-sub:nth-of-type(2) { color: #FFD740; } 
.culture-sub:nth-of-type(3) { color: #FFD740; } 
.culture-text strong {
  font-weight: 600;
  color: #ffffff;
}

@media (max-width: 992px) {
  .culture-content {
    max-width: 92%;
  }
}

@media (max-width: 768px) {
  .culture-clean {
    padding: 70px 16px;
  }

  .culture-title {
    font-size: 38px;
  }

  .culture-motto {
    font-size: 20px;
  }

  .culture-text {
    font-size: 16px;
  }

  .culture-sub {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .culture-title {
    font-size: 32px;
  }

  .culture-motto {
    font-size: 18px;
  }
}


.founder-section {
    display: flex;
    width: 100%;
    min-height: 720px;
    background: #faf8f1;
}


.founder-image {
    flex: 1;
    background: url('images/Namaste.jpg') no-repeat center center;
    background-size: cover;
}


.founder-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background: #63A9A0; 
}


.founder-content {
    max-width: 620px;
    text-align: center;
    color: #ffffff;
    position: relative;
    padding-top: 140px;   
}


/* PEACOCK IMAGE  */
.founder-content::before {
    content: "";
    position: absolute;
    top: -30px;               
    left: 50%;
    transform: translateX(-50%);
    width: 240px;       
    height: 240px;
    background: url("images/NAMASTE RIGHT .png") no-repeat center center;
    background-size: contain;
}



/* TITLE */
.founder-title {
    font-weight: 700;
    margin-bottom: 18px;
    color: #ffffff;
}

/* TEXT */
.founder-text {
    margin-bottom: 18px;
    color: #f5f5f5;
}

.founder-text strong {
    font-weight: 600;
    color: #ffffff;
}

/* BUTTON */
.founder-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 34px;
    border: 2px solid #ffffff;
    border-radius: 40px;
    color: #ffffff;
   font-family: var(--font-body);
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.founder-btn:hover {
    background: #ffffff;
    color: #000;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .founder-section {
        flex-direction: column;
    }

    .founder-image {
        min-height: 420px;
    }

    .founder-content {
        padding-top: 110px;
    }

    .founder-content::before {
        top: -25px;
    }
}

/* MOBILE FIX  */
@media (max-width: 550px) {

    .founder-right {
        padding: 40px 20px;   
    }

    .founder-content {
        max-width: 100%;
        padding-top: 100px;  
    }

    .founder-content::before {
        width: 140px;
        height: 140px;
        top: 0;
    }

    .founder-title {
        font-size: 32px;
        margin-bottom: 14px;
    }

    .founder-text {
        font-size: 14.5px;
        line-height: 1.6;    
        margin-bottom: 14px;
    }

    .founder-btn {
        margin-top: 22px;
        padding: 10px 28px;
        font-size: 14px;
    }
}



/*  Featured  */
.featured-section {
    padding: 80px 0;
    background: #4FB477;
    text-align: center;
}

.featured-title {
    font-weight: 700;
    margin-bottom: 50px;
    color: #ffffff;
}

.featured-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 40px;
    animation: scroll 18s linear infinite;
}

.logo-box {
    flex: 0 0 200px;     
    height: 140px;       
    background: #fff;
    border-radius: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
}


.logo-box img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;   
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
    .logo-box {
        flex: 0 0 150px;
        height: 110px;
    }
    .featured-title {
        font-size: 32px;
    }
}

/* services */

.services-section {
    position: relative;
    padding: 45px 20px 55px;  
    text-align: center;
    overflow: hidden;
}

.services-bg {
    position: absolute;
    inset: 0;
    background: url("images/OUR\ SERVICES.jpg") no-repeat center center;
    background-size: cover;
    z-index: 0;
}

.services-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25); 
}

.services-title,
.services-tagline,
.services-intro,
.services-grid,
.services-btn-wrapper {
    position: relative;
    z-index: 2;
}

.services-title {
    color: #fff;
    margin-bottom: 4px;
}

.services-tagline {
    color: #fff;
    margin-bottom: 10px;
}

.services-intro {
    max-width: 820px;
    margin: 0 auto 28px;   
    color: #f1f1f1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 300px);  
    grid-auto-rows: 180px;                    
    gap: 12px;                               
    justify-content: center;
    align-items: center;
    margin: 32px auto 0;
}

.service-card {
    width: 300px;
    height: 180px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent;
    opacity: 1;
    transform: none;
}



.service-card.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.service-card img {
    width: 80%;
    height: 80%;
    object-fit: cover;     
    border-radius: 16px;
}


.service-card:hover img {
    transform: scale(1.05);
}


.services-btn-wrapper {
    margin-top: 34px;
}

.services-btn {
   font-family: var(--font-body);
    background: #e90909;
    color: #fff;
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.services-btn:hover {
    background: #062e9e;
    transform: translateY(-2px);
}

@media (max-width: 768px) {

    .services-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 170px;
    gap: 14px;
  }

    .services-title {
        font-size: 34px;
    }

    .service-card {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

    .services-intro {
        font-size: 14.5px;
        margin-bottom: 22px;
    }

    .service-card img {
        max-width: 240px;
    }
}


.destinations-section {
    padding: 70px 20px 110px; 
    background: #faf7ef;
    text-align: center;
}

/* SECTION HEAD */
.dest-title {
    font-weight: 700;
    margin-bottom: 6px;
    color: #111;
}

.dest-tagline {
    margin-bottom: 22px;
    color: #111;
}

.dest-intro {
    max-width: 1000px;
    margin: 0 auto 50px; 
    color: #222;
}


/* GRID */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    max-width: 1200px;
    margin: auto;
}

/* CARD */
.dest-card {
    text-align: center;
}

/* IMAGE */
.dest-img {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    margin-bottom: 32px; 
}


.dest-img img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    border-radius: 26px;
}


.dest-card-heading {
  font-family: var(--font-body);
  font-size: calc(var(--title-size) - 16px); 
  font-weight: 700;
  margin: 6px 0 4px;
}



.dest-card-sub {
    font-family: var(--font-body);
    font-weight: 500;
    margin-bottom: 14px; 
    color: #111;
}

.dest-btn {
    margin-top: 18px; 
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 26px 12px 18px;
    border: 2px solid #111;
    border-radius: 40px;
    text-decoration: none;
   font-family: var(--font-body);

    font-size: 14px;
    font-weight: 500;
    color: #111;
    transition: all 0.3s ease;
}


/* CIRCLE ARROW */
.dest-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border: 2px solid #111;
    border-radius: 50%;
    font-style: normal;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* HOVER EFFECT */
.dest-btn:hover {
    background: #111;
    color: #fff;
}

.dest-btn:hover i {
    background: #fff;
    color: #111;
    transform: translateX(4px);
}


/* TEXT */
.dest-card-text {
    color: #333;
    max-width: 420px;
    margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .dest-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .dest-img img {
        height: 300px;
    }

    .dest-card-heading {
        font-size: 32px;
    }
}

@media (max-width: 550px) {
    .dest-title {
        font-size: 34px;
    }

    .dest-intro {
        font-size: 16px;
    }

    .dest-img img {
        height: 260px;
    }

    .dest-badge {
        font-size: 15px;
        padding: 12px 22px;
    }

    .dest-card-heading {
        font-size: 28px;
    }

    .dest-card-sub {
        font-size: 18px;
    }
}



/* FAQ – */

.faq-section {
    position: relative;
    padding: 90px 20px 110px;
    background: url("images/FAQs\ home\ page.png") no-repeat center center;
    background-size: cover;
    overflow: hidden;
}
.faq-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15); 
    z-index: 0;
}

.faq-inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}
.faq-title {
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.faq-subtitle {
    color: #ffffff;
    margin-bottom: 22px;
}
.faq-intro {
    max-width: 1100px;
    margin: 0 auto 45px;
    color: #fdfdfd;
}
.faq-container {
    max-width: 1000px;
    margin: auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 18px; 
}

.faq-question {
    width: 100%;
    background: #f2558f;   
    color: black;
    border: none;
    padding: 16px 22px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
      border-radius: 10px;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #ec4b86;
}

.faq-question::after {
    content: "›";
    font-size: 22px;
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(-90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #ffffff;
    padding: 0 22px;
    margin-bottom: 0;               
    transition: 
      max-height 0.35s ease,
      padding 0.3s ease,
      margin-bottom 0.3s ease;
}

.faq-answer p {
    padding: 16px 0;
    color: black;
}
.faq-question.active + .faq-answer {
    padding: 0 22px 12px;
}

@media (max-width: 900px) {
    .faq-title {
        font-size: 40px;
    }
}

@media (max-width: 550px) {
    .faq-title {
        font-size: 32px;
    }

    .faq-intro {
        font-size: 15px;
    }

    .faq-question {
        padding: 14px 18px;
    }

    .faq-answer p {
        font-size: 14.5px;
    }
}

/* CONTACT  */

.contact-section{
  padding: 90px 20px;
  background:#ec5f95;
}

.contact-box{
  max-width: 1100px;
  margin:auto;
  background:#ec5f95;
  border-radius:28px;
  padding:55px 50px;
  text-align:center;
}
.contact-title{
  font-weight:700;
  color:#fff;
  margin-bottom:6px;
}

.contact-tagline{
  color:#fff;
  margin-bottom:35px;
}

.contact-form{
  width:100%;
}

.contact-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  margin-bottom:26px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  border:none;
  outline:none;
  border-radius:18px;
  padding:16px 22px;
  color:#222;
  background:#fffdf6;
}

.contact-form textarea{
  resize:none;
  margin-bottom:24px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
  color:#222;
}
.consent{
  display:flex;
  align-items:flex-start;        
  gap:12px;
  max-width:700px;
  margin: 0 auto 32px;          
  font-family: var(--font-body);
  font-size:14px;
  color:#fff;
  line-height:1.5;
  text-align:left;
}

.consent input{
  width:16px;
  height:16px;
  margin-top:3px;              
  accent-color:#fff;
  cursor:pointer;
  flex-shrink:0;
}

.consent span{
  display:block;
}

.consent a{
  color:#fff;
  text-decoration:underline;
}

.contact-btn-wrapper{
  text-align:center;
}

.contact-btn{
  background:#111;
  color:#fff;
  border:none;
  padding:14px 42px;
  border-radius:40px;
  font-family: var(--font-body);
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  transition:0.3s ease;
}

.contact-btn:hover{
  background:#000;
  transform:translateY(-3px);
}

@media(max-width:768px){

  .contact-box{
    padding:40px 22px;
  }

  .contact-title{
    font-size:36px;
  }

  .contact-row{
    grid-template-columns:1fr;
    gap:20px;
  }

  .consent{
    font-size:13px;
    max-width:100%;
  }

}


/* TEST */

.testimonials-section{
  padding: 90px 20px 80px;
  background:#faf7ef;
  text-align:center;
  overflow:hidden;
}
.testi-title{
  font-weight:700;
  color:#111;
  margin-bottom:6px;
}

.testi-tagline{
  margin-bottom:45px;
}

.testi-slider{
  width:100%;
  overflow:hidden;
}

.testi-track{
  display:flex;
  gap:26px;
  width:max-content;
  animation: scrollTesti 35s linear infinite;
}
.testi-card{
  min-width:320px;
  max-width:320px;
  padding:26px 24px;
  border-radius:22px;
  color:#222;
  box-shadow:0 10px 26px rgba(0,0,0,0.15);
  text-align:left;
}

.testi-card.pink{
  background:linear-gradient(135deg,#ff5fa2,#ff8bc6);
}

.testi-card.orange{
  background:linear-gradient(135deg,#ff8a3d,#ffc07a);
}

.testi-card.teal{
  background:linear-gradient(135deg,#1fa6a3,#7bdad5);
}

.testi-card.yellow{
  background:linear-gradient(135deg,#ffd84d,#fff2a8);
}

@keyframes scrollTesti{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-50%); }
}

.testi-slider:hover .testi-track{
  animation-play-state:paused;
}
@media(max-width:768px){
  .testi-title{ font-size:36px; }
  .testi-card{
    min-width:280px;
    font-size:15px;
  }
}

.hero-slogan,
.culture-motto,
.services-tagline,
.dest-tagline,
.faq-subtitle,
.contact-tagline,
.testi-tagline {
  font-family: var(--font-body);
  font-size: var(--tagline-size); 
  font-weight: 500;
}


.culture-text,
.founder-text,
.services-intro,
.dest-intro,
.dest-card-text,
.faq-intro,
.faq-question,
.faq-answer p,
.testi-card,
.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: var(--body-size); 
  line-height: 1.65;
}

@media (max-width: 768px) {
  :root {
    --title-size: 36px;
    --tagline-size: 20px;
    --body-size: 16px;
  }
}

@media (max-width: 480px) {
  :root {
    --title-size: 30px;
    --tagline-size: 18px;
    --body-size: 15px;
  }
}

