@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*{
  margin: 0;
  padding: 0;
}

body{
  box-sizing: border-box;

}

h1,h2,h3,h4,h5,h6{
  font-family: "Playfair Display", serif;
}

p,li,span{
  font-family: "Google Sans Flex", sans-serif;
  font-family: "Roboto", sans-serif;
}

a{
 
  font-family: "Roboto", sans-serif;
}

.container-fluid{
  max-width: 1400px;
}

#navbarNavDropdown{
  margin-left: auto;
}

.navbar-nav{
  gap: 10px;
}

.nav-link{
  font-size: 15px;
  font-weight: 500;
   transition: color 0.3s ease;
   position: relative;
}

/* 👇 underline ONLY for non-dropdown */
.navbar .nav-link:not(.dropdown-toggle)::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff6f00, #00acc1);
  transition: all 0.35s ease;
  transform: translateX(-50%);
  border-radius: 10px;
}

/* Hover */
.navbar .nav-link:hover{
  color: #ff6f00;
}

/* Underline animate */
.navbar .nav-link:not(.dropdown-toggle):hover::after{
  width: 80%;
}

/* Active state */
.navbar .nav-link.active:not(.dropdown-toggle)::after{
  width: 80%;
}


.top-header{
  background-color: #0779a1;
}

.top-header .container-fluid{
  justify-content: space-between;
}
.list-inline{
  display: flex;
  gap: 10px;
  margin-bottom: 0px;
}
.call-no-header a{
  padding-left: 10px;
  border-left: 1px solid #fff;
  color: #fff;
  text-decoration: none;
}

.list-inline li a i{
  
  color: #fff;
}

.nav-link i{
  font-size: 18px;
  color:#ff3600;
}

.carousel-control-next{
    display: flex;
    height: 50px;
    width: 50px;
    background: #ff3600;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 40px;
}

.carousel-control-prev{
    display: flex;
    height: 50px;
    width: 50px;
    background: #ff3600;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 40px;
}

.shadow-top{
  position: absolute;
  bottom: -70px;
  z-index: 111;
  left: 0;
  right: 0;
}

.carousel-indicators{
  display: none;
}

.carousel-caption{
  
    transform: translateY(-50%);
}

.carousel-caption h2 span{
  color: #fcb316;
}

.carousel-caption h2{
  font-weight: 800;
  font-size: 60px;
  text-shadow: 2px 2px 4px #000000;
}

.carousel-caption p{
  font-size: 22px;
  max-width: 700px;
  margin: auto;
}

.btn-custome{
  background-color: #fcb316;
  font-size: 17px;
  padding: 5px 30px;
  border-radius: 0px;
  font-weight: 500;
}

.btn-custome:hover{
  background-color: #1a1a1a;
  font-size: 17px;
  padding: 5px 30px;

  font-weight: 500;
  border: 1px solid #fff;
}

.carousel-item{
  position: relative;
}

/* .carousel-item::before{
  content: "";
  display: flex;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  bottom: 0;
} */

.btn-custome-view{
  background-color: #0779a1;
 font-size: 17px;
  padding: 5px 30px;
  border-radius: 0px;
  font-weight: 500;
  color: #fff;
}

.btn-custome-view:hover{
  border: 1px solid #fff;
}

.animation-cloud img{
    position: absolute;
    top: 50px;
    width: 400px;
    z-index: -1;
    animation: rightleft 18s ease-in-out infinite;
}

.animation-cloud-2 img{
    position: absolute;
    top: 50px;
    right: 10px;
    width: 400px;
    z-index: -1;
    animation: leftright 18s ease-in-out infinite;
}


@keyframes rightleft {
  0% {
    left: 10px;
  }
  50% {
    left: 100px;
  }
  100% {
    left: 10px;
  }
}

@keyframes leftright {
  0% {
    right: 10px;
  }
  50% {
   right: 100px;
  }
  100% {
    right: 10px;
  }
}

@keyframes smalltobig {
  0% {
    width:100px;
    left: 0;
    
  }
  100% {
   width: 300px;
   left: 20px;
  }
  
}

.animation-plane img{
  width: 100px;
  position: absolute;
  left: 0;
  animation: smalltobig 6s ease-in forwards;
  opacity: 0.6;
  z-index: -1;
}

.plar-tour{
  background-color: #efffff;
 
  position: relative;
  z-index: 1;
}

.plar-tour::before{
  content: "";
  background-color: #036387;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  z-index: -1;
}

.plar-tour::after{
  content: "";
   background-image: url(../img/patern.png);
   background-position: center;
   background-size: contain;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  z-index: -1;
}

.dest-box{
  border-radius: 5px;
  overflow: hidden;
}

.des-text {
  padding: 15px 15px;
  background-color: #efffff;
}

.des-text h4, .des-text h5{
  font-family: "Google Sans Flex", sans-serif;
  text-align: center;
}

.des-text h4{
  font-size: 16px;
  font-weight: 700;

}

.des-text h5{
  font-size: 16px;
  font-weight: 600;
  color: #036387;
  
}

.des-text h4 span{
  color: #ff3600;
  font-size: 20px!important;
}

.dest-img{
  position: relative;
  z-index: 11;
}

.dest-img::after{
 content: "";
 background: #000000;
background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
 height: 150px;
 left: 0;
 right: 0;
 bottom: 0;
 position: absolute;
 z-index: 0;
}

.international-dest-box{
  position: relative;
}

.international-dest-box::after{
 content: "";
 background: #000000;
background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
 height: 150px;
 left: 0;
 right: 0;
 bottom: 0;
 position: absolute;
 z-index: 0;
}
.dest-head{
  position: absolute;
  bottom: 5px;
  left: 10px;
  right: 10px;
  z-index: 1;
}

.dest-head h4{
 color: #fcb316;
 font-weight: 700;
  text-align: center;
  margin-bottom: 0px;

}
.dest-head h3{
  color: #fff;
 
  text-align: center;
  font-size: 30px;
  font-weight: 700;

}

.owl-nav .owl-prev{
  position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fe3600!important;
    border-radius: 50%!important;
    z-index: 11;
}

.owl-nav .owl-prev span{
  color: #fff;
  font-size: 40px;
  line-height: 0.7;
}

.owl-nav .owl-next{
  position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fe3600!important;
    border-radius: 50%!important;
    z-index: 11;
}

.owl-nav .owl-next span{
  color: #fff;
  font-size: 40px;
  line-height: 0.7;
}

.plar-heading h1{
  color: #036387;
  font-weight: 700;
  font-size: 45px;
  text-align: center;
}

.plar-heading h2{
  color: #036387;
  font-weight: 700;
  font-size: 45px;
  text-align: center;
}


.plar-heading p{
  font-size: 18px;
  text-align: center;
}

.color-yelow{
  color: #ff3600;
  font-family: "Playfair Display", serif;
}

.plar-tour{
  padding-top: 80px;
}

.international-dest{
  background-image: url(../img/patern-2.png);
  background-size: cover;
  background-position: center;
}
.inter-deat-text{
 position: absolute;
  bottom: 20px;
  left: 10px;
  z-index: 11;
}
.inter-deat-text h4{
  font-size: 25px;
  color: #fff;
  font-weight: 700;

}

.inter-deat-text h4 span{
  color: #fcb316;
   font-family: "Playfair Display", serif;
} 

.inter-deat-text p{
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.inter-deat-text p span{
  color: #fcb316;
}

.international-dest-box{
  overflow: hidden;
}

.international-dest-box img{
  transition: all ease 0.4s;
}

.international-dest-box:hover img{

  transform: scale(1.1);

}
.dest-img{
  overflow: hidden;
}

.dest-img img{
  transition: all ease 0.4s;
}

.dest-img:hover img{
    transform: scale(1.1);
}

.best-packages{
  /* background-image: url(../img/Cloud-bg.png); */
  background-position: bottom;
  padding: 30px 0px 50px;
  background-repeat: no-repeat;
  position: relative;


}

.package-img{
  position: relative;
  overflow: hidden;
}

.package-img img{
  object-fit: cover; 
}

.best-tour{
  background-color: #fcb316;
    position: absolute;
    top: 20px;
    padding: 0px 20px;
    transform: rotate(-45deg);
    left: -23px;
}
.best-tour p{
  margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;

}
.package-box-home{
  background-color: #f5f5f5;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.tour-clock p span{
  color: #ff3600;
}

.tour-clock p{
  color: #636363;
  font-weight: 500;
}

.top-tour-name h4{
 color: #036387;
 font-weight: 700;
 font-size: 22px;
}

.inclusion-top p {
  display: flex;
  gap: 10px;
  font-weight: 500;
  font-size: 18px;
  color: #636363;
  margin-bottom: 10px;
}

.dest p {
  color: #636363;
  font-weight: 500;
  margin-bottom: 10px;
}


.top-price h4 {
    font-family: 'Poppins', 'Montserrat', 'Arial', sans-serif;
    color: #036387;
    margin-bottom: 0px;
    font-weight: 700;
}

.top-price p{
  margin-bottom: 0px;
}

/* .top-price-flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
} */

.top-price{
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.btn-book-tour .btn-red{
  background-color: #003b4a !important;
  padding: 5px 10px !important;
  color: #fff !important;
  position: inherit !important;
}
.btns{
  display: flex;
  margin-top: 15px;
  gap: 10px;
}


.btn-more{
  background-color: #fcb316;
  padding: 5px 20px;
  font-weight: 500;
  margin-right: 10px;
}

.btn-more:hover{
  border: 1px solid #036387;
}

.package-img:hover img{
  transform: scale(1.1);
}

.package-img img{
  transition: all 0.4s;
}

.top-pack-text{
 padding: 10px 10px 10px 0px !important;
}



/* SECTION BACKGROUND */
.travel-services-section {
  background: linear-gradient(135deg, #0b6f6f, #0a5f61);
  color: #fff;
 
}

/* LEFT IMAGE */
.traveller-image {
  max-height: 568px;
  z-index: 1;
    position: absolute;
    bottom: -50px;
}

/* HEADER */
.services-title {
  font-size: 40px;
  font-weight: 700;
}

.services-title span {
  color: #ffb703;
}

.services-desc {
 
  font-size: 17px;
  opacity: 0.9;
  margin-top: 10px;
}

/* SERVICE CARD */
.service-card {
  background: #ffffff;
  color: #222;
  padding: 30px 20px;
  
  text-align: center;
  position: relative;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-radius: 70px 0px;
}

.service-card h5 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
  font-family: 'Google Sans Flex';
}

.service-card p {
  font-size: 13px;
  color: #555;
  margin-top: 10px;
}

/* ICON */
.service-icon {
  width: 70px;
  height: 70px;
  background: #f2f6f8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.service-icon img {
  max-width: 58px;
}

/* NUMBER */
.service-number {
  position: absolute;
  bottom: -18px;
  left: 20px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;

  
}

/* COLOR VARIANTS */
.card-blue .service-number {
  background: #2f80ed;
  
}

.card-orange .service-number {
  background: #FFAA0D;
}

.card-green .service-number {
  background: #85d200;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .services-title {
    font-size: 28px;
  }
}

.icon1{
  filter: brightness(0) saturate(100%) invert(53%) sepia(72%) saturate(1711%) hue-rotate(188deg) brightness(100%) contrast(94%);
}

.icon2{
  filter: brightness(0) saturate(100%) invert(64%) sepia(100%) saturate(1157%) hue-rotate(350deg) brightness(103%) contrast(103%);
}

.icon3{
  filter: brightness(0) saturate(100%) invert(67%) sepia(36%) saturate(2222%) hue-rotate(38deg) brightness(102%) contrast(101%);
}





.travel-services-section{
  position: relative;
}

.building-img{
  position: absolute;
  bottom: 0;
  left: 0;
  top: 20px;
}

.img-bg-shade{


    position: absolute;
    width: 400px;
    height: 400px;
    left: 50px;
    top: 200px;
    filter: blur(100px);
    z-index: 0;
    background: rgb(29, 183, 190);
    animation: 2s linear 0s infinite alternate-reverse both running scale-up-center;


    }


    @keyframes scale-up-center {
  0% {
    transform: scale(0.5);
  }
 
  100% {
    transform: scale(1);
  }
}

.travel-services-section{
  padding: 50px 0px 100px;
}

.bottom-area{
  background-color: #efffff;
}















.testimonials-section {
            padding: 80px 0 50px;
            background: 
                        url('../img/tour-bg-1.jpg ');
            background-size: cover;
    background-position: bottom;
            /* background-attachment: fixed; */
            position: relative;
            
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        .testimonials-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(13, 110, 253, 0.05) 0%, rgba(32, 201, 151, 0.05) 100%);
            z-index: 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }
        
        .section-title h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
        }
        
        .section-title p {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .section-title .highlight {
            color: var(--secondary);
        }
        
        /* Owl Carousel Custom Styles */
        .testimonial-carousel {
            position: relative;
            z-index: 1;
        }
        
        .owl-carousel .owl-stage-outer {
            padding: 20px 0;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 60px 35px 40px;
            margin: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            border: 1px solid rgba(0,0,0,0.05);
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
        }
        
        .quote-icon {
            font-size: 2.5rem;
            color: var(--secondary);
            opacity: 0.3;
            margin-bottom: 20px;
            position: absolute;
            top: 20px;
            right: 25px;
        }
        
        .testimonial-text {
            font-size: 1.05rem;
            line-height: 1.7;
            color: #555;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }
        
        .client-info {
            display: flex;
            align-items: center;
        }
        
        .client-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
            border: 4px solid rgba(32, 201, 151, 0.2);
        }
        
        .client-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .client-details h4 {
            font-weight: 600;
            font-size: 1.2rem;
            color: var(--dark);
            margin-bottom: 5px;
        }
        
        .client-details p {
            color: var(--secondary);
            font-size: 0.95rem;
            margin-bottom: 0;
        }
        
        .rating {
            margin-top: 5px;
            color: #ffc107;
        }
        
        .rating i {
            margin-right: 2px;
        }
        
        .destination-tag {
            display: inline-block;
            background-color: rgba(13, 110, 253, 0.1);
            color: var(--primary);
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-top: 10px;
        }
        
        /* Owl Navigation */
        .owl-nav {
            display: flex;
            justify-content: center;
            margin-top: 40px;
        }
        
        .owl-nav button {
            background-color: white !important;
            width: 50px;
            height: 50px;
            border-radius: 50% !important;
            margin: 0 10px !important;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .owl-nav button:hover {
            background-color: #0a6062 !important;
            color: white !important;
        }
        
        .owl-nav button span {
            font-size: 1.8rem;
            line-height: 1;
        }
        
        .owl-dots {
            margin-top: 30px;
        }
        
        .owl-dots .owl-dot span {
            width: 12px;
            height: 12px;
            margin: 5px;
            background: #ddd !important;
            transition: all 0.3s ease;
        }
        
        .owl-dots .owl-dot.active span {
            background: var(--secondary) !important;
            width: 30px;
            border-radius: 10px;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .testimonial-card {
                padding: 60px 20px 20px;
                margin: 0px;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .testimonials-section {
                padding: 60px 20px;
            }
        }
        
        /* Travel Icons Decoration */
        .travel-icons {
            position: absolute;
            top: 20px;
            right: 20px;
            display: flex;
            gap: 15px;
            z-index: 0;
            opacity: 0.1;
        }
        
        .travel-icons i {
            font-size: 2rem;
            color: var(--primary);
        }
        
        .footer-note {
            text-align: center;
            margin-top: 60px;
            color: #666;
            font-size: 0.9rem;
        }
        
        .footer-note a {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 600;
        }
        
        .footer-note a:hover {
            text-decoration: underline;
        }



        /* Wrapper */
.travel-subscribe-wrapper {
  width: 100%;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* Top Illustration Bar */
.travel-illustration-bar {
  background: #fff7e8;
  height: 200px;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #0c5f63;
}

/* Car */
.travel-car-box {
  position: absolute;
  left: -200px;
  bottom: 10px;
}

.travel-moving-car {
  width: 180px;
  animation: travelCarMove 12s linear infinite;
}

/* Island */
.travel-island-box {
  position: absolute;
  right: 30px;
  bottom: 0;
}

.travel-island-img {
  width: 140px;
}

/* Car Animation */
@keyframes travelCarMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(120vw);
  }
}

/* Subscribe Section */
.travel-subscribe-content {
  background: #ffb300;
  padding: 10px 0;
}

/* Text */
.travel-subscribe-title {
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  text-shadow: 1px 2px 2px #000;
}

.travel-subscribe-text {
  font-size: 18px;
  color: #0c5f63;
}

/* Form */
.travel-subscribe-form {
  position: relative;
  max-width: 420px;
  margin-left: auto;
}

.travel-subscribe-form input {
  width: 100%;
  height: 60px;
  border-radius: 50px;
  border: none;
  padding: 0 70px 0 25px;
  font-size: 16px;
  outline: none;
}

.travel-subscribe-form button {
  position: absolute;
  right: 6px;
  top: 6px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0c5f63;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .travel-subscribe-title {
    font-size: 40px;
  }

  .travel-subscribe-form {
    margin-top: 20px;
    margin-left: 0;
  }
}


/* parent must be relative */
.travel-illustration-bar {
  position: relative;
  overflow: hidden;
  background-image: url(../img/car-bg.jpg);
  background-position: bottom;
  background-size: cover;
}

/* CAR */
.trv-animated-car {
  position: absolute;
  left: -270px;
  bottom: 0;
  width: 270px;
  animation: trvCarMove 12s linear infinite;
}

/* CAR BODY */
.trv-animated-car .car-main {
  width: 100%;
  display: block;
}

/* TYRES COMMON */
.trv-animated-car .tyre-1,
.trv-animated-car .tyre-2 {
  position: absolute;
  bottom: 0px;          /* 🔥 image ke hisaab se perfect */
}

/* FRONT TYRE (right) */
.trv-animated-car .tyre-1 {
  right: 27px;
}

/* BACK TYRE (left) */
.trv-animated-car .tyre-2 {
  left: 37px;
}

/* TYRE IMAGE */
.trv-animated-car .spin-tyres {
  width: 40px;
  animation: trvTyreSpin 0.6s linear infinite;
  transform-origin: 50% 50%;   /* 🔥 proper center rotation */
}

/* ROTATION */
@keyframes trvTyreSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* CAR MOVE */
@keyframes trvCarMove {
  from { transform: translateX(0); }
  to   { transform: translateX(120vw); }
}



.trv-footer {
  position: relative;
  background: linear-gradient( rgba(6, 96, 97, 0.95),rgb(4 100 135));
  padding: 80px 0 10px;
  color: #cfe7e7;
}

.trv-footer-logo {
  width: 80%;
  margin-bottom: 20px;
  padding: 10px;
    background: #fff;
    border-radius: 50px;
}

.trv-footer-about p {
  font-size: 16px;
  line-height: 1.7;
}

.trv-footer-social {
  margin-top: 20px;
}

.trv-footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
 
  margin-right: 10px;
  transition: 0.3s;
}



/* Titles */
.trv-footer-title {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 20px;
}

/* Links */
.trv-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trv-footer-links li {
  margin-bottom: 10px;
}

.trv-footer-links a {
  color: #cfe7e7;
  text-decoration: none;
  transition: 0.3s;
}

.trv-footer-links a:hover {
  color: #ffb300;
}

/* Contact */
.trv-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trv-footer-contact li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #ffffff;
}

.trv-footer-contact span {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  color: #ffb300;
}

.trv-footer-contact a {
  color: #ffffff;
  text-decoration: none;
}

/* Scroll top */
.trv-scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: #0779a1;
  text-decoration: none;
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
}


.trv-footer .container{
  position: relative;
  padding-bottom: 80px;
  z-index: 11;
}

.footer-img{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}


.copyright p a{
  color: #fcb316;
  text-decoration: none;
}

.promotional-image{
  border-radius: 10px;
  overflow: hidden;
}

.listing-banner{
  
  background-image: url(../img/banner-list.jpg);
  background-size: cover;
  background-position: bottom;
  position: relative;
}

.listing-banner .container{
  display: flex;
  justify-content: center;
}

.listing-breadcome ul{
  list-style: none;
  padding-left: 0px;
  padding: 5px 10px;
  
}

.listing-content h1{
  color: #ffffff;
  font-weight: 700;
}

.about-banner {
   background-image: url(../img/banner-list.jpg);
  background-size: cover;
  background-position: bottom;
  position: relative;

}

.about-banner .container{
  display: flex;
  justify-content: center;
}

.about-banner ul{
  list-style: none;
  padding-left: 0px;
  padding: 5px 10px;
  
}

.about-banner h1{
  color: #ffffff;
  font-size: 70px;
  font-weight: 800;
}

.about-banner .black-bg{
  background-color: rgba(0, 0, 0, 0.5);
  padding: 100px 0px 150px;
}

.item a{
  color: #000;
  text-decoration: none;
}


.black-bg{
  background-color: rgba(0, 0, 0, 0.5);
  padding: 100px 0px 100px;
}

.breadcrumb-item a{
  color: #fff!important;
  text-decoration: none;
  font-size: 18px;
}

.breadcrumb-item.active{
  color: #fcb316!important;
  font-size: 18px;
}

.breadcrumb-item+.breadcrumb-item::before{
  color: #fff;
}



.tour-form-wrap{
  background:#ecfbfa;
  padding:30px;
}

.tour-form{
  background:#fff;
  border-radius:60px;
  padding:25px 30px;
  display:flex;
  align-items:flex-end;
  gap:25px;
  flex-wrap:wrap;
  box-shadow:0 0 0 6px #dff3f2;
}

.form-group{
  display:flex;
  flex-direction:column;
  min-width:18%;

}

.form-group.wide{
  min-width:260px;
}

.form-group label{
  font-size:14px;
  color:#666;
  margin-bottom:6px;
}

.form-group input,
.form-group select{
  border:none;
  border-bottom:2px solid #ddd;
  padding:6px 0;
  font-size:15px;
  outline:none;
  background:transparent;
}

.form-group input:focus,
.form-group select:focus{
  border-color:#0aa6a6;
}

.btn-group{
  margin-left:auto;
}

.btn-group button{
  border-radius:5%;
  padding: 10px;
  border:none;
  background:#0779a1;
  color:#fff;
  font-size:18px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.3s;
}

.btn-group button:hover{
  background:#fcb316;
  color: #000;
}



.tour-details-wrapper{
  font-family: 'Segoe UI', sans-serif;
}

/* LEFT CARD */
.tour-main-card{
  background:#fff;
  border-radius:14px;
  padding:20px;
}

.tour-rating i {
    color: #ff3600;
    font-size: 14px;
}

.tour-title{
  font-weight:700;
  margin-top:6px;
  font-size: 30px;
}

.tour-location{
  color:#6c757d;
  font-size:14px;
}

.tour-image-box img{
  border-radius:12px;
  margin-top:15px;
}

/* TABS */
.tour-tabs .nav-link{
  border:none;
  color:#555;
  background:#f1f6f6;
  margin-right:8px;
  border-radius:8px;
  font-size:14px;
}

.tour-tabs .nav-link.active{
  background:#036387;
  color:#fff;
}

.tour-tab-content{
  font-size:14px;
  color:#555;
}

/* RIGHT CARD */
.tour-price-card{
  background:#fff;
  border-radius:14px;
  position:sticky;
  top:20px;
  overflow: hidden;
}

.form-heading{
  padding: 10px;
  background-color: #036387;
  color: #fff;
  text-align: center;
}

.price-label{
  color:#6c757d;
}

.price-value{
  color:#000;
  font-weight:700;
}

.price-value span{
  font-size:14px;
  color:#777;
}

.tour-enquiry-btn{
  background:#8ddf2f;
  color:#000;
  font-weight:600;
  width:100%;
  border-radius:30px;
  padding:10px;
}

.tour-info-list{
  list-style:none;
  padding:0;
  font-size:14px;
}

.tour-info-list li{
  margin-bottom:8px;
}

.tour-info-list i{
  color:#036387;
  margin-right:6px;
}

/* INCLUDES */
.include-box{
  background:#f1f6f6;
  padding:12px;
  border-radius:10px;
  font-size:13px;
}

.include-box i{
  display:block;
  font-size:22px;
  color:#036387;
  margin-bottom:5px;
}


.tour-itinerary-section{
  background:#fff;
  font-family:'Segoe UI', sans-serif;
}

.itinerary-main-title{
  font-weight:700;
  color:#036387;
}

/* CARD */
.itinerary-card{
  background:#f5f5f5;
  border-radius:18px;
  padding:25px 15px;
}

/* LEFT DAY */
.itinerary-day-box{
  text-align:center;
  padding-top:10px;
}

.day-circle{
  width:52px;
  height:52px;
  background:#036387;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:18px;
  margin:auto;
  border:4px solid #fbb034;
}

.day-label{
  display:block;
  margin-top:6px;
  font-size:12px;
  font-weight:600;
  color:#036387;
}

/* CONTENT */
.itinerary-content{
  padding-left:15px;
}

.itinerary-title{
  font-weight:700;
  color:#036387;
  margin-bottom:15px;
}

/* LIST */
.itinerary-list{
  list-style:none;
  padding:0;
  margin:0;
}

.itinerary-list li{
  font-size:14px;
  color:#333;
  margin-bottom:10px;
  display:flex;
  align-items:flex-start;
}

.itinerary-list i{
  color:#fbb034;
  margin-right:10px;
  font-size:16px;
  margin-top:2px;
}

/* MOBILE */
@media(max-width:767px){
  .itinerary-day-box{
    margin-bottom:15px;
  }
}


.tour-tabs-sticky-wrapper{
  position: sticky;
  top: 0px;           /* navbar ke niche kitna gap chahiye */
  z-index: 999;
  background: #fff;   /* content overlap na ho */
  padding: 10px 0;
}


.tour-inclusion-wrapper{
  background:#f5f5f5;
  padding:30px;
  border-radius:18px;
  position:relative;
  font-family:'Segoe UI', sans-serif;
}

.tour-inclusion-title{
  font-weight:700;
  color:#036387;
  margin-bottom:18px;
}

/* Box */
.tour-inclusion-box{
  background:#f5f5f5;
  border-radius:14px;
  border:1px solid #25b01f;
  padding:25px 20px;
  position:relative;
}

/* List */
.tour-inclusion-list{
  list-style:none;
  padding:0;
  margin:0;
}

.tour-inclusion-list li{
  display:flex;
  align-items:center;
  font-size:15px;
  color:#000;
  margin-bottom:16px;
}

.tour-inclusion-list i{
  color:#25b01f;
  font-size:18px;
  margin-right:12px;
}



.details-price p{
  color: #2b2b2b;
  font-size: 17px;
}

.details-price h3{
  color: #000;
  font-size: 30px;
  font-family: 'Roboto';
  font-weight: 700;
}

.btn-details-book a{
  font-size: 17px;
  padding: 8px 15px;
  font-weight: 500;
}

.btn-details-book .btn-red{
  color: #fff;
  background-color: #c62b2b;
  border-radius: 0px;
}

.btn-details-book .btn-dark{

  border-radius: 0px;
}

.side-priceing{
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: end;
}


.tour-itinerary-section,
.tour-inclusion-wrapper {
  scroll-margin-top: 90px; /* sticky tabs height + gap */
}




.trv-enquiry-wrapper{
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

/* Heading */
.trv-enquiry-heading h2{
  font-weight: 700;
  color: #194279;
}

.trv-enquiry-heading p{
  color: #6c757d;
  font-size: 15px;
}

/* Card */
.trv-enquiry-card{
  background: #ffc107;
  padding: 30px;
  border-radius: 0px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Inputs */
.trv-input,
.trv-textarea{
  border-radius: 10px;
  padding: 8px 14px;
  border: 1px solid #dee2e6;
  transition: all 0.3s ease;
}



.trv-input:focus,
.trv-textarea:focus{
  border-color: #ff6f00;
  box-shadow: 0 0 0 0.15rem rgba(255,111,0,0.25);
}

/* Button */
.trv-submit-btn{
  background: #036387;
  color: #fff;
  padding: 12px 40px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.trv-submit-btn:hover{
  background: linear-gradient(135deg, #ff9100, #ff6f00);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,111,0,0.4);
}


.trv-faq-wrapper{
  background: #f9fafc;
  
}

/* Heading */
.trv-faq-heading h2{
  font-weight: 700;
  color: #036387;
  font-size: 25px;
  margin-top: 20px;
}



/* Accordion Item */
.trv-faq-item{
  border: none;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Button */
.trv-faq-item .accordion-button{
  font-weight: 600;
  color: #000;
  background: #ffffff;
  border-radius: 12px;
}

.trv-faq-item .accordion-button:not(.collapsed){
  background: #036387;
  color: #ffffff;
  padding: 10px 15px;
}

.trv-faq-item .accordion-button{
  padding: 10px 15px;
}

.trv-faq-item .accordion-button:focus{
  box-shadow: none;
}

/* Body */
.trv-faq-item .accordion-body{
  background: #ffffff;
  color: #555;
  line-height: 1.7;
}

/* Dropdown base */
.trv-nav-dropdown{
  position: relative;
}

/* ============================= */
/* Dropdown Base */
.trv-nav-dropdown {
  position: relative;
}

/* Dropdown Menu Base */
.trv-dropdown-menu {
  border: none;
  padding: 12px;
  border-radius: 14px;
  min-width: 260px;
  background: linear-gradient(135deg, #ffffff, #f4f8ff);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* ============================= */
/* Desktop Only Hover Animation */
@media (min-width: 992px) {
  /* Hide dropdown initially */
  .trv-nav-dropdown .trv-dropdown-menu {
    opacity: 0;
    transform: translateY(15px);
    visibility: hidden;
    transition: all 0.35s ease;
  }

  /* Show dropdown on hover */
  .trv-nav-dropdown.show .trv-dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}

/* ============================= */
/* Dropdown Items */
.trv-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 600;
  color: #194279;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

/* Dropdown Icons */
.trv-dropdown-item i {
  color: #ff6f00;
  font-size: 16px;
  transition: all 0.3s ease;
}

/* Hover Effect on Items */
.trv-dropdown-item:hover {
  background: linear-gradient(135deg, #ff6f00, #ff9100);
  color: #fff;
  transform: translateX(6px);
}

.trv-dropdown-item:hover i {
  color: #fff;
}

/* ============================= */
/* Optional: Smooth transition for links on mobile */
@media (max-width: 991px) {
  .trv-dropdown-item {
    transition: background 0.25s ease, color 0.25s ease;
  }
}



.international-dest{
 position: relative;
 padding-top: 80px!important;
}

.animated-baloon-images img{
    width: 120px;
    position: absolute;
    top: 10px;
    left: 20px;
    animation: updownmove 4s ease-in-out infinite;
}

@keyframes updownmove {
  0% {
    transform: translatey(0);
  }
  50% {
    transform: translatey(20px);
  }
  100% {
    transform: translatey(0);
  }
}

.animated-baloon-images-2 img{
    width: 180px;
    position: absolute;
    top: 10px;
    right: 20px;
    animation: updownmove 4s ease-in-out infinite;
    opacity: 0.5;
    z-index: -1;
}



.trv-offer-banner{
  background: #ffb000 url("../img/add-hr-cloud.png") bottom center no-repeat;
  background-size: contain;
  border-radius: 0px;
  padding: 20px 35px;
  position: relative;
  overflow: hidden;

}

/* Content wrapper */
.trv-offer-content{
  display: flex;
  align-items: center;
  gap: 25px;
}

/* 48% OFF */
.trv-offer-badge{
  display: flex;
  align-items: center;
  gap: 8px;
}

.offer-number{
  font-size: 90px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.offer-text{
  font-size: 20px;
  font-weight: 700;
  color: #003b4a;
}

/* Text */
.trv-offer-text small{
  display: block;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
  font-size: 25px;
}

.trv-offer-text h3{
  font-family: "Brush Script MT", cursive;
  font-size: 36px;
  color: #003b4a;
  margin: 0;
}

/* Button */
.trv-offer-btn{
  background: #ffffff;
  color: #003b4a;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.trv-offer-btn:hover{
  background: #003b4a;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Responsive */
@media(max-width: 768px){
  .trv-offer-content{
    flex-direction: column;
    align-items: flex-start;
  }

  .offer-number{
    font-size: 52px;
  }

  .trv-offer-text h3{
    font-size: 28px;
  }
}


/* ================================
   OVERLAY
================================ */
.li-enquiry-panel{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 9999;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.li-enquiry-panel.active{
  opacity: 1;
  pointer-events: auto;
}

/* ================================
   CARD – DESKTOP
================================ */
.li-enquiry-card{
  position: absolute;
  top: 50%;
  right: 0;

  width: 360px;
  max-height: 90vh;
  background: #ffc107;
  border-radius: 20px 0 0 20px;
  padding: 20px;
  overflow-y: auto;

  transform: translateX(100%) translateY(-50%);
  transition: transform 0.45s ease;
}

.li-enquiry-panel.active .li-enquiry-card{
  transform: translateX(0) translateY(-50%);
}

/* ================================
   HEADER
================================ */
.li-enquiry-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  margin-bottom: 15px;
}

.li-close{
  font-size: 24px;
  cursor: pointer;
}

/* ================================
   FORM
================================ */
.li-enquiry-form .form-control,
.li-enquiry-form .form-select{
  border-radius: 10px;
  margin-bottom: 12px;
}

.li-enquiry-form textarea{
  resize: none;
}

.li-submit-btn{
  background: #212529;
  color: #fff;
  border-radius: 10px;
  padding: 12px;
  width: 100%;
  border: none;
  font-weight: 600;
}

/* ================================
   MOBILE – BOTTOM SHEET
================================ */
@media (max-width:768px){

  .li-enquiry-card{
    top: auto;
    bottom: 0;
    left: 50%;
    right: auto;

    width: 100%;
    max-width: 420px;
    border-radius: 18px 18px 0 0;

    transform: translate(-50%, 100%);
  }

  .li-enquiry-panel.active .li-enquiry-card{
    transform: translate(-50%, 0);
  }
}


.li-enquiry-btn{
  position: fixed;
  right: -55px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9998;
  border-radius: 8px 0 0 8px;
  transform: rotate(-90deg);
  font-weight: 500;

}

/* Mobile – bottom small button */
@media(max-width:768px){
  .li-enquiry-btn {
        top: auto;
        bottom: 15px;
        left: 15px;
        transform: none;
        border-radius: 30px;
        /* bottom: 0; */
        right: auto;
    }
  .animation-cloud img{
    display: none;
  }
  .animated-baloon-images{
    display: none;
  }
  .animated-baloon-images-2{
    display: none;
  }
  .animation-plane{
   display: none;
  }
  .animation-cloud-2 img{
    top: 10px;
    width: 300px;
  }
}
body.enquiry-open{
  overflow: hidden;
}

.bottom-grid-img {
  position: absolute;
  bottom: 0;
}



.abt-why-section{
  background:#fff6ef;
}

.abt-img-wrap{
  min-height:520px;
}

.abt-img-main{
  position:relative;
  border-radius:18px;
  overflow:hidden;
}

.abt-img-main img{
  width:100%;
  height:520px;
  object-fit:cover;
}

.abt-img-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.6), transparent);
  color:#fff;
  padding:30px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}

.abt-img-overlay h5{
  font-size:14px;
  letter-spacing:2px;
}

.abt-img-overlay h2{
  font-weight:700;
}

.abt-img-float{
  position:absolute;
  bottom:-40px;
  right:-40px;
  width:260px;
  background:#f7931e;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,.25);
}

.abt-img-float img{
  width:100%;
}

.abt-img-text{
  position:absolute;
  bottom:10px;
  left:10px;
  font-size:28px;
  font-weight:700;
  color:#fff;
  opacity:.8;
}

.abt-subtitle{
  color:#f7931e;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:1px;
}

.abt-title{
  font-size:38px;
  font-weight:800;
  margin:10px 0 15px;
}

.abt-desc{
  color:#000000;
  margin-bottom:25px;
  text-align: justify;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.abt-feature-box{
  display:flex;
  gap:15px;
  padding:18px;
  background:#fff;
  border-radius:14px;
  margin-bottom:15px;
  box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.abt-icon{
  width:50px;
  height:50px;
  background:#f7931e;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
}

.abt-btn{
  background:#c76317;
  color:#fff;
  padding:12px 28px;
  border-radius:30px;
}

.abt-btn:hover{
  background:#a85012;
  color:#fff;
}


.abt-content{
  padding-left: 50px;
}

.service-box {
  padding: 15px;
  border: 1px solid #fff;
  border-radius: 10px;
}

.service-box h5{
  color: #fbb034;
  font-size: 35px!important;
}
.service-box p{
  margin-bottom: 0px;
}
.service-img img{
  display: block;
  margin: auto;
}


.best-agency-section{
  background:#ffffff;
}

.agency-title{
  font-size:42px;
  font-weight:800;
  margin-bottom:15px;
}

.agency-subtitle{
  font-size:20px;
  font-weight:600;
  margin-bottom:20px;
}

.agency-content p{
  color:#000000;
  line-height:1.8;
  margin-bottom:18px;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.pay-btn {
  padding: 5px 25px;
  border: none;
  background-color: #5ce308;
  color: #000;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.pay-btn:hover {
  background-color: #3fb900; /* hover color */
}


/* Responsive */
@media(max-width:991px){
  .agency-image-wrap{
    min-height:360px;
  }

  .agency-img{
    position:relative;
    width:100%;
    height:260px;
    margin-bottom:20px;
  }

  
}



.core-values-section{
  background:#fff6ef;
}

.core-title{
  font-size:38px;
  font-weight:800;
  margin-bottom:10px;
}

.core-subtitle{
  color:#666;
  max-width:520px;
  margin:0 auto;
  font-size:16px;
}

.core-card{
  border-radius:22px;
  padding:35px 25px;
  text-align:left;
  height:100%;
  transition:.3s ease;
}

.core-card:hover{
  transform:translateY(-6px);
}

.core-icon{
  font-size:30px;
  margin-bottom:20px;
  color:#000;
}

.core-card h5{
  font-weight:700;
  margin-bottom:10px;
}

.core-card p{
  font-size:15px;
  color:#444;
  margin:0;
}

/* Card Colors */
.bg-green{
  background:#e9f7b5;
}

.bg-grey{
  background:#f1f1f1;
}

.bg-purple{
  background:#e6e7ff;
}

.bg-mint{
  background:#c9f1d6;
}


.travel-gallery-section{
  background:#ffffff;
}

.gallery-title{
  font-size:38px;
  font-weight:800;
  margin-bottom:10px;
}

.gallery-subtitle{
  color:#666;
  max-width:520px;
  margin:0 auto;
}

.gallery-item{
  position:relative;
  overflow:hidden;
  border-radius:20px;
  box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.gallery-item img{
  width:100%;
  height:260px;
  object-fit:cover;
  transition:.4s ease;
}

.gallery-item:hover img{
  transform:scale(1.08);
}

/* Mobile */
@media(max-width:576px){
  .gallery-item img{
    height:220px;
  }
}

.lb-data .lb-close{
  background: url(../img/close.png)!important;
}



.contact-box{
  background:#ffffff;
 
 
}

/* LEFT */
.contact-form-left{

  padding:20px 20px;
}

.contact-form-left h3{
  color:#0779a1;
  font-weight:800;
}

.contact-form-left p{
  color:#666;
  margin-bottom:25px;
}

.contact-form-left input,
.contact-form-left textarea, .contact-form-left select{
  width:100%;
  border:1px solid #ddd;
  border-radius:30px;
  padding:14px 20px;
  margin-bottom:15px;
  outline:none;
}

.contact-form-left textarea{
  border-radius:20px;
}

.contact-form-left button{
  background:#ff3600;
  color:#fff;
  border:none;
  padding:12px 32px;
  border-radius:30px;
  font-weight:600;
}

/* RIGHT */
.contact-info-right{
  padding:20px 20px;
  position:relative;
}

.contact-info-right h3{
  color:#0b6b6b;
  font-weight:800;
}

.contact-info-right p{
  color:#666;
}

.info-item{
  display:flex;
  align-items:center;
  gap:15px;
  margin-bottom:18px;
}

.info-item .icon{
  width:70px;
  height:70px;
  border-radius:5%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:30px;
}

.icon.phone{background:#0779a1;}
.icon.mail{background:#0779a1;}
.icon.home{background:#0779a1;}

.talk-text{
  margin-top:25px;
  font-weight:700;
}

.talk-text span{
  color:#ff8a00;
  font-style:italic;
}

/* IMAGE */
.contact-img{
  position:absolute;
  right:10px;
  bottom: -70px;
  max-width:160px;
}

@media screen and (max-width:1200px) {
  .contact-img{
  display: none;
}
}

/* MAP */
.contact-map iframe{
  width:100%;
  height:420px;
  border:0;
}

/* Responsive */
@media(max-width:991px){
  .contact-img{
    position:static;
    margin-top:25px;
  }
  .contact-info-right{
    padding: 45px 25px;
  }
  .contact-form-left{
    padding: 45px 25px;
  }
  .contact-form-left h3 {
    color: #0779a1;
    font-weight: 800;
    font-size: 28px;
}
.info-item h6{
  font-size: 14px;
}
.about-banner h1{
  font-size: 40px;
}
.abt-img-float{
  display: none;
}
.abt-img-main img{
  height: auto!important;
}
.abt-img-wrap{
  min-height: auto!important;
}
.abt-content{
  padding-left: 0px;
}
.abt-title{
  font-size: 28px;
}
.abt-desc{
  font-size: 15px;
    text-align: justify;
    margin-bottom: 10px;
}
.agency-subtitle{
      font-size: 17px;
}
.agency-content p{
  line-height: normal;
  font-size: 14px;
  text-align: justify;
}
.info-item h6 {
    font-family: unset;
    color: #1e1e1e;
    font-weight: 500;
    display: flex;
    gap: 10px!important;
    flex-wrap: wrap;
    justify-content: space-between;
}
}

.info-item h6{
  font-family: Roboto;
    color: #1e1e1e;
    font-weight: 500;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 5px;
    
}

.info-item h6 a{
  color: #1e1e1e;
  text-decoration: none;
}

.payment-section {
  padding: 60px 0;
  background: #f7f9fc;
  font-family: 'Poppins', sans-serif;
}

.payment-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.bank-card,
.qr-card {
  background: linear-gradient(135deg, #00acc1, #007c91);
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.bank-card h3,
.qr-card h3 {
  margin-bottom: 20px;
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
}

.bank-card table {
  width: 100%;
  border-collapse: collapse;
}

.bank-card table td {
  padding: 10px 8px;
  border-bottom: 1px dashed #ddd;
  font-size: 15px;
  color: #ffffff;
}

.bank-card table td:first-child {
  font-weight: 600;
  color: #ffffff;
  width: 40%;
}

.qr-images {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.qr-images img {
  max-width: 235px;
  border-radius: 12px;
  border: 1px solid #eee;
  padding: 6px;
  background: #fff;
}

.qr-note {
  margin-top: 15px;
  font-size: 14px;
  color: #555;
  text-align: center;
}

/* Responsive */
@media(max-width: 768px) {
  .payment-wrapper {
    grid-template-columns: 1fr;
  }
  .copyright-footer p{
   order: 2;
   
  }
  .trv-footer{
    padding-bottom: 50px;
  }
}

.copyright-footer{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  
}

.razorpay{
  padding: 5px;
  background: white;
  border-radius: 5px;
  width: 120px;
}

/* Section */
.pih-branch-section {
  background: #f7f9fc;
}

/* Title */
.pih-branch-title {
  font-size: 36px;
  font-weight: 700;
  color: #161616;
}
.pih-branch-subtitle {
  color: #666;
  max-width: 600px;
  margin: auto;
}

/* Card base */
.pih-branch-card {
  position: relative;
  height: 100%;
  border-radius: 18px;
  padding: 20px;
  color: #fff;
  overflow: hidden;
  transition: all 0.4s ease;
}
.pih-branch-card h4 {
  margin-top: 20px;
  font-weight: 600;
}
.pih-branch-card p {
  margin-bottom: 0;
  line-height: 1.6;
  opacity: 0.95;
}

/* Icon */
.pih-branch-icon {
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 32px;
  opacity: 0.45;
  color: #fbeb88;
}

/* Hover */
.pih-branch-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}



.pih-cochin-office {
  background: linear-gradient(135deg, #00acc1, #007c91);
}



/* Responsive */
@media (max-width: 768px) {
  .pih-branch-title {
    font-size: 28px;
  }
}

/* Section */
.wcu-main-wrap{
  background:#ffffff;
}

/* Heading */
.wcu-heading{
  font-size:38px;
  font-weight:700;
  color:#194279; /* Dark Blue */
}

/* Item Box */
.wcu-item-box{
  padding:20px 10px;
  transition:all .3s ease;
}
.wcu-item-box:hover{
  transform:translateY(-6px);
}

/* Icon */
.wcu-icon-img{
  width:55px;
  height:auto;
  margin-bottom:15px;
  filter: brightness(0) saturate(100%) invert(20%) sepia(18%) saturate(1200%) hue-rotate(180deg);
}

/* Number */
.wcu-item-box h4 {
    font-size: 22px;
    font-weight: 700;
    color: #0779a1;
    margin-bottom: 6px;
    font-family: 'Roboto';
}

/* Text */
.wcu-item-box p{
  font-size:15px;
  color:#333;
  margin:0;
}

/* Mobile */
@media(max-width:768px){
  .wcu-heading{
    font-size:28px;
  }
  .wcu-icon-img{
    width:45px;
  }
}


.bank-card img{
  border-radius: 10px;
  display: block;
  margin: auto;
  margin-bottom: 10px;
}

.hdfc-logo {
  padding: 5px 20px;
  background-color: #fff;
}


.call-btn {
  position: fixed;
  margin: 0;
  padding: 0;
  left: 0;
  bottom: 80px;
  background: #fff;
  background-color: transparent;
  cursor: pointer;
  font-size: 0;
  width: 110px;
  height: 110px;
  z-index: 1000;
}

.call-btn .tada {
  background: #ff5722;
  border-radius: 100px;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -20px;
  margin-left: -20px;
  animation-name: tada;
  animation-duration: 0.5s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.call-btn .tada a:before {
  font-family: FontAwesome;
  content: "\f095";
  font-size: 20px;
  text-decoration: none;
  color: #fff;
  margin-left: 10px;
  position: absolute;
  top: 15%;
  /* margin-top: -10px; */
}


@keyframes tada {
  from {
      transform: rotate(-20deg);
  }
  to {
      transform: rotate(20deg);
  }
}

.call-btn .pulse {
  width: 60px;
  height: 60px;
  background: rgba(255, 87, 34, 0.5);
  ;
  border-radius: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
  animation-name: pulse;
  animation-duration: 0.5s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}

@keyframes pulse {
  from {
      width: 55px;
      height: 55px;
      margin-top: -27.5px;
      margin-left: -27.5px;
  }
  to {
      width: 60px;
      height: 60px;
      margin-top: -30px;
      margin-left: -30px;
  }
}

.call-btn .zoomIn {
  width: 80px;
  height: 80px;
  border: 2px solid #ff5722;
  border-radius: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -40px;
  margin-left: -40px;
  animation-name: zoomIn;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-out;
}

@keyframes zoomIn {
  from {
      width: 40px;
      height: 40px;
      margin-top: -20px;
      margin-left: -20px;
  }
  to {
      width: 80px;
      height: 80px;
      margin-top: -40px;
      margin-left: -40px;
  }
}

@media screen and (max-width: 549px) {
  .call-btn {
      width: 80px;
      height: 80px;
  }
}


.whatsapp-btn {
  position: fixed;
  margin: 0;
  padding: 0;
  right: 0;
  bottom: 80px;
  background: #fff;
  background-color: transparent;
  cursor: pointer;
  font-size: 0;
  width: 110px;
  height: 110px;
  z-index: 1000;
}

.whatsapp-btn .tada {
  background: #45c153;
  border-radius: 100px;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -20px;
  margin-left: -20px;
  animation-name: tadaa;
  animation-duration: 0.5s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.whatsapp-btn .tada a:before {
  font-family: FontAwesome;
  content: "\f232";
  font-size: 25px;
  text-decoration: none;
  color: #fff;
  margin-left: 10px;
  position: absolute;
  top: 6%;
  /* margin-top: -10px; */
}


@keyframes tadaa {
  from {
      transform: rotate(-20deg);
  }
  to {
      transform: rotate(20deg);
  }
}

.whatsapp-btn .pulse {
  width: 60px;
  height: 60px;
  background: rgb(69, 193, 83, 0.5);
  ;
  border-radius: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
  animation-name: pulsee;
  animation-duration: 0.5s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}

@keyframes pulsee {
  from {
      width: 55px;
      height: 55px;
      margin-top: -27.5px;
      margin-left: -27.5px;
  }
  to {
      width: 60px;
      height: 60px;
      margin-top: -30px;
      margin-left: -30px;
  }
}

.whatsapp-btn .zoomIn {
  width: 80px;
  height: 80px;
  border: 2px solid #45c153;
  border-radius: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -40px;
  margin-left: -40px;
  animation-name: zoomIn;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-out;
}

@keyframes zoomIn {
  from {
      width: 40px;
      height: 40px;
      margin-top: -20px;
      margin-left: -20px;
  }
  to {
      width: 80px;
      height: 80px;
      margin-top: -40px;
      margin-left: -40px;
  }
}

@media screen and (max-width: 549px) {
  .whatsapp-btn {
      width: 80px;
      height: 80px;
  }
}
.thankyou{
  color: #194279;
  font-weight: bold;
}

/* Blog Section */
.blogs-section {
  background: #f8f9fa;
}

.blogs-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #194279;
}

.blogs-section .section-subtitle {
  font-size: 1rem;
  color: #555;
}

.blog-card {
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}


.blog-card .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #194279;
}

.blog-card .card-text {
  font-size: 0.95rem;
  color: #666;
}

.blog-card .card-footer {
  background: none;
  border-top: 1px solid #e9ecef;
}

.blog-card .card-footer small {
  font-size: 0.85rem;
  color: #888;
}

/* Blog Details Section */
.blog-details-section {
  background: #ffffff;
}

.blog-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #194279;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.9rem;
  color: #777;
}

.blog-meta i {
  color: #ff6f00;
}

.blog-featured-image img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.blog-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
}

.blog-content h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 12px;
  color: #194279;
}

.blog-content blockquote {
  padding: 20px 25px;
  background: #f8f9fa;
  border-left: 4px solid #ff6f00;
  font-style: italic;
  color: #555;
  margin: 30px 0;
}

.blog-tags span {
  font-weight: 600;
  margin-right: 10px;
}

.blog-tags a {
  display: inline-block;
  background: #f1f1f1;
  padding: 6px 14px;
  border-radius: 20px;
  margin: 5px 5px 0 0;
  font-size: 0.85rem;
  color: #194279;
  text-decoration: none;
}

.blog-tags a:hover {
  background: #ff6f00;
  color: #fff;
}

.author-box {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
}

.author-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.note p{
  margin-bottom: 0px;
    background: #014b5d;
    padding: 5px 10px;
    border-radius: 10px;
}

@media screen and (max-width:768px) {
  .footer-img{
    position: inherit;
  }
}