@import url("https://fonts.googleapis.com/css?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Host+Grotesk:ital,wght@0,300..800;1,300..800&display=swap");

:root {
  --lg: #241910;
  --bg: #fefbf4;
  --color-menu-overlay: dodgerblue;
  --color-menu-text: #000;
  --color-divider: #000000;
  --light:#edf1e8;
  --dark:#101010;
}




* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



/* ✅ ADD THIS TO style.css */
.cta-floating {
  position: fixed;
  bottom: 80px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9998;
}

.btn-primary,
.btn-whatsapp {
  padding: 15px 25px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  font-size: 16px;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #1e90ff, #00d4ff);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(30, 144, 255, 0.5);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
}

.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.sticky-btn {
  padding: 0.8rem 6rem;
  background: linear-gradient(135deg, #1e90ff, #00d4ff);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 1rem;
}

.sticky-btn:hover {
  background: linear-gradient(135deg, #00d4ff, #7b2ff7);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(30, 144, 255, 0.6);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .cta-floating {
    bottom: 20px;
    right: 20px;
  }
  
  .btn-primary,
  .btn-whatsapp {
    padding: 12px 20px;
    font-size: 14px;
  }
}

body {
  font-family: "DM Mono", sans-serif;
  background-color: #1a1a1a;
}

/* From Uiverse.io by Faizuddinq */ 
.sectionbar {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  background: transparent;
}

 ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .example-2 {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      align-items: center;
    }

    .example-2 .icon-content {
      margin: 0;
      position: relative;
    }

    .example-2 .icon-content .tooltip {
      position: absolute;
      top: 50%;
      left: 70px;
      transform: translateY(-50%);
      color: #fff;
      padding: 6px 10px;
      border-radius: 5px;
      opacity: 0;
      visibility: hidden;
      font-size: 14px;
      transition: all 0.3s ease;
      white-space: nowrap;
      pointer-events: none;
    }

    .example-2 .icon-content:hover .tooltip {
      opacity: 1;
      visibility: visible;
      left: 65px;
    }

    .example-2 .icon-content a {
      position: relative;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      min-width: 48px;  /* Increased from 50px for better touch */
    min-height: 48px;
      border-radius: 50%;
      color: #4d4d4d;
      background-color: rgba(255, 255, 255, 0.9);
      transition: all 0.3s ease-in-out;
      backdrop-filter: blur(10px);
    }

    .example-2 .icon-content a:hover {
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
      transform: translateX(5px);
    }

    .example-2 .icon-content a svg {
      position: relative;
      z-index: 1;
      width: 30px;
      height: 30px;
    }

    .example-2 .icon-content a:hover {
      color: white;
    }

    .example-2 .icon-content a .filled {
      position: absolute;
      top: auto;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 0;
      background-color: #000;
      transition: all 0.3s ease-in-out;
    }

    .example-2 .icon-content a:hover .filled {
      height: 100%;
    }

    .example-2 .icon-content a[data-social="facebook"] .filled,
    .example-2 .icon-content a[data-social="facebook"] ~ .tooltip {
      background-color: #1877F2;
    }

    .example-2 .icon-content a[data-social="tiktok"] .filled,
    .example-2 .icon-content a[data-social="tiktok"] ~ .tooltip {
      background-color: #000000;
    }

    .example-2 .icon-content a[data-social="instagram"] .filled,
    .example-2 .icon-content a[data-social="instagram"] ~ .tooltip {
      background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    }

    .example-2 .icon-content a[data-social="pinterest"] .filled,
    .example-2 .icon-content a[data-social="pinterest"] ~ .tooltip {
      background-color: #E60023;
    }

    .example-2 .icon-content a[data-social="tripadvisor"] .filled,
    .example-2 .icon-content a[data-social="tripadvisor"] ~ .tooltip {
      background-color: #34E0A1;
    }

    .example-2 .icon-content a[data-social="whatsapp"] .filled,
    .example-2 .icon-content a[data-social="whatsapp"] ~ .tooltip {
      background-color: #25D366;
    }



a {
  text-decoration: none;
  color: var(--color-menu-text);
}

.container {
  width: 100%;
  height: 100%;
}


.menu-open-btn, .menu-close-btn {
  cursor: pointer;
  background: none;
  border: 1px solid #000;
  padding: 0.5em 1em;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-size: 1em;
}

.menu-open-btn:hover, .menu-close-btn:hover {
  background: #000;
  color: var(--color-menu-overlay);
}

.header {
  position: absolute;
  bottom: 10%;
  left: 5%;
  margin: 0;
  font-weight: 400;
  color: #fff;
  font-size: 10vw;
  line-height: 1;
}

.header h1{
  color: white;
}
nav {
  position: fixed;
  top: 20px;
  left: 20px;
  margin-left: 0;
  z-index: 10000;
}

.menu-open-btn {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.menu-open-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateX(5px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2em;
  background: var(--color-menu-overlay);
  pointer-events: none;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  z-index: 9999;
}

.menu-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1em;
  color: var(--color-menu-text);
}

.menu-cols {
  display: flex;
  gap: 2em;
  flex-wrap: wrap;
  align-items: flex-start;
}

.menu-cols > div {
  flex: 1 1 300px;
}

.video-preview {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.video-preview video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.menu-link {
  position: relative;
  width: max-content;
  margin: 0.5em 0;
}

.menu-link a {
  font-size: 2rem;
  display: block;
  transition: color 0.3s;
  color: black;
}

.menu-link:hover a {
  color: #444;
}

.menu-link:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-menu-text);
  transition: width 0.4s ease;
}

.menu-link:hover:after {
  width: 100%;
}

.btn {
  margin: 2em 0;
  border: 1px solid var(--color-menu-text);
  padding: 1em 2em;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  width: fit-content;
}

.btn:hover {
  background: black;
}

.btn:hover a {
  color: var(--color-menu-overlay);
}

.menu-footer {
  display: flex;
  flex-direction: column;
  color: var(--color-menu-text);
  position: absolute;
  bottom: 2em;
  left: 2em;
  right: 2em;
}

.menu-divider {
  width: 0%;
  height: 1px;
  background: var(--color-divider);
  margin: 1em 0;
}

.menu-footer-copy {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.socials a {
  margin-left: 1em;
}




img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Unmute Button */
#unmute-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
}

#unmute-btn:hover {
  background: rgba(0, 0, 0, 0.85);
  transform: scale(1.05);
}

#unmute-btn:active {
  transform: scale(0.95);
}

/* Logo */
.logo {
  position: fixed;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.logo img {
  width: 4rem;
  align-items: center;
  justify-content: center;
}

/* Headings */
h1 {
  font-family: "Host Grotesk", sans-serif;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.1;
}

p {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 500;
  color: white;
}

/* Sections */
section {
  position: relative;
  width: 100vw;
  overflow: hidden;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
}

canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--lg);
  perspective: 1000px;
}

.header {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  color: var(--lg);
  font-weight: bolder;
  transform-origin: center;
  will-change: transform, opacity;
}

  .header-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    font-family: Arial, sans-serif;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    color: white;
    transition: color 0.3s ease, opacity 0.3s ease;
    background: transparent;
  }

  .header-2 h1,
  .header-2 h2 {
    color: inherit;
    font-size: 30px;
  }

.promoBanner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 420px;
  background-color: #000;
  color: #fff;
  border-radius: 50px;
  padding: 12px 18px;
  font-family: Arial, sans-serif;
  font-weight: bold;
  gap: 10px;
  opacity: 1; /* make it visible */
}


.promo-text {
  font-size: 22px;
}

.promo-btn {
  background-color: #d9d9d9;
  color: #000;
  border: none;
  border-radius: 25px;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}



.header h1{
  width: 50%;
  margin-bottom: 0.5rem;
}

.header-2 {
  color: #12315b;
}

.header-2 h1 {
  font-weight: bold;
  font-size: 40px;
}

.header p {
  opacity: 0.35;
}

.about-section {
    width: 100%;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-align: center;
}

.image-box {
    width: 360px;
    height: 510px;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 20px;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-section p {
    font-size: 18px;
    font-weight: bold;
    max-width: 700px;
    line-height: 1.6;
    margin: 10px auto;
}

.about-section h5{
    margin-top: 5px;
    color: gray;
    max-width: 425px;
    text-align: center;
    line-height: 25px;
}

.about-section h1 {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-weight: 900;
    font-size: 80px;
    text-align: center;
    margin: 25px 0;
    text-transform: uppercase;
    background: linear-gradient(to right,#4acfee,#53f8c9,#02d79a,#6070fd,#2a46ff,#0099ff);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-gradient 2.5s linear infinite;
}

@keyframes animate-gradient {
    to { background-position: 200%; }
}

.image-box h4 {
    margin-top: 50px;
    margin-bottom: 0;
    text-align: center;
}

.image-box h5 {
    margin-top: 5px;
    color: gray;
    max-width: 425px;
    text-align: center;
    line-height: 25px;
}

.stones-img{
    position: absolute;
    margin-top: 22%;
    width: 500px;
}

.about-hero-img:hover {
  z-index: 20;
  transform: scale(1.05);
  transition: all 0.3s ease;
}


.autoBlur{
    animation: autoBlurAnimation linear both;
    animation-timeline: view();
}

@keyframes autoBlurAnimation{
    0%{
        filter: blur(40px);
    }
    40%,60%{
        filter: blur(0);
        transform: translateY(0px);
        opacity: 1;
    }
    100%{
        filter: blur(40px);
        transform: translateY(200px);
        opacity: 0;
    }
}

.autoTakeFull{
    animation: autoTakeFullAnimation both;
    animation-timeline: view(70% 65%);
}

@keyframes autoTakeFullAnimation{
    to{
        width: 100%;
        height: 100vh;
        border-radius: 0;
        margin-bottom: 100px;
    }
}

.autodisplay{
    animation: autoDisplayAnimation both;
    animation-timeline: view(70% 5%);
}

@keyframes autoDisplayAnimation{
    from{
        opacity: 0;
        transform: translateY(200px) scale(0.3);
    } to{
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes autoBlurAnimation {
    0% {
        filter: blur(40px);
    }
    40%, 60% {
        filter: blur(0);
        transform: translateY(0px);
        opacity: 1;
    }
    100% {
        filter: blur(40px);
        transform: translateY(200px);
        opacity: 0;
    }
}

/* Auto expand effect */
.autoTakeFull {
    animation: autoTakeFullAnimation both;
    animation-timeline: view(70% 65%);
}

@keyframes autoTakeFullAnimation {
    to {
        width: 100%;
        height: 100vh;
        border-radius: 0;
        margin-bottom: 100px;
    }
}

/* Responsive adjustments for about-section */
@media screen and (max-width:650px) {
    .about-section h1 {
        font-size: 50px;
    }

    .image-box {
        width: 300px;
        height: 500px;
    }

    .about-section h4,
    .about-section h5 {
        max-width: 350px;
        text-align: center;
    }

    .stones-img {
        margin-top: 80%;
        width: 400px;
    }
}

/* About Section Styles */
.about-hero,
.outro,
.about {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: #1a1a1a;
}

.about-hero {
  height: auto; /* or a smaller fixed height, e.g., 70vh */
  padding: 2rem 0; /* optional */
}


.about {
  height: auto;
  padding: 2rem 2rem;
}


.about .animate-text {
  width: 60%;           /* same narrow width as services-copy */
  margin: 0 auto;       /* center it */
  text-align: center;   /* center the text inside */
}

.about-hero-img,
.outro-img {
  width: 300px;
  aspect-ratio: 5/7;
  overflow: hidden;
}

.services {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: #1a1a1a;
}

.services-header {
  position: relative;
  width: 100%;
  padding: 0 2rem;
  background-color: #1a1a1a;
  will-change: transform;
}

.services-header img {
  object-fit: contain;
  width: 100%;
  height: auto;
  display: block;
}

.services-header:nth-child(1),
.services-header:nth-child(3) {
  transform: translateX(100%) translateY(0%);
}

.services-header:nth-child(2) {
  transform: translateX(-100%) translateY(0%);
  z-index: 2;
}

.services-copy {
  position: relative;
  width: 100%;
  height: 90%;
  margin-top: 155vh;
  padding: 4rem 2rem 25svh 2rem;
  text-align: center;
  background-color: #1a1a1a;
}


.client{
    background-image: 
        linear-gradient(
            to top right, #1a1a1a, #8e4141
        );
    min-height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: monospace;
}
.slider{
    position: relative;
    width: 100%;
    height: 370px;
    overflow: hidden;
}
.item{
    position: absolute;
    width: 250px;
    height: 355px;
    text-align: justify;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    transition: 0.5s;
    left: calc(50% - 110px);
    top: 0;
    
}
.item h1 {
  font-size: 30px;
  font-style: bold;
  margin-bottom: 20px;
  color: black;
}



#next, #prev{
    position: absolute;
    top: 40%;
    color: #fff;
    background-color: transparent;
    border: none;
    font-size: xxx-large;
    font-family: monospace;
    font-weight: bold;
    left: 400px;
}
#next{
    left: unset;
    right: 400px;
}

.swiper-container {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 300px;
  height: 300px;
}

.animate-text {
  position: relative;
  width: 60%;
  margin: 0 auto;
  color: #4f4f4f;
  --clip-value: 100%;
}

.animate-text::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  clip-path: inset(0 0 var(--clip-value) 0);
  will-change: clip-path;
}



section {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

/* Hero + Outro */
.services-hero, 
.services-outro {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  color: #fff;
}


.services-outro h1 {
  text-align: center;
  font-size: 80px;
  
}

.layer {
  position: fixed;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #222;
  pointer-events: none;
}

.layer::before {
  content: '';
  position: absolute;
  left: -40px;
  width: 80px;
  height: 200px;
  background: #222;
  box-shadow: 0 calc(90vh - 100px) 0 #222;
}


.services-img-bg {
  height: 50vh;
  background: url(images/beautiful-waterfall-streaming-into-river-surrounded-by-greens.jpg);
  background-size: cover;
  background-attachment: fixed;
}

.sec2 {
  position: relative; /* Make it a positioning context */
  height: 0;
  background: url(images/closeup-goteik-viaduct-railway-myanmar.jpg) center center / cover fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  z-index: 1;
}

.sc-text {
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #000;
  flex-direction: column;
}

.text-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sc-text h2 {
    color: #fff;
    font-size: 2em;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 0.20em;
    line-height: 2.5em;
}

.sc-text h2 span {
  font-size: 4em;
  font-weight: 900;
  letter-spacing: 0em;
  background: url(images/closeup-goteik-viaduct-railway-myanmar.jpg);
  background-size: cover;
  background-attachment: fixed;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}


.bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sticky .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pakages-type {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding: 10px 20px;
  scrollbar-width: none;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.boton-elegante {
  flex: 0 0 auto;
  padding: 15px 10px;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: #222;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  transition: all .3s;
}

.boton-elegante::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,.25) 0, rgba(255,255,255,0) 70%);
  transform: scale(0);
  transition: transform .5s;
}

.boton-elegante:hover::after { 
  transform: scale(4); 
}

.boton-elegante:hover { 
  background: #1d0be6; 
  border-color: #666; 
}

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */
@media (max-width: 1024px) {
  .sc-text h2 { font-size: 1.5em; }
  .sc-text h2 span { font-size: 3em; }
  .pakages-type { gap: 10px; }
  .boton-elegante { font-size: 0.95rem; padding: 12px 10px; }
}

@media (max-width: 768px) {
  .sc-text h2 { font-size: 1.3em; }
  .sc-text h2 span { font-size: 2.5em; }
  .pakages-type { padding: 8px; }
  .boton-elegante { font-size: 0.9rem; padding: 10px 8px; }
}

@media (max-width: 480px) {
  .sc-text h2 { font-size: 1.1em; }
  .sc-text h2 span { font-size: 2em; }
  .pakages-type { gap: 8px; }
  .boton-elegante { font-size: 0.85rem; padding: 8px 6px; }
}

/* --- Popup Styles --- */
.package-preview {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 2rem;
  overflow-y: auto;
}

.package-preview.active {
  display: flex;
}

.package-preview .preview {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  width: 95%;
  max-width: 600px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  overflow: hidden;
}

/* ✅ Close button fixed neatly in top-right corner */
.package-preview .preview .fa-times {
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
  color: #333;
  font-size: 2rem;
  background: #fff;
  border-radius: 50%;
  width: 3.2rem;
  height: 3.2rem;
  line-height: 3.2rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, background 0.3s ease;
  z-index: 10000;
}

.package-preview .preview .fa-times:hover {
  background: #f0f0f0;
  transform: scale(1.1) rotate(90deg);
}

/* ✅ Marquee section stays proportional */
.pkg-marquee {
  overflow: hidden;
  width: 100%;
  background: #f7f7f7;
  padding: 1rem 0;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.pkg-marquee-content {
  display: flex;
  gap: 1rem;
  animation: marqueeScroll 10s linear infinite;
}

.pkg-marquee-content img {
  height: 140px;
  flex-shrink: 0;
  border-radius: 0.5rem;
  object-fit: cover;
  width: 110px;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ✅ Text styles */
.package-preview .preview h3 {
  color: #333;
  font-size: 2rem;
  margin: 1rem 0;
}

.package-preview .preview p {
  color: #666;
  line-height: 1.5;
  font-size: 1.5rem;
}

.package-preview .preview .price {
  color: #27ae60;
  font-size: 2rem;
  margin-top: 1rem;
}

.package-preview .preview .buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.package-preview .preview .buttons a {
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  border: 1px solid #444;
  font-size: 1.6rem;
  transition: 0.3s;
}

.package-preview .preview .buttons a.buy:hover {
  background: #444;
  color: #fff;
}

.package-preview .preview .buttons a.cart {
  background: #444;
  color: #fff;
}

.package-preview .preview .buttons a.cart:hover {
  background: #111;
}

/* --- Fix z-index and pointer events --- */
.cards, .card, .sticky-btn {
  position: relative;
  z-index: 1000;
}

.outline-layer, .fill-layer {
  pointer-events: none;
}



/* Canvases */
canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 150%;
  height: 150%;
}

canvas.outline-layer {
  z-index: 1;
}

canvas.fill-layer {
  z-index: 10;
}

/* Cards container */
.cards {
  position: absolute;
  top: 0;
  left: 0;
  width: 300%;
  height: 100vh;
  display: flex;
  justify-content: space-around;
  align-items: center;
  will-change: transform;
  z-index: 2;
}

/* Single card */
.card {
  position: relative;
  width: 10%;
  height: 75%;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding: 1.5em;

}


.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.card-title {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-title h1 {
  text-transform: uppercase;
  font-family: "FK Screamer", sans-serif;
  font-weight: lighter;
  font-size: 32px;
  line-height: 1.2;
}



.card-title p {
  font-size: 15px;
  font-weight: 500;
}

.wrapper{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 5px;
  font-family: serif;
  width: 100%;
  text-align: center;
}


.wrapper span {
  text-transform: uppercase;
  animation: animate 4s linear infinite;
}



.marquee-h1 {
    font-size: 4rem;
    font-weight: 500;
    letter-spacing: -0.075rem;
    line-height: 1.125;
    font-family: "PP Neue Montreal", sans-serif;
}

.marquee-h3 {
    font-size: 4rem;
    font-weight: 500;
    letter-spacing: -0.025rem;
    line-height: 1.125;
    align-items: center;
    font-family: "PP Neue Montreal", sans-serif;
}

.marquee-h3 span {
    font-size: 10px;
}


.marquee-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #89CFF0;
    font-family: "PP Neue Montreal", sans-serif;
    will-change: background-color;
    transition: background-color 0.1s;

}    

/* ---------- HERO & OUTRO ---------- */
.marquee-hero,
.marquee-outro {
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.marquee-hero h1,
.marquee-outro h1 {
    width: 75%;
    margin: 0 auto;
    font-family: "PP Neue Montreal", sans-serif;
}

.marquee-outro {
    background-color: var(--dark);
    color: var(--light);
}

/* ---------- MARQUEE SECTION ---------- */
.marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 50vh;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.marquee-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
}

.marquee-images {
    display: flex;
    gap: 20px;
    will-change: transform;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    min-width: 100%;
    border-radius: 10px;
}

.marquee-img {
    flex: 0 0 auto;
    width: 20%;
    aspect-ratio: 5/3;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.marquee-img.pin-target {
    z-index: 10;
}

/* ---------- HORIZONTAL SCROLL ---------- */
.horizontal-scroll {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.horizontal-scroll-wrapper {
    position: relative;
    width: 300%;
    height: 100vh;
    display: flex;
    will-change: transform;
}

.horizontal-slide {
    flex: 1;
    height: 100%;
    width: 100vw;
    display: flex;
    gap: 2rem;
    padding: 2rem;
}

.horizontal-slide:not(.horizontal-spacer) {
    background-color: var(--dark);
    color: var(--light);
}

.marquee h3 {
  font-family: "PP Neue Montreal", sans-serif;
  font-size: 0.5rem;
}

.horizontal-slide .col:nth-child(1) {
    flex: 3;
}

.horizontal-slide .col:nth-child(2) {
    flex: 2;
}

.horizontal-scroll .col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.horizontal-slide .col h3,
.horizontal-slide .col img {
    width: 75%;
}

.horizontal-slide .col img {
    height: 75%;
}

/* ---------- PINNED IMAGE CLONE ---------- */
.pinned-image-clone {
    position: fixed !important;
    z-index: 1000;
    pointer-events: none;
    border-radius: 8px;
    overflow: hidden;
    will-change: transform, width, height;
}

.pinned-image-clone.fullscreen {
    border-radius: 0;
}


/* Animation delay pattern */
.wrapper span:nth-child(1)  { animation-delay: 0s; }
.wrapper span:nth-child(2)  { animation-delay: 0.1s; }
.wrapper span:nth-child(3)  { animation-delay: 0.2s; }
.wrapper span:nth-child(4)  { animation-delay: 0.3s; }
.wrapper span:nth-child(5)  { animation-delay: 0.4s; }
.wrapper span:nth-child(6)  { animation-delay: 0.5s; }
.wrapper span:nth-child(7)  { animation-delay: 0.6s; }
.wrapper span:nth-child(8)  { animation-delay: 0.7s; }
.wrapper span:nth-child(9)  { animation-delay: 0.8s; }
.wrapper span:nth-child(10) { animation-delay: 0.9s; }

.wrapper span:nth-child(11) { animation-delay: 1s; }
.wrapper span:nth-child(12) { animation-delay: 1.1s; }
.wrapper span:nth-child(13) { animation-delay: 1.2s; }
.wrapper span:nth-child(14) { animation-delay: 1.3s; }
.wrapper span:nth-child(15) { animation-delay: 1.4s; }
.wrapper span:nth-child(16) { animation-delay: 1.5s; }
.wrapper span:nth-child(17) { animation-delay: 1.6s; }
.wrapper span:nth-child(18) { animation-delay: 1.7s; }
.wrapper span:nth-child(19) { animation-delay: 1.8s; }
.wrapper span:nth-child(20) { animation-delay: 1.9s; }

.wrapper span:nth-child(21) { animation-delay: 2s; }
.wrapper span:nth-child(22) { animation-delay: 2.1s; }
.wrapper span:nth-child(23) { animation-delay: 2.2s; }
.wrapper span:nth-child(24) { animation-delay: 2.3s; }
.wrapper span:nth-child(25) { animation-delay: 2.4s; }
.wrapper span:nth-child(26) { animation-delay: 2.5s; }
.wrapper span:nth-child(27) { animation-delay: 2.6s; }
.wrapper span:nth-child(28) { animation-delay: 2.7s; }
.wrapper span:nth-child(29) { animation-delay: 2.8s; }
.wrapper span:nth-child(30) { animation-delay: 2.9s; }

.wrapper span:nth-child(31) { animation-delay: 3s; }
.wrapper span:nth-child(32) { animation-delay: 3.1s; }
.wrapper span:nth-child(33) { animation-delay: 3.2s; }
.wrapper span:nth-child(34) { animation-delay: 3.3s; }
.wrapper span:nth-child(35) { animation-delay: 3.4s; }
.wrapper span:nth-child(36) { animation-delay: 3.5s; }
.wrapper span:nth-child(37) { animation-delay: 3.6s; }
.wrapper span:nth-child(38) { animation-delay: 3.7s; }
.wrapper span:nth-child(39) { animation-delay: 3.8s; }
.wrapper span:nth-child(40) { animation-delay: 3.9s; }

.wrapper span:nth-child(41) { animation-delay: 4s; }
.wrapper span:nth-child(42) { animation-delay: 4.1s; }
.wrapper span:nth-child(43) { animation-delay: 4.2s; }
.wrapper span:nth-child(44) { animation-delay: 4.3s; }
.wrapper span:nth-child(45) { animation-delay: 4.4s; }
.wrapper span:nth-child(46) { animation-delay: 4.5s; }
.wrapper span:nth-child(47) { animation-delay: 4.6s; }
.wrapper span:nth-child(48) { animation-delay: 4.7s; }
.wrapper span:nth-child(49) { animation-delay: 4.8s; }
.wrapper span:nth-child(50) { animation-delay: 4.9s; }

.wrapper span:nth-child(51) { animation-delay: 5s; }
.wrapper span:nth-child(52) { animation-delay: 5.1s; }
.wrapper span:nth-child(53) { animation-delay: 5.2s; }
.wrapper span:nth-child(54) { animation-delay: 5.3s; }
.wrapper span:nth-child(55) { animation-delay: 5.4s; }
.wrapper span:nth-child(56) { animation-delay: 5.5s; }
.wrapper span:nth-child(57) { animation-delay: 5.6s; }
.wrapper span:nth-child(58) { animation-delay: 5.7s; }
.wrapper span:nth-child(59) { animation-delay: 5.8s; }
.wrapper span:nth-child(60) { animation-delay: 5.9s; }

.wrapper span:nth-child(61) { animation-delay: 6s; }
.wrapper span:nth-child(62) { animation-delay: 6.1s; }
.wrapper span:nth-child(63) { animation-delay: 6.2s; }
.wrapper span:nth-child(64) { animation-delay: 6.3s; }

@keyframes animate{
   0%{
    filter: blur(0);
    }
    40%{
    filter: blur(20px);
    }
    80%{
    filter: blur(0);
    }
    100%{
    filter: blur(0);
    }
}




.outro {
  position: relative;
  margin-top: 1rem;
  padding-top: 0;
  width: 100%;
  min-height: 200vh;
  padding: 6rem 1.5rem 12rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #1a1a1a;
  overflow: hidden;
  z-index: 1;
}

.outro > h2 {
  color: white;
  font-size: 30px;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 1px;
  font-weight: bold;
}


/* Outro Section Title - Centered Above Cards */
.outro-text {
  position: relative;
  color: white;
  text-align: center;
  width: 100%;
  margin-bottom: 3rem; /* Slightly reduced for better spacing */
  font-family: "Host Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 5; /* ensures it stays above grid images */
}

.outro-text h2 {
  color: white;
  font-family: "Host Grotesk", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
  position: relative;
  top: -40px; /* moves heading slightly upward */
  z-index: 10;
}

.outro-text h2 {
  transform: translateY(-20px);
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 1;
}

/* Cards Grid Container */
.outro-card-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 2rem;
}


.outro-card-container h2 {
  color: white;
  font-size: 20px;
  text-align: center;
}

/* Individual Card Article */
.outro-card-article {
  position: relative;
  width: 95%;
  margin: 0 auto;
  transform: scale(0.85); /* visually reduces entire card */
  transition: transform 0.3s ease;
}

/* Card Wrapper - Contains image and overlay */
.outro-card-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 6rem;
}

/* Card Image */
.outro-card-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  border-radius: 1rem;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Card Info Overlay */
.outro-card-data {
  width: 80%;           
  max-width: none;      
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.5rem 1.5rem; 
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
  border-radius: 1rem;    
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
  opacity: 0;
  visibility: hidden;
  font-size: 0.9rem;
  pointer-events: none;
  padding: 1rem;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.60, 1);
  z-index: 10;
}

/* Card Description Text */
.outro-card-description {
  display: block;
  font-size: 11px;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  color: white;
  font-weight: 100;
}

/* Card Title */
.outro-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #89CFF0;
  margin: 0;
  font-family: "Host Grotesk", sans-serif;
  letter-spacing: 0.3px;
}

.outro-card-container::-webkit-scrollbar {
  display: none; 
}

/* Hover Effects */
.outro-card-article:hover .outro-card-img {
  transform: translateY(-1rem);
}

.outro-card-article:hover .outro-card-data {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-2rem);
  pointer-events: auto;
}

.article-btn {
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #89CFF0;
  color: #1a1a1a;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  justify-content: center;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.article-btn:hover {
  background-color: #1705d8;
}

/* ✅ Prevent background scroll when modal is open */
html.no-scroll,
body.no-scroll {
  overflow: hidden !important;
  height: 100vh !important;
}

/* Modal scroll remains independent */
.detail-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: scroll !important;  /* Force scroll */
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.detail-section.active {
  opacity: 1;
  visibility: visible;
}

/* ✅ Container must allow content to extend */
.detail-container {
  width: 100%;
  min-height: calc(100vh + 1px);  /* Force it to be scrollable */
  background: #fff;
  position: relative;
  padding-bottom: 100px;
}


/* ✅ Improved scrollbar */
.detail-section::-webkit-scrollbar {
  width: 12px;
}

.detail-section::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.detail-section::-webkit-scrollbar-thumb {
  background: #89CFF0;
  border-radius: 6px;
}

.detail-section::-webkit-scrollbar-thumb:hover {
  background: #1705d8;
}

/* ✅ Close button stays visible */
.close-btn {
  position: sticky;
  top: 20px;
  float: right;
  margin: 20px 20px 0 0;
  padding: 12px 24px;
  background-color: #ff4444;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  z-index: 10001;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.close-btn:hover {
  background-color: #cc0000;
}

/* ✅ Content wrapper */
.detail-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 100px 20px;
  clear: both;
  min-height: 100vh;  /* Ensure content is tall enough */
}

.detail-content h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #1a1a1a;
  margin-top: 20px;
}

/* ✅ Rest of your existing styles remain the same */
.media-section {
  margin: 50px 0;
}

.media-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #333;
}

.video-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.image-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.image-gallery img:hover {
  transform: scale(1.05);
}

.text-content {
  margin: 50px 0;
  line-height: 1.8;
}

.text-content h2 {
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.text-content h3 {
  font-size: 1.4rem;
  margin-top: 30px;
  margin-bottom: 12px;
  color: #333;
}

.text-content p {
  margin-bottom: 15px;
  color: #555;
  font-size: 1.1rem;
}

.text-content ul {
  margin-left: 25px;
  color: #555;
  list-style: disc;
}

.text-content li {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

/* Responsive */



/* ========== CONTACT SECTION ========== */
/* ========== CONTACT SECTION ========== */
.contact-us {
	background-color: #2a2a2a;
	padding: 80px 0;
	position: relative;
	min-height: 100vh; /* Added */
}

.contact-container {
	width: 100%;
	min-height: auto; /* Changed from 100vh */
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 30px 8%;
}

.contact-container .row {
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 1100px;
	gap: 60px;
}

.row section.col {
	display: flex;
	flex-direction: column;
}

.row section.left {
	flex-basis: 35%;
	min-width: 320px;
}

.row section.right {
	flex-basis: 60%;
	flex-grow: 1;
}

/* Left Section */
section.left .contactTitle h2 {
	position: relative;
	font-size: 28px;
	color: #ddd;
	display: inline-block;
	margin-bottom: 25px;
}

section.left .contactTitle h2::before {
	content: '';
	position: absolute;
	width: 50%;
	height: 1px;
	background-color: #888;
	top: 120%;
	left: 0;
}

section.left .contactTitle h2::after {
	content: '';
	position: absolute;
	width: 25%;
	height: 3px;
	background-color: dodgerblue;
	top: calc(120% - 1px);
	left: 0;
}

section.left .contactTitle p {
	font-size: 17px;
	color: #ccc;
	letter-spacing: 1px;
	line-height: 1.2;
	padding-bottom: 22px;
	text-transform: none;
}

.contactInfo {
	margin-bottom: 16px;
}

.contactInfo .iconGroup {
	display: flex;
	align-items: center;
	margin: 25px 0px;
}

.iconGroup .icon {
	width: 50px;
	height: 50px;
	min-width: 50px;
	min-height: 50px;
	border: 2px solid dodgerblue;
	border-radius: 50%;
	margin-right: 20px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.iconGroup .icon i {
	font-size: 20px;
	color: dodgerblue;
}

.iconGroup .details {
	flex: 1;
}

.iconGroup .details span {
	display: block;
	color: #ccc;
	font-size: 16px;
	text-transform: none;
	line-height: 1.6;
}

.iconGroup .details span:nth-child(1) {
	text-transform: uppercase;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 5px;
}

section.left .socialMedia {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	margin: 22px 0px 20px;
	gap: 12px;
}



.socialMedia a {
	width: 45px;
	height: 45px;
	text-decoration: none;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background-color: dodgerblue;
	transition: 0.4s;
}

.socialMedia a:nth-child(1):hover i { color: #1877f2; } /* Facebook */
.socialMedia a:nth-child(2):hover i { color: #00af87; } /* Tripadvisor */
.socialMedia a:nth-child(3):hover i { color: #e1306c; } /* Instagram */
.socialMedia a:nth-child(4):hover i { color: #ff0000; } /* YouTube */


.socialMedia a:hover {
	transform: translateY(-3px);
	background-color: transparent;
	border: 2px solid dodgerblue;
}

.socialMedia a:hover i {
	color: dodgerblue;
}

.sign-container {
      width: 100px;
      height: 100px;
      margin-top: 20px;
    }

    .sign {
      width: 100%;
      max-width: 350px;
      height: auto;
      margin: 0 auto;
      display: block;
    }

    .sign svg {
      width: 100%;
      height: auto;
      display: block;
    }

    .sign path {
      fill: none;
      stroke: #f6a04d;
      stroke-width: 3;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-dasharray: 3000;
      stroke-dashoffset: 3000;
    }

    .sign.animate path {
      animation: drawSignature 3s ease-in-out forwards;
    }

    .sign.reverse path {
      animation: eraseSignature 3s ease-in-out forwards;
    }

    @keyframes drawSignature {
      0% {
        stroke-dashoffset: 3000;
        fill: none;
      }
      85% {
        stroke-dashoffset: 0;
        fill: none;
      }
      100% {
        stroke-dashoffset: 0;
        fill: #f6a04d;
      }
    }

    @keyframes eraseSignature {
      0% {
        stroke-dashoffset: 0;
        fill: #f6a04d;
      }
      15% {
        stroke-dashoffset: 0;
        fill: none;
      }
      100% {
        stroke-dashoffset: 3000;
        fill: none;
      }
    }



/* Right Section - Form */
.row section.right .messageForm {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
	width: 100%;
}

.inputGroup {
	position: relative;
	display: flex;
	flex-direction: column;
	margin-bottom: 15px; /* Added spacing */
}

.messageForm .halfWidth {
	flex-basis: calc(50% - 10px);
	min-width: 0;
}

.messageForm .fullWidth {
	flex-basis: 100%;
}

/* Labels - Always visible */
.inputGroup label {
	font-size: 14px;
	color: #ccc;
	margin-bottom: 8px;
	display: block;
	text-transform: none;
	font-weight: 500;
	letter-spacing: 0.5px;
}

.messageForm input, 
.messageForm textarea {
	width: 100%;
	font-size: 16px;
	padding: 12px 10px;
	background-color: rgba(255, 255, 255, 0.05);
	color: #fff;
	border: 1px solid #555;
	border-radius: 5px;
	outline: none;
	transition: all 0.3s;
	font-family: inherit;
}

.messageForm input:focus,
.messageForm textarea:focus {
	border-color: dodgerblue;
	background-color: rgba(255, 255, 255, 0.08);
	box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.1);
}

.messageForm textarea {
	resize: vertical;
	min-height: 120px;
	max-height: 300px;
}

textarea::-webkit-scrollbar {
	width: 5px;
}

textarea::-webkit-scrollbar-track {
	background-color: #1e1e1e;
	border-radius: 15px;
}

textarea::-webkit-scrollbar-thumb {
	background-color: dodgerblue;
	border-radius: 15px;
}

.inputGroup button {
	padding: 14px 40px;
	font-size: 16px;
	font-weight: 600;
	background-color: dodgerblue;
	color: #fff;
	border: 2px solid dodgerblue;
	border-radius: 30px;
	outline: none;
	cursor: pointer;
	box-shadow: 0px 8px 20px rgba(30, 144, 255, 0.3);
	transition: all 0.4s;
	margin-top: 10px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.inputGroup button:hover {
	background-color: transparent;
	color: dodgerblue;
	transform: translateY(-2px);
}



.add-comment{
  height: 120vh;
}
/* Center the entire comment section */
.comment-container {
  background: rgba(30, 30, 30, 0.95);
  backdrop-filter: blur(10px);
  padding: 40px;
  width: 100vw;
  max-width: none;
  border: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Header Section */
.head h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.comment-count {
  color: #999;
  margin-bottom: 10px;
  font-size: 14px;
  text-transform: uppercase;
}

#comment {
  font-weight: bold;
  color: dodgerblue;
  font-size: 16px;
}

.text p {
  color: #aaa;
  margin-bottom: 30px;
  font-style: italic;
  text-transform: none;
  font-size: 14px;
}

/* Comment Input Box */
.comment-box {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* MODERN Profile Section */
.profile-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
}

.profile-pic-container {
  position: relative;
  width: 110px;
  height: 110px;
}

/* Animated gradient border */
.profile-pic-container::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(45deg, #1e90ff, #00d4ff, #7b2ff7, #f107a3, #1e90ff);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: gradient-rotate 3s linear infinite;
  opacity: 0.8;
}

@keyframes gradient-rotate {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.profile-preview {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(30, 144, 255, 0.3);
}

.profile-preview:hover {
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 12px 32px rgba(30, 144, 255, 0.5);
}

#profileUpload {
  display: none;
}

.upload-label {
  position: absolute;
  bottom: 2px;
  right: 2px;
  background: linear-gradient(135deg, #1e90ff, #00d4ff);
  color: white;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  border: 3px solid #1a1a1a;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
  box-shadow: 0 4px 15px rgba(30, 144, 255, 0.4);
}

.upload-label:hover {
  background: linear-gradient(135deg, #00d4ff, #7b2ff7);
  transform: scale(1.15) rotate(90deg);
  box-shadow: 0 6px 20px rgba(30, 144, 255, 0.6);
}

.upload-label i {
  font-size: 16px;
}

/* Upload hint text */
.upload-hint {
  font-size: 11px;
  color: #666;
  text-align: center;
  margin-top: -5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.profile-pic-container:hover ~ .upload-hint {
  color: dodgerblue;
}

/* Content Section */
.content {
  flex: 1;
}

.content h3 {
  color: #ddd;
  font-size: 14px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.user-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-size: 15px;
  margin-bottom: 20px;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-family: "DM Mono", sans-serif;
}

.user-input:focus {
  outline: none;
  border-color: dodgerblue;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(30, 144, 255, 0.1);
}

.user-input::placeholder {
  color: #666;
}

.comment-input {
  margin-bottom: 15px;
}

.comment-input textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-size: 15px;
  font-family: "DM Mono", sans-serif;
  resize: vertical;
  min-height: 130px;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.comment-input textarea:focus {
  outline: none;
  border-color: dodgerblue;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(30, 144, 255, 0.1);
}

.comment-input textarea::placeholder {
  color: #666;
}

.comment-input textarea::-webkit-scrollbar {
  width: 8px;
}

.comment-input textarea::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.comment-input textarea::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #1e90ff, #00d4ff);
  border-radius: 10px;
}

/* Buttons */
.buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 15px;
}

#publish {
  background: #555;
  color: #999;
  border: 2px solid #555;
  padding: 14px 35px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: not-allowed;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "DM Mono", sans-serif;
}

#publish.abled {
  background: linear-gradient(135deg, #1e90ff, #00d4ff);
  color: white;
  border-color: transparent;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(30, 144, 255, 0.4);
}

#publish.abled:hover {
  background: linear-gradient(135deg, #00d4ff, #7b2ff7);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 144, 255, 0.6);
}

#publish:active {
  transform: translateY(0);
}

.notify {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #aaa;
  font-size: 13px;
  text-transform: none;
}

.notify input[type="checkbox"] {
  cursor: pointer;
  width: 18px;
  height: 18px;
  accent-color: dodgerblue;
}

.policy {
  margin-top: 20px;
  font-size: 11px;
  color: #777;
  line-height: 1.6;
  text-transform: none;
}

.policy a {
  color: dodgerblue;
  text-decoration: none;
  transition: color 0.3s;
}

.policy a:hover {
  color: #0052cc;
  text-decoration: underline;
}

/* Comments Display Section */
.comments {
  margin-top: 40px;
}

.empty-state {
  text-align: center;
  padding: 50px 20px;
  color: #666;
  font-style: italic;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
}

/* Individual Comment */
.parents {
  display: flex;
  gap: 18px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  animation: slideIn 0.4s ease-out;
  transition: all 0.3s;
}

.parents:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(30, 144, 255, 0.3);
  transform: translateX(5px);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.parents > img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid dodgerblue;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(30, 144, 255, 0.3);
}

.parents > div {
  flex: 1;
  min-width: 0;
}

.parents h1 {
  font-size: 17px;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 600;
  font-family: "DM Mono", sans-serif;
}

.parents p {
  color: #ccc;
  line-height: 1.7;
  margin: 10px 0;
  font-size: 14px;
  text-transform: none;
  word-wrap: break-word;
}

/* Engagement Icons */
.engagements {
  display: flex;
  gap: 15px;
  margin: 15px 0 10px 0;
}

.engagements img {
  width: 26px;
  height: 26px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  border-radius: 4px;
  opacity: 0.7;
  padding: 3px;
}

.engagements img:hover {
  transform: scale(1.2);
  opacity: 1;
  background: rgba(30, 144, 255, 0.1);
}

.date {
  font-size: 12px;
  color: #666;
  text-transform: none;
  font-style: italic;
}


.site-footer {
  position: relative;
  font-family: serif;
  background: linear-gradient(to top, rgba(10,10,10,0.95), rgba(20,20,20,0.8));
  color: #fff;
  padding: 80px 0 40px;
  border-top-left-radius: 100px;
  overflow: hidden;
}

.footer-overlay {
  width: 85%;
  margin: auto;
  text-align: center;
}

.footer-title h3 {
  font-size: 18px;
  color: #f3c24d;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.footer-title h1 {
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: left;
}

.footer-col h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-col p, 
.footer-col li, 
.footer-col a {
  color: #d6d6d6;
  font-size: 14px;
  line-height: 1.8;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col a:hover {
  color: #fff;
}

.footer-col form {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

.footer-col form i {
  color: #fff;
  margin-right: 10px;
}

.footer-col input {
  flex: 1;
  border: none;
  background: transparent;
  color: #fff;
  outline: none;
}

.footer-col button {
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.footer-col .email {
  text-transform: none !important;
}


.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons i {
  width: 35px;
  height: 35px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-icons i:hover {
  background: dodgerblue;
  color: #000;
  transform: scale(1.1);
}

hr {
  border: 0;
  height: 1px;
  background: #fff;
  width: 80%;
  margin: 30px auto;
}

.copyright {
  font-size: 14px;
  color: #ccc;
}

@media (max-width: 1024px) {
  .horizontal-slide {
    padding: 1.5rem;
    gap: 1.5rem;
  }
  .horizontal-slide .col:nth-child(1) {
    flex: 2 1 60%;
  }
  .horizontal-slide .col:nth-child(2) {
    flex: 1 1 40%;
  }
  .horizontal-slide .col h3,
  .horizontal-slide .col img {
    width: 80%;
  }
  .marquee h3 {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack columns vertically on smaller devices */
  .horizontal-slide {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }
  
  .horizontal-slide .col:nth-child(1),
  .horizontal-slide .col:nth-child(2) {
    flex: none;
    width: 100%;
  }

  .horizontal-slide .col h3,
  .horizontal-slide .col img {
    width: 90%;
    max-width: 100%;
  }

  .marquee h3 {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .horizontal-slide {
    padding: 0.8rem;
  }

  .marquee h3 {
    font-size: 0.75rem;
  }

  .horizontal-slide .col h3,
  .horizontal-slide .col img {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-title h1 {
    font-size: 40px;
  }
  .footer-container {
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
}



@media screen and (max-width: 340px) {
  .outro {
    padding: 4rem 0.75rem 9rem 0.75rem;
  }

} 

@media(max-width: 1100px){
	.messageForm .halfWidth{
		flex-basis: 100%;
	}
}
@media(max-width: 900px){
	.container .row{
		flex-wrap: wrap;
	}
	.row section.left, .row section.right{
		flex-basis: 100%;
		margin: 0px;
	}
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .sectionbar {
    left: 10px;
  }
  
  .example-2 .icon-content a {
    width: 40px;
    height: 40px;
  }
  
  .example-2 .icon-content a svg {
    width: 24px;
    height: 24px;
  }
  
  .example-2 {
    gap: 10px;
  }
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
  .menu-link a {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .sectionbar {
    left: 10px;
  }
  
  .example-2 .icon-content a {
    width: 40px;
    height: 40px;
  }
  
  .example-2 .icon-content a svg {
    width: 24px;
    height: 24px;
  }
  
  .example-2 {
    gap: 10px;
  }

  nav {
    left: 10px;
    top: 15px;
  }

  .menu-open-btn {
    padding: 10px 16px;
    font-size: 12px;
  }

  .header {
    font-size: 14vw;
  }

  .menu-overlay {
    padding: 1.5em;
  }

  .menu-cols {
    flex-direction: column;
  }

  .menu-link a {
    font-size: 1.6rem;
  }

  .video-preview {
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .menu-link a {
    font-size: 1.4rem;
  }

  .btn {
    padding: 0.75em 1.5em;
  }

  .menu-footer {
    bottom: 1em;
  }

  .menu-footer-copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5em;
  }
}

/* Responsive adjustments for about-section */
@media screen and (max-width:650px) {
    .about-section h1 {
        font-size: 50px;
    }

    .image-box {
        width: 300px;
        height: 500px;
    }

    .about-section h4,
    .about-section h5 {
        max-width: 350px;
        text-align: center;
    }

    .stones-img {
        margin-top: 80%;
        width: 400px;
    }
}

/* ✅ Responsive tweaks */
/* ✅ Laptops and larger screens */
@media (min-width: 992px) and (max-width: 1199px) {
  html { font-size: 60%; } /* slightly smaller for smaller laptops */
  .card-img img { height: 220px; }
  .package-preview .preview { width: 85%; padding: 2rem; }
  .pkg-marquee-content img { height: 14rem; }
  .sticky-btn { padding: 0.6rem 5rem; font-size: 1.5rem; }
}

@media (min-width: 1200px) and (max-width: 1439px) {
  html { font-size: 62.5%; }
  .card-img img { height: 250px; }
  .package-preview .preview { width: 80%; padding: 2.5rem; }
  .pkg-marquee-content img { height: 16rem; }
  .sticky-btn { padding: 0.7rem 6rem; font-size: 1.6rem; }
}

@media (min-width: 1440px) and (max-width: 1919px) {
  html { font-size: 65%; }
  .card-img img { height: 280px; }
  .package-preview .preview { width: 75%; padding: 3rem; }
  .pkg-marquee-content img { height: 18rem; }
  .sticky-btn { padding: 0.8rem 7rem; font-size: 1.7rem; }
}

@media (min-width: 1920px) {
  html { font-size: 70%; }
  .card-img img { height: 320px; }
  .package-preview .preview { width: 70%; padding: 3.5rem; }
  .pkg-marquee-content img { height: 20rem; }
  .sticky-btn { padding: 1rem 8rem; font-size: 1.8rem; }
}

@media (max-width: 991px) {
  html { font-size: 55%; }
  .card-img img { height: 180px; }
  .package-preview .preview { width: 90%; }
  .pkg-marquee-content img { height: 12rem; }
}

@media (max-width: 768px) {
  .cards { padding: 1.5rem; }
  .package-preview { padding: 1rem; }
  .package-preview .preview {
    width: 95%;
    padding: 1.5rem;
  }
  .pkg-marquee-content img { height: 10rem; }
  .sticky-btn {
    padding: 0.5rem 3rem;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  html { font-size: 50%; }
  .pkg-marquee-content img { height: 8rem; }
  .sticky-btn { font-size: 1.4rem; }
  .package-preview .preview h3 { font-size: 1.8rem; }
  .package-preview .preview p { font-size: 1.3rem; }
  .package-preview .preview .fa-times {
    top: 0.8rem;
    right: 0.8rem;
    width: 2.8rem;
    height: 2.8rem;
    line-height: 2.8rem;
    font-size: 1.6rem;
  }
}

/* --- Large screens (1200px and below) --- */
@media (max-width: 1200px) {
    h1 {
        font-size: 2.5rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    .marquee-img {
        width: 25%;
    }
     .package-preview .preview {
      width: 40rem;
      padding: 1.8rem;
      max-height: 65vh; /* ⬅️ Decreased height from 80vh to 65vh */
      overflow-y: auto; /* Ensures scroll if content exceeds height */
    }
      .package-preview .preview .fa-times {
        font-size: 2rem;
        top: 1rem;
        right: 1rem;
      }

}


/* Responsive adjustments */
@media (max-width: 1024px) {
  .sticky .card {
    width: 220px;
  }

  .sticky .card-img img {
    height: 150px;
  }

  .sticky .card-title h1 {
    font-size: 1rem;
  }

  .sticky-btn {
    font-size: 0.95rem;
    padding: 0.6rem 1.4rem;
  }
}

@media (max-width: 768px) {
  .sticky .cards {
    padding: 1rem;
    gap: 0.8rem;
  }

  .sticky .card {
    width: 180px;
  }

  .sticky .card-img img {
    height: 130px;
  }

  .sticky .card-title h1 {
    font-size: 0.9rem;
  }

  .sticky-btn {
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem;
  }
}

@media (max-width: 480px) {
  .sticky .cards {
    padding: 0.8rem;
    gap: 0.6rem;
  }

  .sticky .card {
    width: 140px;
  }

  .sticky .card-img img {
    height: 110px;
  }

  .sticky .card-title h1 {
    font-size: 0.85rem;
  }

  .sticky .card-title p {
    font-size: 0.8rem;
  }

  .sticky-btn {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
  }
}

/* Optional: Hide scrollbar for cleaner look */
.horizontal-scroll::-webkit-scrollbar {
  display: none;
}
.horizontal-scroll {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* --- Tablets (900px and below) --- */
@media (max-width: 900px) {
    h1 {
        font-size: 2.5rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    .marquee {
        height: 40vh;
        margin-bottom: 20px;
    }
    .marquee-wrapper {
        width: 200%;
    }
    .marquee-images {
        gap: 10px;
    }
    .marquee-img {
        width: 30%;
    }
    .horizontal-slide {
        flex-direction: column-reverse;
        padding: 3rem 1rem;
        gap: 1.5rem;
    }
    .horizontal-slide .col h3 {
        width: 100%;
        text-align: center;
    }
    .horizontal-slide .col img {
        width: 100%;
        height: auto;
    }
}

/* --- Mobile screens (600px and below) --- */
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
        letter-spacing: -0.05rem;
    }
    h3 {
        font-size: 1.25rem;
    }
    .hero,
    .outro {
        padding: 1rem;
    }
    .marquee {
        height: 35vh;
        margin-bottom: 15px;
    }
    .marquee-wrapper {
        width: 300%;
    }
    .marquee-images {
        gap: 5px;
    }
    .marquee-img {
        width: 45%;
        border-radius: 10px;
    }
    .horizontal-slide {
        padding: 2rem 1rem;
        flex-direction: column-reverse;
        gap: 1rem;
    }
}

/* --- Extra small screens (400px and below) --- */
@media (max-width: 400px) {
    h1 {
        font-size: 1.75rem;
    }
    h3 {
        font-size: 1rem;
    }
    .marquee-img {
        width: 60%;
    }
    .marquee {
        height: 30vh;
    }
}

/* Responsive Design */
@media (max-width: 1000px) {
  h1 {
    font-size: 2rem;
  }

  .header h1 {
    width: calc(100% - 4rem);
  }

  .outro {
    padding: 4rem 0.75rem 9rem 0.75rem;
  }

  .outro-card-container {
    gap: 5rem 0;
  }

  .outro-card-article {
    max-width: 100%;
  }

  .outro-card-wrapper {
    padding-bottom: 5rem;
  }

  .outro-card-img {
    border-radius: 1.25rem;
  }

  .outro-card-data {
    width: 92%;
    max-width: 100%;
    padding: 1.25rem 1.5rem;
  }

  .outro-card-discription {
    font-size: 12px;
    line-height: 1.5;
  }

  .outro-card-title {
    font-size: 15px;
  }
}

/* Mobile - Small Screens (341px - 480px) */
@media screen and (min-width: 341px) and (max-width: 480px) {
  .outro {
    padding: 5rem 1rem 10rem 1rem;
  }

  .outro-card-container {
    gap: 5.5rem 0;
  }

  .outro-card-article {
    max-width: 300px;
  }

  .outro-card-wrapper {
    padding-bottom: 5.5rem;
  }
}

/* Mobile to Tablet (481px - 767px) */
@media screen and (min-width: 481px) and (max-width: 767px) {
  .outro {
    padding: 5rem 1.5rem 11rem 1.5rem;
  }

  .outro-card-container {
    gap: 6rem 1.5rem;
  }

  .outro-card-article {
    max-width: 340px;
  }

  .outro-card-wrapper {
    padding-bottom: 6rem;
  }
}

/* Tablet - 2 Column Layout (768px - 1119px) */
@media screen and (min-width: 768px) and (max-width: 1119px) {
  .outro {
    padding: 6rem 2rem 12rem 2rem;
  }

  .outro-card-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem 2.5rem;
    max-width: 900px;
  }

  .outro-card-article {
    max-width: 100%;
  }

  .outro-card-wrapper {
    padding-bottom: 6rem;
  }

  .outro-card-img {
    max-width: 360px;
  }

  .outro-card-data {
    max-width: 320px;
  }
}

/* Desktop - 3 Column Layout (1120px+) */
@media screen and (min-width: 1120px) {
  .outro {
    padding: 7rem 2.5rem 14rem 2.5rem;
  }

  .outro-card-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 7rem 2.5rem;
  }

  .outro-card-article {
    max-width: 80%;
  }

  .outro-card-wrapper {
    padding-bottom: 6.5rem;
  }

  .outro-card-img {
    max-width: 350px;
  }

  .outro-card-data {
    max-width: 320px;
    padding: 2rem 2.5rem;
  }

  .outro-card-discription {
    font-size: 14px;
    line-height: 1.7;
  }

  .outro-card-title {
    font-size: 18px;
  }
}

/* Large Desktop (1400px+) */
@media screen and (min-width: 1400px) {

   .services-copy .animate-text,
  .about .animate-text {
    width: 40%; /* narrower width for large screens */
    margin: 0 auto;
  }

  .outro-card-container {
    gap: 8rem 3rem;
    max-width: 1300px;
  }

  .outro-card-img {
    max-width: 370px;
  }

  .outro-card-data {
    max-width: 340px;
  }
  .home h1 {
    font-size: 1.8rem;
  }

  .about h1,
  .services-copy h1 {
    font-size: 2rem;
    letter-spacing: -0.05rem;
  }

  .animate-text {
    width: 100%;
  }
}

/* Responsive */
@media(max-width: 1100px) {
	.messageForm .halfWidth {
		flex-basis: 100%;
	}
}

@media(max-width: 900px) {
	.contact-container {
		padding: 30px 5%;
		min-height: auto;
	}
	
	.contact-container .row {
		flex-direction: column;
		gap: 40px;
	}
	
	.row section.left {
		min-width: 100%;
		margin-right: 0;
	}
	
	.row section.right {
		width: 100%;
	}
}

@media(max-width: 600px) {
	section.left .contactTitle h2 {
		font-size: 24px;
	}
	
	.iconGroup .icon {
		width: 45px;
		height: 45px;
		min-width: 45px;
		min-height: 45px;
	}
	
	.inputGroup label {
		font-size: 13px;
	}
	
	.messageForm input, 
	.messageForm textarea {
		font-size: 15px;
		padding: 10px;
	}
	
	.inputGroup button {
		width: 100%;
		padding: 12px;
	}
}

/* Responsive Design */
@media (max-width: 768px) {
  .comment-container {
    padding: 30px 20px;
  }

  .comment-box {
    flex-direction: column;
    align-items: center;
    padding: 25px 20px;
  }

  .profile-section {
    width: 100%;
    flex-direction: row;
    justify-content: center;
  }

  .head h2 {
    font-size: 26px;
  }

  .buttons {
    flex-direction: column;
    align-items: stretch;
  }

  #publish {
    width: 100%;
  }

  .notify {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .add-comment {
    padding: 40px 15px;
  }

  .comment-container {
    padding: 25px 15px;
  }

  .head h2 {
    font-size: 22px;
  }

  .profile-preview {
    width: 90px;
    height: 90px;
  }

  .profile-pic-container {
    width: 90px;
    height: 90px;
  }

  .upload-label {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 768px) {
  .horizontal-slide {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }
  /* Reorder so text appears first */
  .horizontal-slide .col:nth-child(1) {
    order: 1;
    width: 100%;
    flex: none;
  }
  .horizontal-slide .col:nth-child(2) {
    order: 2;
    width: 100%;
    flex: none;
    margin-top: 1rem; /* spacing between text and image */
  }
  /* Smaller images */
  .horizontal-slide .col img {
    width: 50%; /* small image size */
    max-width: none;
    margin: 0 auto;
    display: block;
  }
  /* Text full width and improved readability */
  .horizontal-slide .col h3 {
    width: 100%;
    text-align: left;
    font-size: 1rem;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .horizontal-slide .col img {
    width: 60%;
  }
  .horizontal-slide .col h3 {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .detail-content {
    padding: 20px 15px 80px 15px;
  }
  
  .detail-content h1 {
    font-size: 2rem;
  }
  
  .close-btn {
    padding: 10px 20px;
    font-size: 14px;
    margin: 10px 10px 0 0;
  }
  
  .image-gallery {
    grid-template-columns: 1fr;
  }
}