:root {
  --ddg-dark: #110C3B;
  --ddg-blue: #00a0ff;
  --ddg-red: #ff2d2d;
  --ddg-white: #fff;
  --ddg-theme: #ff761e;

}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  font-family: "Albert Sans", sans-serif !important;
}


a {
  text-decoration: none;
}

/* ===== TOP ===== */
.ddg-top {
  background: var(--ddg-dark);
  color: var(--ddg-white);
  font-size: 14px;
  padding: 12px 0;
}

.ddg-email i {
  color: var(--ddg-blue);
  margin-right: 5px;
}

.ddg-email a {
  color: var(--ddg-white);
  font-weight: 600;

}

.ddg-phone {
  text-align: right;
  font-weight: 600;
}

.ddg-phone a {
  color: var(--ddg-white);
}

.ddg-phone i {
  color: var(--ddg-red);
}

/* MARQUEE */
.ddg-marq {
  overflow: hidden;
  position: relative;
}

.ddg-track {
  display: flex;
  gap: 25px;
  white-space: nowrap;
  animation: ddgMarquee 10s linear infinite;
}

.ddg-track span {
  display: inline-block;
}

/* real smooth infinite */
@keyframes ddgMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===== NAV ===== */
/* Default Navbar */
.ddg-nav {
  border-bottom: 3px solid var(--ddg-blue);
  transition: .3s ease;
  background: #fff;
}

/* Sticky Class */
.ddg-nav.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: 0 5px 20px rgba(0,0,0,0.10);
  animation: slideDown .4s ease;
}

/* Smooth effect */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.ddg-logo img {
  height: 60px;
}

.ddg-menu .nav-link {
  font-weight: 600;
  color: #111;
  margin-left: 10px;
}

.ddg-menu .active,
.ddg-menu .nav-link:hover {
  color: var(--ddg-blue);
}


/* ===== main cards ===== */

.ddg-pkg-img{
  position:relative;
}

.ddg-pkg-img img{
  width:100%;
  height:250px;
  object-fit:cover;
  border-radius:16px 16px 0 0;
}
.riew {
  display: flex;
  justify-content: space-between;
}
.icon-group{
  color: var(--ddg-theme);
}
.rotate-icon {
    display: inline-block;
    transform: rotate(90deg);
    /* margin-right: 10px; */
}
.offer-price{
  font-size: 24px;
  margin-left: 18px;
    margin-bottom: 10px
}
.offer-price  {
  color: var(--ddg-theme);
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* badge */
.ddg-pkg-badge{
  position:absolute;
  top:10px;
  left:10px;
  background:var(--ddg-theme);
  color:#fff;
  padding:5px 10px;
  border-radius:20px;
  font-size:12px;
}
.ddg-pkg-desc{
    color: #000;
    font-weight: 600;
    margin: 10px 0 0 0;
}

/* card already tere paas hai */
.ddg-pkg-card{
  background:#fff;
  border-radius:16px;
  border:1px solid #e5f1ff;
  transition:.3s;
}

.ddg-pkg-card:hover{
  transform:translateY(-6px);
  box-shadow:0 15px 35px #0011;
}

/* mobile */
@media(max-width:768px){
 .ddg-pkg-img img{
   height:190px;
 }
}

.ddg-pkg-sec{
  padding:25px 0;
  background:#f6fbff;
}

/* CARD */
.ddg-pkg-card{
  background:#fff;
  border-radius:16px;
  border:1px solid #e5f1ff;
  transition:.3s;
      padding: 18px;
}

.ddg-pkg-card:hover{
  transform:translateY(-6px);
  box-shadow:0 15px 35px #0011;
}

.ddg-pkg-content{
  /* padding:15px; */
}

/* HEADING */
.ddg-pkg-title{
  color:var(--ddg-dark);
  font-weight:700;
      font-size: 22px;
    margin-top: 14px;

}

/* PRICE */
.ddg-pkg-price{
  font-size:24px;
  font-weight:800;
  color:var(--ddg-theme);
  background:#fff7f1;
  padding:6px 10px;
  border-radius:10px;
  display:inline-block;
}

.ddg-pkg-price del{
  font-size:14px;
  color:#777;
}

/* LIST */
.ddg-pkg-list{
  list-style:none;
  padding:0;
}

.ddg-pkg-list li{
  margin:6px 0;
}

.ddg-pkg-list i{
  color:green;
  margin-right:6px;
}

/* BUTTONS */
.ddg-pkg-btns{
  display:flex;
  gap:6px;
  flex-wrap:wrap;
}




/* ===== footer ===== */
.ddg-footer {
  /* background:var(--ddg-dark); */
  background: #0d345a;
  color: var(--ddg-white);
  padding: 50px 0 20px;
}

.ddg-f-about {
  font-size: 15px;
  line-height: 1.7;
}

.ddg-f-link {
  list-style: none;
  padding: 0;
}

.ddg-f-link li {
  margin: 8px 0;
  cursor: pointer;
}

.ddg-f-logo {
  width: 200px;
  background-color: #fff;
  border-radius: 10px;
  padding: 9px;
}



.ddg-g-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  /* 3 column */
  gap: 10px;
  margin-top: 24px;
}



.ddg-g-grid img {
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
  height: 60px;
}

/* contact card */
.ddg-f-card {
  background: var(--ddg-f-card);
  padding: 0px 15px;
  border-radius: 10px;
}

.ddg-f-card i {
  color: var(--ddg-blue);
  margin-right: 6px;
}

/* bottom */
.ddg-copy {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

/* ===== MODAL ===== */
.ddg-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: #000c;
  z-index: 9999;
  text-align: center;
  align-content: center;
}

#ddgView {
  max-width: 90%;
  /* margin-top:15%; */
  max-height: 40vh;
}

.ddg-close {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 35px;
  cursor: pointer;
  color: #fff;
}

.ddg-prev,
.ddg-next {
  position: absolute;
  top: 50%;
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
}

.ddg-prev {
  left: 10px
}

.ddg-next {
  right: 10px
}


.footer {
  z-index: 1;
  position: relative;
  background-position: center center;
  background-attachment: scroll;
}

.footer:before,
.footer:after {
  content: '';
  position: absolute;
  height: 20px;
  width: 100%;
  background-image: url(../asstes/img/footer-top-shape-dark.png);
  top: -19px;
  z-index: 9;
  background-repeat: repeat-x;
  -webkit-animation: move 12s linear infinite;
  animation: move 12s linear infinite;
  -webkit-animation-delay: -4s;
  animation-delay: -4s;
  -webkit-animation-duration: 12s;
  animation-duration: 12s;
  background-color: transparent !important;
}

.footer:after {
  content: '';
  position: absolute;
  height: 20px;
  width: 100%;
  background-image: url(../asstes/img/footer-top-shape-light.png);
  top: -22px;
  z-index: 9;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
  -webkit-animation-duration: 8s;
  animation-duration: 8s;
}

@keyframes move {
  0% {
    background-position: left 0 bottom 0
  }

  100% {
    background-position: left 350px bottom 0
  }
}


/* ===== slider ===== */

.hero-area {
  position: relative;
}

.ddg-hero-content {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--ddg-theme);
  width: 90%;
  max-width: 600px;
}

.ddg-hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ddg-hero-content p {
  font-size: 16px;
  margin-bottom: 18px;
}

.ddg-btn {
  background: var(--ddg-dark);
  color: var(--ddg-white);
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.ddg-btn:hover {
  background: var(--ddg-theme);
}

/* mobile */
@media(max-width:768px) {

  .ddg-hero-content h1 {
    font-size: 26px;
  }
  .ddg-pkg-btns{
    gap:4px;
  }

}


/* ===== youtube ===== */
.ddg-shorts {
  padding: 25px 0;
}

.ddg-yt {
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.ddg-yt iframe {
  width: 100%;
  height: 220px;
  /* shorts vertical feel */
  border: 0;
}

/* responsive */
@media(max-width:768px) {
  .ddg-yt iframe {
    /* height: 520px; */
  }
}


/* ===== advanture stret ===== */

.ddg-pack {
  padding: 40px 0;
}

.ddg-box {
  border: 1px solid #0e2b5c;
  border-radius: 12px;
  padding: 15px;
}

.ddg-img {
  border-radius: 10px;
  height: 190px;
  object-fit: cover;
}

/* smooth bootstrap slide */
.carousel-item {
  transition: transform .5s ease;
}

.ddg-btn {
  background: var(--ddg-dark);
  color: #fff;
  padding: 8px 0px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  margin-top: 6px;
  width: 32%;
  text-align: center;
}

.ddg-btn:hover {
  background: var(--ddg-blue);
}

.call-nn:hover {
  background: var(--ddg-blue);
}

.call-nn {
  background: var(--ddg-theme);

  color: #fff;
  padding: 8px 0px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  margin-top: 6px;
  width: 32%;
  text-align: center;
}

.what-bg {
  background: linear-gradient(135deg, #25D366, #128C7E);

  color: #fff;
  padding: 8px 0px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  margin-top: 6px;
  width: 32%;
  text-align: center;

}

.what-bg:hover {
  background: linear-gradient(135deg, #1ea654, #0d6f5f);
  color: white !important;
}

.contct-bnn {
  display: flex;
  gap: 10px;
}

/* mobile */
@media(max-width:768px) {
  .ddg-img {
    height: 200px;
    margin-bottom: 16px;
  }
}


/* ===== advanture ===== */


.cust-m {
  margin-left: 30px;
}

/* Equal 5 columns */
.col-5-equal {
  width: 20%;
  padding: 0 10px;
}

@media (max-width: 992px) {
  .col-5-equal {
    width: 33.33%;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .col-5-equal {
    width: 50%;
    margin-bottom: 20px;
  }

  .ddg-hero-content p {
    display: none;
  }

  .call-nn {
    display: none;
  }

  .ddg-btn {
    width: 49%;
    text-align: center;
  }

  .what-bg {
    width: 49%;
    text-align: center;
  }

  .cust-m {
    margin-left: 15px;
  }
}

@media (max-width: 576px) {
  .col-5-equal {
    width: 50%;
  }
}

.destination-card {
  position: relative;
  height: 200px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-card:hover img {
  transform: scale(1.15);
}

.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 70%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 15px;
  transition: all 0.3s ease-in-out;
}

/* Hover overlay darker */
.destination-card:hover .destination-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, #0202026b 70%);

}

.destination-name {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease;
  transform: translateY(0px);
}

/* Hover name moves up */
.destination-card:hover .destination-name {
  transform: translateY(-25px);
}


/* ===== testimonials ===== */
.review-card {
  background-color: #fff;
  color: #000;
  padding: 20px;
  border-radius: 10px;
  height: 285px;
}

.review-card:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

.review-section {
  background: linear-gradient(180deg, #f3fcff 0%, #e8f6ff 100%);
  padding: 50px 0;
}

.review-left {
  text-align: center;
}

.swiper-button-prev,
.swiper-button-next {
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px !important;
  height: 40px !important;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 18px;
  font-weight: bold;

}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: '' !important;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: '' !important;
}

.swiper-button-prev,
.swiper-button-next {
  z-index: 10;
  cursor: pointer;
}

.review-para {
  color: #000;
}

.vary span img {
  height: 18px;
  width: 18px;
  ;
}

.vary i {
  font-size: 16px;
}

.review-left {
  height: 292px;
  text-align: center;
  align-content: center;
}

.test-name {
  margin-left: -80px;
}

.user-ph {
  height: 45px;
  width: 45px;
}

.riv {
  justify-content: space-between;
}

@media (max-width: 768px) {
  .review-left {
    height: auto;
  }
}

/* ===== faq ===== */

.ddg-faq {
  padding: 50px 0;
}

.ddg-title {
  color: var(--ddg-dark);
  margin-bottom: 15px;
  font-weight: 600;
}

.ddg-item {
  margin-bottom: 10px;
  border-radius: 6px;
  overflow: hidden;
}

.ddg-head {
  background: #eee;
  padding: 12px;
  cursor: pointer;
}

.ddg-body {
  max-height: 0;
  overflow: hidden;
  /* transition:max-height .35s ease; */
  transition: max-height .55s ease;
  padding: 0 12px;
}

.ddg-item.active .ddg-body {
  padding: 12px;
}

.ddg-head {
  transition: all .3s ease;
}

.ddg-item.active .ddg-head {
  background: var(--ddg-dark);
  color: var(--ddg-white);
}


/* ===== about ===== */
.ddg-about {
  padding: 50px 0;
  /* background: linear-gradient(165deg, #f2faff, #ffffff, #fff4e8); */
      background: linear-gradient(165deg, #fff6e5, #ffffff, #fff4e8);
}

/* Image */
.ddg-imgbox{
  position:relative;
}

.ddg-imgbox img {
  border-radius: 26px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  transition:.4s ease;
}

.ddg-imgbox:hover img{
  transform:scale(1.01);
}

.badge-top{
  position:absolute;
  top:20px;
  left:20px;
  background:#ff7a00;
  color:#fff;
  padding:6px 15px;
  border-radius:30px;
  font-size:13px;
  font-weight:700;
}

.img-tag{
  position:absolute;
  bottom:20px;
  right:20px;
  background:#0d6efd;
  color:#fff;
  padding:6px 14px;
  border-radius:30px;
  font-size:12px;
}

/* Content */
.tag-line{
  color:#ff7a00;
  font-weight:800;
  letter-spacing:1.5px;
  text-transform:uppercase;
  font-size:13px;
}

.main-title{
  font-weight:900;
  margin:12px 0;
  line-height:1.25;
  font-size:32px;
}

.main-para{
  color:#555;
  font-size:15.5px;
  line-height:1.7;
}

.trust-strip{
  background:#e5f2ff;
  padding:12px 16px;
  border-radius:14px;
  font-weight:700;
  color:#0d6efd;
  font-size:14px;
}

/* Features */
.ddg-f {
  display:flex;
  gap:10px;
  align-items:center;
  background:#fff;
  padding:15px;
  border-radius:16px;
  box-shadow:0 12px 25px rgba(0,0,0,0.06);
  transition:.3s ease;
  border:1px solid #f1f1f1;
}

.ddg-f:hover{
  transform:translateY(-5px);
  box-shadow:0 15px 30px rgba(0,0,0,0.09);
}

.ddg-f i {
  font-size:20px;
  color:#ff7a00;
}

/* Quote */
.mini-quote{
  font-style:italic;
  color:#222;
  font-weight:700;
  border-left:4px solid #ff7a00;
  padding-left:12px;
  font-size:15px;
}

/* Mobile */
@media(max-width:768px) {
  .ddg-about {
    padding: 55px 0
  }
  .ddg-f h6{
    font-size: 13px;
  }
  .rigt-con{
    margin-top: 20px;
  }

  .main-title{
    font-size:26px;
  }
}



/* ===== MOBILE ===== */
@media(max-width:768px) {

  .ddg-g-grid {
    grid-template-columns: 1fr 1fr;
    /* mobile 2 col */
  }

  .ddg-phone {
    text-align: left;
    margin-top: 5px;
  }

  .ddg-top {
    display: none;
  }

  .ddg-logo img {
    height: 40px;
  }

  .ddg-email,
  .ddg-phone {
    text-align: center;
  }

}

/*form*/
   .details{
            /*margin-top: -40px;*/
            /*margin-bottom:50px;*/
        }
        @media (max-width: 578px) {
    .details{
            margin-top:-30px;
            margin-bottom:20px;
        }
    }

   
        @media (min-width: 992px) {
   .bg-new {
      position: relative;
      top: -55px;
      /*height: 70px;*/
   }
}
@media (max-width: 991px) {
   .bg-new {
      top: 0px;
      margin-top: 30px;
      height: auto;
   }
}
.form-heading {
    margin: 0;
    background-color:var(--ddg-dark);
    padding: 12px 0;
    border-radius: 10px 10px 0 0;
}

.form-heading-1 {
    text-align: center;
    color: white;
    font-weight: 400;
    font-size: 25px;
    font-family: math;
}

.button-1 {
    width: 100%;
    padding:5px 0px;
    border-radius: 5px;
    background: #ffcd05;
    border: none;
    color: #000;
}

.button-1:hover {
    background: #02aaf9;
    color: white;
}
.form-container {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 5px;
    z-index: 1;
} 

.new-2 {
    border-radius: 12px;
    background-color:#fff;
    border: 1px solid #010f59;
}

.input-group {
    margin-bottom: 15px;
}

.new-comt{
    width:100%;
}
    
}

.book-fixed-vertical1 {


}


.custom-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}
.popup-content {
  background: #fff;
  padding: 30px 25px;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  position: relative;
  box-shadow: 0 5px 25px rgba(0,0,0,0.3);
  text-align: center;
}
.popup-content h5 {
  margin-bottom: 20px;
  margin-top: 0px;
}
.popup-content input {
  width: 100%;
  padding: 10px 12px;
  margin: 8px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
.popup-content button {
  background-color:var(--ddg-dark);
  border: none;
  color: white;
  padding: 12px 20px;
  margin-top: 10px;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  font-weight: bold;
}
.popup-close {
   position: absolute;
    top: 5px;
    right: 15px;
    font-size: 30px;
    cursor: pointer;
    color: var(--ddg-dark);
    font-weight: 600;
}
.popup-content textarea{
    padding:10px;
    width: 100%;
}
@media(max-width:500px){
  .popup-content { padding: 20px 15px; }
}

   .book-fixed-vertical1 {
    position: fixed;
    top: 40%;
    right: 0;
    z-index: 9999;
    padding: 16px 10px;
        background: linear-gradient(135deg, var(--ddg-dark), var(--ddg-dark));
    color: white;
    border: none;
    border-radius: 12px 0 0 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 35px;
        text-decoration: none;
}

.book-fixed-vertical1 span {
    font-size: 15px;
    display: block;
    font-weight: 600;
    margin: -5px 0px;  
    font-family: monospace;
    color: #fff;
}

/*social*/
   .call-btn img {
  height: 45px;
  width: 45px;
  position: fixed;
  /*left: 30px;*/
  left: 15px;
  /*bottom: 150px;*/
  bottom: 155px;
  z-index: 999;
}
.whatsapp-link img {
  height: 45px;
  width: 45px;
  position: fixed;
  /*left: 30px;*/
  left: 15px;
  /*bottom: 100px;*/
  bottom: 105px;
  z-index: 999;
}
@media (max-width: 575.98px) {  
  .call-btn{
      display:none;
  }
  .whatsapp-link{
      display:none;
  }
}


  .ftr-bar{
            
            display: flex;
            width: 100%;
            position:fixed;
            bottom:0;
            z-index:999;
           
        }

        .ftr-bar-btn{
            flex-basis: 50%;
            background-color:var(--ddg-dark); 
            display:flex;
            justify-content:center;
            align-items:center;
            color:#ffffff !important;
            font-weight:700;
            padding: 6px 0px;
        }

        .book-btn{
        flex-basis: 33.3%;
        background-color: #ffba00;
        }
        .wp-btn{
         flex-basis: 35%;
         background-color: #ffcd05;
         border-radius: 30px;
         /*box-shadow: 0px 0px 13px 0px rgb(255 205 5);*/
        }
        .call-btn{
         flex-basis: 35%;
         background-color: #ffcd05;
         border-radius: 30px;
         /*box-shadow: 0px 0px 13px 0px rgb(255 205 5);*/
        }
        .book-btn a{
         color: #000;
         text-decoration: none;
        }
        .wp-btn a{
            color: #000;
            text-decoration: none;
        }
        .call-btn a{
            color: #000;
            text-decoration: none;
        }
        
        .call-btn a i {
            font-size: 14px;
        }

        .ftr-bar{
            display: none;
        }
        
        .ftr-bar-btn {
                animation: shake 2s infinite alternate ease-in-out;
            }
        
        @keyframes shake {
    	    0% {
              transform: rotate(2deg);
              }
            
            50% {
              transform: rotate(-2deg);
              }
            100% {
              transform: rotate(2deg);
              }
          }
        
      @media only screen and (max-width: 768px) {

        .ftr-bar{
            display: flex;
            justify-content: space-around;
            background:var(--ddg-dark);
            padding: 8px 0;
        }
        
        .whatsapp-link,
            .call-btn-link{
                display:none;
            }
            .phone-call,
            .whatsapp{
                display:none;
            }
            }
