
.nhoragto {
  position: relative;
  width: 100%;
  height: 520px;
  
  overflow: hidden;
}

/* REALISTIC BACKGROUND */
.nhoragto-bg {
  position: absolute;
  inset: 0;
  background-image: url("horizon-img/baner3.webp");
  background-size: cover;
  background-position: center bottom;
  z-index: 1;
}

/* TITLE */
.nhoragto-title {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 6px 30px rgba(0,0,0,0.6);
  z-index: 5;
}

/* CLOUDS */
.nhoragto-cloud {
  position: absolute;
  top: 40px;
  width: 160px;
  height: 80px;
  background: url("horizon-img/cldimg.webp") no-repeat center/contain;
  z-index: 4;
}

.cloud1 {
  left: -200px;
  animation: cloudMove 60s linear infinite;
}

.cloud2 {
  top: 90px;
  left: -350px;
  animation: cloudMove 85s linear infinite;
}

@keyframes cloudMove {
  to { transform: translateX(1700px); }
}

/* BIRDS */
.nhoragto-birds {
  position: absolute;
  top: 90px;
  left: -150px;
  width: 120px;
  height: 60px;
  background: url("horizon-img/brds.webp") no-repeat center/contain;
  animation: birdsFly 35s linear infinite;
  z-index: 4;
}

@keyframes birdsFly {
  to { transform: translateX(1700px); }
}

/* SHIPS */
.nhoragto-ship {
  position: absolute;
  bottom: 120px;
  width: 260px;
  height: 90px;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 3;
}

.ship-one {
  background-image: url("horizon-img/crs2.webp");
  left: 100%;
  animation: shipLeft 26s linear infinite;
}

.ship-two {
  background-image: url("horizon-img/crs1.webp");
  bottom: 80px;
  left: -300px;
  animation: shipRight 34s linear infinite;
}

@keyframes shipLeft {
  to { transform: translateX(-1700px); }
}

@keyframes shipRight {
  to { transform: translateX(1700px); }
}



@keyframes scubaMove {
  to { transform: translateX(1700px); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nhoragto {
    height: 360px;
  }

  .nhoragto-title {
    font-size: 26px;
  }

  .nhoragto-ship {
    width: 180px;
    height: 65px;
  }
}
@media (max-width: 768px) {
  .nhoragto .ship-one,
  .nhoragto .ship-two {
    bottom: 15px !important;   /* move ships downward */
    top: auto !important;     /* cancel any top positioning */
  }
}
@media (max-width: 768px) {
  .nhoragto .ship-one { bottom: 12px !important; }
  .nhoragto .ship-two { bottom: 28px !important; }
}


    .ourhomfsec {
  padding: 60px 0;
  background: #f7fbff;
}

.ourhomfsec-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  padding: 0 20px;
}

/* LEFT */
.ourhomfsec-left {
  flex: 1;
}

.ourhomfsec-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

/* RIGHT */
.ourhomfsec-right {
  flex: 1.2;
  display: flex;
  align-items: center;
}

.ourhomfsec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Box */
.ourhomfsec-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 20px;
  box-shadow: 0 12px 35px rgba(0, 80, 160, 0.12);
  text-align: center;
  transition: all 0.3s ease;
}

.ourhomfsec-box:hover {
  transform: translateY(-6px);
}

/* Icon */
.ourhomfsec-box .icon {
  font-size: 34px;
  margin-bottom: 14px;
  color: #0b5fa5;
}

/* Title */
.ourhomfsec-box h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #083b66;
}

/* Button */
.view-btn {
  display: inline-block;
  padding: 8px 22px;
  background: #0b5fa5;
  color: #fff;
  border-radius: 25px;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.view-btn:hover {
  background: #094f89;
}

/* Bottom row centering (2 boxes) */
.ourhomfsec-grid > .ourhomfsec-box:nth-child(4),
.ourhomfsec-grid > .ourhomfsec-box:nth-child(5) {
  grid-column: span 1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .ourhomfsec-container {
    flex-direction: column;
  }

  .ourhomfsec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .ourhomfsec-grid {
    grid-template-columns: 1fr;
  }
}
.ourhomfsec {
  position: relative;
  overflow: hidden;
}

/* Wave background */
.ourhomfsec-wave-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.ourhomfsec-wave-bg svg {
  width: 100%;
  height: 100%;
}

/* Ensure content stays above waves */
.ourhomfsec-container {
  position: relative;
  z-index: 2;
}


.outpkgnewd {
  padding: 60px 0;
  background: #f6fbff;
  font-family: Arial, sans-serif;
}

.outpkgnewd h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 40px;
  color: #0a2540;
}

.outpkgnewd-wrap {
  max-width: 1200px;
  margin: auto;
}

.outpkgnewd-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
}
.outpkgnewd-slider::-webkit-scrollbar { display: none; }

/* CARD */
.outpkgnewd-card {
  min-width: calc(33.333% - 14px);
  height: 320px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.outpkgnewd-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.outpkgnewd-overlay {
  position: absolute;
  inset: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0.1));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Duration */
.outpkgnewd-duration {
  align-self: flex-start;
  background: rgba(255,255,255,0.22);
  color: #fff;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
}

/* Bottom row */
.outpkgnewd-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
}

.outpkgnewd-text h3 {
  color: #fff;
  font-size: 20px;
  margin: 0 0 6px;
}

.outpkgnewd-text p {
  color: #e6e6e6;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  max-width: 260px;
}

/* Button */
.outpkgnewd-btn {
  background: #0077ff;
  color: #fff;
  padding: 10px 18px;
  border-radius: 22px;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

/* NAV */
.outpkgnewd-nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

/* DOT CONTAINER */
.outpkgnewd-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* DOT STYLE */
.outpkgnewd-dots span {
  width: 10px;
  height: 10px;
  background: #b5c7d6;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

/* ACTIVE DOT */
.outpkgnewd-dots span.active {
  background: #0077ff;
  transform: scale(1.2);
}


.outpkgnewd-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
}

.outpkgnewd-dots span {
  width: 10px;
  height: 10px;
  background: #cfd8e3;
  border-radius: 50%;
}
.outpkgnewd-dots span.active {
  background: #0077ff;
}

/* RESPONSIVE */
@media(max-width: 991px){
  .outpkgnewd-card { min-width: 50%; }
}
@media(max-width: 600px){
  .outpkgnewd-card { min-width: 100%; height: 300px; }
}
.outpkgnewd-duration {
  display: inline-block;
  margin-bottom: 6px;
}

/* FULL ISOLATION */
.tourthmenew-isolated,
.tourthmenew-isolated *{
  box-sizing:border-box;
}
.tourthmenew-isolated{
  padding:80px 0 90px;
}

/* SECTION */
.tourthmenew-isolated{
  position:relative;
  background:#fff;
  padding:80px 0 65px;
  overflow:hidden;
}

/* WAVE BACKGROUND */
.tourthmenew-wave-bg{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:75%;
  background:url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 320' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23e6f7ff' d='M0,160L48,176C96,192,192,224,288,229C384,235,480,213,576,197C672,181,768,171,864,176C960,181,1056,203,1152,208C1248,213,1344,203,1392,197L1440,192L1440,320L0,320Z'/%3E%3C/svg%3E");
  background-size:cover;
  z-index:0;
}

@media(max-width:768px){
  .tourthmenew-wave-bg{
    height:85%;
  }
}


/* WRAP */
.tourthmenew-wrap{
  position:relative;
  max-width:1200px;
  margin:auto;
  z-index:2;
}

/* VIEWPORT */
.tourthmenew-viewport{
  overflow:hidden;
  width:100%;
}

/* TRACK */
.tourthmenew-track{
  display:flex;
  transition:transform .6s ease;
  will-change:transform;
}

/* CARD */
.tourthmenew-card{
  flex:0 0 33.3333%;
  padding:15px;
}

@media(max-width:768px){
  .tourthmenew-card{
    flex:0 0 100%;
  }
}

.tourthmenew-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:16px 16px 0 0;
  display:block;
}

/* INFO */
.tourthmenew-info{
  background:#fff;
  padding:14px;
  border-radius:0 0 16px 16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.tourthmenew-info span{
  font-weight:700;
  font-size:18px;
  color:#0b3c5d;
}

@media(max-width:768px){
  .tourthmenew-info span{
    font-size:17px;
  }
}


.tourthmenew-card{
  transition:transform .4s ease;
}

.tourthmenew-card:hover{
  transform:translateY(-6px);
}

.tourthmenew-info{
  box-shadow:0 12px 28px rgba(0,0,0,.12);
}

.tourthmenew-card:hover .tourthmenew-info{
  box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.tourthmenew-info a{
  background:#0077b6;
  color:#fff;
  padding:6px 14px;
  border-radius:20px;
  text-decoration:none;
  font-size:13px;
}

/* CONTROLS */
.tourthmenew-controls{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  margin-top:18px;
  margin-bottom:0;
}

/* ARROWS */
.tourthmenew-arrow{
  width:38px;
  height:38px;
  border-radius:50%;
  border:none;
  background:#0077b6;
  color:#fff;
  font-size:18px;
  cursor:pointer;
}

/* DOTS */
.tourthmenew-dots{
  display:flex !important;
  gap:8px;
}

.tourthmenew-dots span{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#bbb;
  cursor:pointer;
}

.tourthmenew-dots span.active{
  background:#0077b6;
}
.tourthmenew-heading{
  text-align:center;
  font-size:34px;
  font-weight:700;
  margin-bottom:40px;
  color:#0b3c5d;
}

@media(max-width:768px){
  .tourthmenew-heading{
    font-size:26px;
    margin-bottom:28px;
  }
}


/* ISOLATION */
.acttnewsec-isolated,
.acttnewsec-isolated *{
  box-sizing:border-box;
}

.acttnewsec-bg{
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  background:
    /* Fish right */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 60'%3E%3Cpath fill='%2390d7ff' opacity='0.35' d='M10 30c18-18 50-18 68 0-18 18-50 18-68 0z'/%3E%3C/svg%3E")
    85% 30% no-repeat,

    /* Fish left */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50'%3E%3Cpath fill='%237ecbff' opacity='0.25' d='M8 25c15-15 42-15 58 0-15 15-42 15-58 0z'/%3E%3C/svg%3E")
    10% 55% no-repeat,

    /* Bubbles */
    radial-gradient(circle at 20% 40%, rgba(255,255,255,.35) 2px, transparent 3px),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,.25) 2px, transparent 3px),
    radial-gradient(circle at 50% 30%, rgba(255,255,255,.2) 1.5px, transparent 3px);
}

/* SECTION */
/* SEA GRADIENT BASE */
.acttnewsec-isolated{
  position:relative;
  background:
    linear-gradient(
      180deg,
      #eaf9ff 0%,
      #d6f2ff 35%,
      #bfeaff 65%,
      #ffffff 100%
    );
  overflow:hidden;
}


/* SEA BACKGROUND (TURTLE + FISH) */
.acttnewsec-bg{
  position:absolute;
  inset:0;
  background:
    url("data:image/svg+xml,%3Csvg width='140' height='80' viewBox='0 0 140 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ccefff' d='M30 40c10-20 40-20 50 0-10 20-40 20-50 0z'/%3E%3Ccircle cx='85' cy='38' r='3' fill='%230077b6'/%3E%3C/svg%3E") 10% 30% no-repeat,
    url("data:image/svg+xml,%3Csvg width='120' height='60' viewBox='0 0 120 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23e0f7ff' d='M10 30c15-15 35-15 50 0-15 15-35 15-50 0z'/%3E%3C/svg%3E") 85% 65% no-repeat;
  opacity:.35;
  z-index:0;
}

/* WRAP */
.acttnewsec-wrap{
  position:relative;
  max-width:1250px;
  margin:auto;
  z-index:2;
}

/* HEADING */
.acttnewsec-heading{
  text-align:center;
  font-size:34px;
  font-weight:700;
  margin-bottom:45px;
  color:#0b3c5d;
}

/* VIEWPORT */
.acttnewsec-viewport{
  overflow:hidden;
}

/* TRACK */
.acttnewsec-track{
  display:flex;
  transition:transform .6s ease;
}

/* CARD */
.acttnewsec-card{
  flex:0 0 25%;
  padding:15px;
  transition:transform .4s ease;
}

@media(max-width:768px){
  .acttnewsec-card{
    flex:0 0 100%;
  }
}

/* STAGGER EFFECT */
.acttnewsec-card.up{ transform:translateY(-20px); }
.acttnewsec-card.down{ transform:translateY(20px); }

@media(max-width:768px){
  .acttnewsec-card.up,
  .acttnewsec-card.down{
    transform:none;
  }
}

/* IMAGE */
.acttnewsec-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:16px 16px 0 0;
  display:block;
}

/* INFO */
.acttnewsec-info{
  background:#fff;
  padding:14px;
  border-radius:0 0 16px 16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  box-shadow:0 10px 26px rgba(0,0,0,.12);
}

.acttnewsec-info span{
  font-size:18px;
  font-weight:700;
  color:#0b3c5d;
}

.acttnewsec-info a{
  background:#0077b6;
  color:#fff;
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
  text-decoration:none;
}

/* CONTROLS */
.acttnewsec-controls{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  margin-top:25px;
}

.acttnewsec-arrow{
  width:38px;
  height:38px;
  border-radius:50%;
  border:none;
  background:#0077b6;
  color:#fff;
  font-size:18px;
  cursor:pointer;
}

.acttnewsec-dots{
  display:flex;
  gap:8px;
}

.acttnewsec-dots span{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#bbb;
  cursor:pointer;
}

.acttnewsec-dots span.active{
  background:#0077b6;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner {
    width: 100%;
    padding: 12px;
    background: #0a6db8;
    color: #fff;
    border: none;
    border-radius: 8px;
}