* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
   
}

.visit-india-section {
    width: 100%;
    padding: 80px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.visit-india-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    height: 100%;
}

/* Text content styling */
.text-content {
    flex: 1;
    padding-right: 20px;
}

.heading {
    font-size: 38px;
    font-weight: 400;
    color: #333;
    margin-bottom: 25px;
    font-family: 'Georgia', serif;
}

.description {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.activities {
    margin-top: 40px;
    position: relative;
}

.activities:before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #e0d5c0;
}

.activity {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    opacity: 0.7;
}

.activity-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.activity-details h3 {
    color: #333;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 5px;
}

.activity-details p {
    color: #555;
    font-size: 15px;
}

/* Image content styling */
.image-content {
    flex: 1;
    height: 370px;
    position: relative;
    overflow: hidden;
  
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    /* background-image: url('https://images.unsplash.com/photo-1491497895121-1334fc14d8c9');
    background-size: cover;
    background-position: center; */
    width: 100%;
}

.image-content img{

    width: 100%;
    height: 100%;

}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    text-align: center;
    /* background: rgba(190, 38, 38, 0.4); */
    color: #fff;
    transition: transform 0.3s ease;
}

.image-content:hover .image-overlay {
    transform: translateY(-5px);
}

.image-overlay h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
}

.read-more-btn {
    display: inline-block;
    padding: 8px 20px;
    color: #fff;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background-color: #fff;
    color: #333;
}

/* Animation for fade-in effect */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-content {
    animation: fadeIn 1s ease-out forwards;
}

.image-content {
    animation: fadeIn 1s ease-out 0.3s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* Responsive styling */
@media (max-width: 992px) {
    .visit-india-content {
        flex-direction: column;
    }
    
    .text-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .heading {
        font-size: 32px;
    }
    
    .image-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .visit-india-section {
        padding: 60px 20px;
    }
    
    .heading {
        font-size: 28px;
    }
    
    .description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .visit-india-section {
        padding: 40px 15px;
    }
    
    .heading {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .activities {
        margin-top: 30px;
    }
    
    .image-content {
        height: 300px;
    }
    
    .image-overlay h2 {
        font-size: 22px;
    }
}




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    color: #333;
    background-color: #fff;
}

.luxury-accommodation {
    padding: 0rem 2rem;
    background-color: #ffffff;
    overflow: hidden;
   
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Title and Description */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: #333;
    font-weight: 400;
    /* margin-bottom: 1rem; */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
    margin-top: 4rem;
}

.decorative-line {
    width: 4rem;
    height: 1px;
    background-color: #d0a85c;
    margin: 0.8rem auto 1.5rem;
    opacity: 0;
    transform: scaleX(0);
    animation: expandLine 1s ease-out 0.2s forwards;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

/* Accommodation Grid */
.accommodation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Accommodation Cards */
.accommodation-card {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease-out, box-shadow 0.4s ease-out;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

.accommodation-card:nth-child(1) {
    animation-delay: 0.8s;
}

.accommodation-card:nth-child(2) {
    animation-delay: 1s;
}

.accommodation-card:nth-child(3) {
    animation-delay: 1.2s;
}

.accommodation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.accommodation-card:hover .image-container img {
    transform: scale(1.05);
}

.accommodation-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #d0a85c;
    color: white;
    padding: 0.3rem 0.7rem;
    font-size: 0.7rem;
    font-weight: 500;
    border-radius: 2px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
}

.card-content {
    padding: 1.2rem;
    background: white;
}

.accommodation-location {
    display: block;
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
}

.accommodation-name {
    color: #333;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandLine {
    from {
        opacity: 0;
        transform: scaleX(0);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* Responsive design */
@media (max-width: 992px) {
    .accommodation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .accommodation-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .luxury-accommodation {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
}









* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
 
  }
  
  .why-choose-us {
    width: 100%;
 
    
    color: white;
  }
  
  .Choose-container {
    max-width: 1200px;
    margin: 0 auto;

    padding: 0px !important;
  }
  
  .main-title {
    text-align: center;
    font-size: 42px;
    /* margin-bottom: 50px; */
    font-weight: 500;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.2s;
  }
  
  .content-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.4s;
    justify-content: center;
    align-items: stretch;
    height: 550px;
  }
  
  /* Left Image */
  .imageing-container {
    flex: 1 1 50%;
    height: 100%;
    max-height: 550px;
    overflow: hidden;
  }
  
  .luxury-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Right Content */
  .reasons-container {
    flex: 1 1 50%;
    height: 100%;
    max-height: 550px;
    background-color: #eceaea;
    padding: 30px 25px;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .reasons-title {
    color: #ff5e41;
    font-size: 26px;
    margin-bottom: 25px;
    font-weight: 600;
  }
  
  .reason-item {
    display: flex;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.6s ease forwards;
  }
  
  .reason-item:nth-child(2) { animation-delay: 0.6s; }
  .reason-item:nth-child(3) { animation-delay: 0.8s; }
  .reason-item:nth-child(4) { animation-delay: 1s; }
  .reason-item:nth-child(5) { animation-delay: 1.2s; }
  .reason-item:nth-child(6) { animation-delay: 1.4s; }
  
  .icon {
    flex: 0 0 40px;
    margin-right: 15px;
    margin-top: 3px;
  }
  
  .reason-icon {
    width: 30px;
    height: 30px;
    color: #ff5e41;
    transition: transform 0.3s ease;
  }
  
  .reason-item:hover .reason-icon {
    transform: scale(1.15);
  }
  
  .reason-content {
    flex: 1;
  }
  
  .reason-content h4 {
    color: #ff5e41;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
  }
  
  .reason-content p {
    font-size: 12px;
    line-height: 1.5;
    color: #666;
  }
  
  /* Animations */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive Design */
  @media screen and (max-width: 992px) {
    .content-wrapper {
      flex-direction: column;
      height: auto;
    }
  
    .imageing-container,
    .reasons-container {
      flex: 1 1 100%;
      width: 100%;
      max-height: none;
      height: auto;
    }
  
    .imageing-container {
      height: 300px;
    }
  
    .main-title {
      font-size: 36px;
    }
  }
  
  @media screen and (max-width: 768px) {
    .why-choose-us {
      padding: 60px 15px;
    }
  
    .reasons-container {
      padding: 25px;
    }
  
    .reasons-title {
      font-size: 22px;
    }
  
    .main-title {
      font-size: 32px;
      margin-bottom: 30px;
    }
  }
  
  @media screen and (max-width: 576px) {
    .imageing-container {
      height: 220px;
    }
  
    .main-title {
      font-size: 28px;
    }
  
    .reason-content h4 {
      font-size: 15px;
    }
  
    .reason-content p {
      font-size: 13px;
    }
  }
  





  .stats-section {
    position: relative;
    background-color: #FDE1D3; /* Soft peach color for the background */
    padding: 60px 20px;
    overflow: hidden;
    margin-top: 100px;
}

/* Torn paper effect on top and bottom */
.stats-section::before,
.stats-section::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 25px;
    background-image: url("https://thumbs.dreamstime.com/b/baby-pink-fluffy-feather-background-13471389.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

.stats-section::before {
    top: 0;
    transform: rotate(180deg);
}

.stats-section::after {
    bottom: 0;
}

.delightful-container {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeIn 1s ease-out forwards;
}

.stats-tagline {
    font-size: 22px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
}

.stats-established {
    font-size: 16px;
    color: #666;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    flex: 1;
    min-width: 220px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease-out forwards;
}

.stat-item:nth-child(1) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.4s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.6s;
}

.stat-item:nth-child(4) {
    animation-delay: 0.8s;
}

.icons-container{
    margin: 0 auto 15px;
    width: 40px;
    height: 40px;
    filter: opacity(0.8);
   
}

.icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.stat-number {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.stat-underline {
    width: 40px;
    height: 2px;
    background-color: #9b87f5;
    margin: 8px auto 12px;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive styling */
@media (max-width: 992px) {
    .stats-container {
        gap: 20px;
    }
    
    .stat-item {
        min-width: 180px;
    }
    
    .stat-number {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .stats-container {
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 20px);
        margin-bottom: 30px;
    }
    
    .stats-tagline {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .stat-item {
        flex: 0 0 100%;
    }
    
    .stats-section {
        padding: 50px 15px;
    }
    
    .stats-tagline {
        font-size: 18px;
    }
}










/* 
.India-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
  }

  .testimonials-wrap {
    padding: 40px 0;
    background-color: #fff;
  }

  .heading-section {
    text-align: center;
    margin-bottom: 30px;
  }

  .sub-heading {
    font-size: 12px;
    font-weight: 600;
    color: #2e9ca1;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .heading-section h2 {
    font-size: 28px;
    margin-top: 10px;
  }

  .testimonial-box {
    padding: 20px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: flex-start;
  }

  @media (max-width: 600px) {
    .testimonial-box {
      flex-direction: column;
      text-align: center;
    }

    .star-rating {
      justify-content: center;
    }
  }

  .text {
    flex: 1;
    position: relative;
  }

  .quote {
    color: #07a81c;
    font-size: 20px;
    margin-bottom: 10px;
    display: inline-block;
  }

  .name {
    font-weight: bold;
    margin-top: 10px;
    font-size: 16px;
  }

  .position {
    font-size: 14px;
    color: #777;
  }

  .star-rating {
    color: #FFD700;
    margin: 10px 0;
    display: flex;
  }

  .owl-nav {
    text-align: center;
    margin-top: 20px;
  }

  .owl-nav button {
    background: none;
    border: none;
    font-size: 30px;
    margin: 0 10px;
    color: #fa790f;
    cursor: pointer;
  }


 */





 .India-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
  }

  .testimonials-wrap {
    padding: 40px 0;
    background-color: #fff;
  }

  .heading-section {
    text-align: center;
    margin-bottom: 30px;
  }

  .sub-heading {
    font-size: 12px;
    font-weight: 600;
    color: #2e9ca1;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .heading-section h2 {
    font-size: 28px;
    margin-top: 10px;
  }

  .testimonial-box {
    padding: 20px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: flex-start;
  }

  @media (max-width: 600px) {
    .testimonial-box {
      flex-direction: column;
      text-align: center;
    }

    .star-rating {
      justify-content: center;
    }
  }

  .text {
    flex: 1;
    position: relative;
  }

  .quote {
    color: #cbcece;
    font-size: 20px;
    margin-bottom: 10px;
    display: inline-block;
  }

  .name {
    font-weight: bold;
    margin-top: 10px;
    font-size: 16px;
  }

  .position {
    font-size: 14px;
    color: #777;
  }

  .star-rating {
    color: #FFD700;
    margin: 10px 0;
    display: flex;
  }

  .owl-nav {
    text-align: center;
    margin-top: 20px;
  }

  .owl-nav button {
    background: none;
    border: none;
    font-size: 30px;
    margin: 0 10px;
    color: #a0a8a8;
    cursor: pointer;
  }






  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-250px * 7));
    }
  }

  .slider {
 
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
    height: 100px;
    margin: 100px auto;
    overflow: hidden;
    position: relative;
    width: 960px;
  }

  .slider::before,
  .slider::after {
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 100px;
    position: absolute;
    width: 200px;
    z-index: 2;
  }

  .slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
  }

  .slider::before {
    left: 0;
    top: 0;
  }

  .slide-track {
    display: flex;
    width: calc(250px * 14);
    animation: scroll 40s linear infinite;
  }

  .slide {
    height: 100px;
    width: 250px;
    flex-shrink: 0;
  }

  .slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }






  .color{
    color: rgb(40, 40, 43);
    text-decoration: none;

}
.color:hover{
    color: rgb(172, 152, 138);
}
.panel-title > a:before {
  float: right !important;
  font-family: FontAwesome;
  content: "\f068"; /* minus icon */
  
  padding-right: 5px;
}
.panel-title > a.collapsed:before {
  content: "\f067"; /* plus icon */
}

.panel-title > a:hover,
.panel-title > a:active,
.panel-title > a:focus {
  text-decoration: none;
}
.panel-heading {

  border-bottom: 1px solid transparent;
  /* border-top-right-radius: 3px;
  border-top-left-radius: 3px; */
}
.panel {
  margin-bottom: 20px !important;
  /* background-color: #ffffff; */
  border: 1px solid transparent;
  /* box-shadow: 15px 16px 13px 8px rgba(4, 4, 4, 0.05); */
  color: rgb(87, 87, 88);
  /* background-color: rgb(223, 21, 54); */
}
.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
 
  text-align: center;
  color: #fff;
}
a {
  color: #fff;
  text-decoration: underline;
}






.Voluptate-container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
  }

  .blog-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
  
  }

  .blog-image {
    flex: 1 1 calc(25% - 20px);
  
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
  
  }

  .blog-image:hover {
    transform: translateY(-5px);
  }

  .blog-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }

  .travel-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    font-size: 14px;
    color: #666;
  }

  .travel-icons i {
    color: var(--gotur-base);
  }

  .blog-image h3 {
    padding: 0 12px;
    margin: 0;
    text-align: left;
    font-size: 1rem;
    color: #333;
  }

  .ipsum {
    padding: 0 12px;
    text-align: left;
    font-size: 14px;
    color: #555;
  }

  .read-more {
    display: inline-block;
    margin: 10px 12px 15px;
    padding: 8px 12px;
    background-color: #eee;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-size: 14px;
  }

  .read-more:hover {
    background-color: #ccc;
  }

  @media (max-width: 768px) {
    .blog-image {
      flex: 1 1 48%;
    }

    html,body{
        overflow-x: hidden;
    }
  }

  @media (max-width: 480px) {
    .blog-image {
      flex: 1 1 100%;
    }
  }


  @keyframes bottomToTop {
          0% {
              opacity: 0;
              transform: translateY(30px); /* Start from below */
          }
          100% {
              opacity: 1;
              transform: translateY(0); /* End at normal position */
          }
      }

      /* Apply animation */
      .animate-bottom-to-top {
          opacity: 0;
          animation: bottomToTop 1s ease-out forwards; /* Animation duration and easing */
      }

      /* Optional styling */
      .explore-title {
          font-size: 2.5rem;
          color: #333;
          font-weight: bold;
        
      }

      .family {
          font-size: 1.2rem;
          color: #777;
          text-align: center;
          margin-top: 10px;
      }

      /* Additional styles for wrapper */
      .explore-heading-wrapper {
          text-align: center;
          margin: 50px 0;
      }











      .travel-packages-section {
        padding: 0rem 2rem;
        background-color: #ffffff;
        overflow: hidden;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
    }
    
    /* Section Header */
    .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
        color: #333;
        margin-bottom: 1rem;
        font-weight: 700;
    }
    
    .section-underline {
        width: 80px;
        height: 3px;
        background-color: #4CAF50;
        margin: 0 auto;
        border-radius: 10px;
    }
    
    /* Packages Grid Layout */
    .packages-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin: 40px auto;
    }
    
    /* Package Card Styles */
    .package-card {
        background-color: #fff;
       
        overflow: hidden;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .package-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    }
    
    .package-image {
        position: relative;
        height: 0;
        padding-bottom: 65%;
        overflow: hidden;
    }
    
    .package-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .package-card:hover .package-image img {
        transform: scale(1.05);
    }
    
    /* Badge Styling */
    .package-badges {
        position: absolute;
        top: 15px;
        left: 15px;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    
    .badge {
        display: inline-block;
        padding: 5px 10px;
        border-radius: 50px;
        font-size: 0.7rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .badge.featured {
        background-color: #4CAF50;
        color: white;
    }
    
    .badge.discount {
        background-color: #FF5722;
        color: white;
    }
    
    /* Favorite Button */
    .favorite-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        background-color: #fff;
        border: none;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
        color: #777;
    }
    
    .favorite-btn:hover {
        background-color: #f8f8f8;
        transform: scale(1.05);
    }
    
    .favorite-btn svg {
        width: 20px;
        height: 20px;
    }
    
    /* Package Content */
    .package-content {
        padding: 20px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .package-info {
        margin-bottom: 15px;
    }
    
    .package-rating {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 10px;
        font-size: 0.85rem;
        flex-direction: row-reverse;
        justify-content: flex-end;
    }
    
    .stars {
        color: #FFD700;
    }
    
    .review-count {
        color: #777;
    }
    
    .package-title {
        font-size: 1.1rem;
        color: #333;
        margin-bottom: 12px;
        line-height: 1.4;
        font-weight: 600;
    }
    
    .package-details {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .detail {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 0.85rem;
        color: #666;
    }
    
    .detail svg {
        color: #4CAF50;
    }
    
    /* Package Pricing */
    .package-pricing {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid #f0f0f0;
        padding-top: 15px;
        margin-top: auto;
    }
    
    .price-section {
        display: flex;
        flex-direction: column;
    }
    
    .price-label {
        font-size: 0.75rem;
        color: #777;
    }
    
    .price-value {
        font-size: 1.2rem;
        font-weight: 700;
        color: #333;
    }
    
    .book-now-btn {
        display: inline-flex;
        align-items: center;
        background-color: #4CAF50;
        color: white;
        padding: 8px 16px;
        border-radius: 50px;
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .book-now-btn:hover {
        background-color: #3d8b40;
        transform: translateY(-2px);
    }
    
    /* Responsive styles */
    @media (max-width: 1200px) {
        .packages-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    
    @media (max-width: 992px) {
        .packages-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .section-title {
            font-size: 2.2rem;
        }
        
        .package-title {
            font-size: 1rem;
        }
    }
    
    @media (max-width: 768px) {
        .travel-packages-section {
            padding: 4rem 1.5rem;
        }
        
        .section-title {
            font-size: 2rem;
        }
    }
    
    @media (max-width: 576px) {
        .packages-grid {
            grid-template-columns: 1fr;
        }
    }
    
    @media (max-width: 480px) {
        .travel-packages-section {
            padding: 3rem 1rem;
        }
        
        .section-title {
            font-size: 1.8rem;
        }
        
        .package-content {
            padding: 15px;
        }
        
        .package-pricing {
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
        }
        
        .book-now-btn {
            width: 100%;
            justify-content: center;
        }
    }
    






    .travel-footer {
        background-color: #f8f8f8;
        padding: 3rem 0;
        color: #333;
        font-size: 14px;
        border-top: 1px solid #eee;
        margin-top: 50px;
    }
    
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 0 1rem;
    }
    
    /* Column styles */
    .footer-column {
        flex: 1;
        min-width: 200px;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .footer-title {
        color: #ff6b00;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 1.5rem;
        position: relative;
        padding-bottom: 8px;
    }
    
    .footer-title::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background-color: #ff6b00;
    }
    
    /* Contact information */
    .contact-item {
        display: flex;
        margin-bottom: 1.5rem;
        align-items: flex-start;
    }
    
    .icon-container {
        width: 40px;
        height: 40px;
        margin-right: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    
    .contact-icon {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    .contact-text p {
        margin-bottom: 4px;
        line-height: 1.4;
        color: #666;
    }
    
    .subheading {
        color: #ff6b00;
        font-size: 14px;
        margin: 1.5rem 0 1rem;
        font-weight: 600;
    }
    
    /* Links */
    .footer-links {
        list-style: none;
    }
    
    .footer-links li {
        margin-bottom: 0.8rem;
    }
    
    .footer-links a {
        color: #666;
        text-decoration: none;
        transition: color 0.3s;
        position: relative;
        padding-left: 15px;
        display: block;
    }
    
    .footer-links a::before {
        content: "→";
        position: absolute;
        left: 0;
        transition: transform 0.3s;
    }
    
    .footer-links a:hover {
        color: #ff6b00;
    }
    
    .footer-links a:hover::before {
        transform: translateX(3px);
    }
    
    /* Social Icons */
    .social-icons {
        display: flex;
        gap: 10px;
        margin-top: 1rem;
    }
    
    .social-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        border: 1px solid #ddd;
        border-radius: 50%;
        color: #666;
        text-decoration: none;
        transition: all 0.3s;
    }
    
    .social-icon:hover {
        background-color: #ff6b00;
        color: white;
        border-color: #ff6b00;
    }
    
    /* India Logo Section */
    .india-logo {
        text-align: right;
    }
    
    .india-title {
        font-size: 22px;
        color: #333;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }
    
    .india-subtitle {
        font-size: 18px;
        color: #333;
        margin-bottom: 1rem;
        font-weight: 500;
    }
    
    .india-logos {
        display: flex;
        justify-content: flex-end;
        gap: 1rem;
    }
    
    .tourism-logo, .partner-logo {
        max-width: 100px;
        height: auto;
    }
    
    /* Responsive styles */
    @media (max-width: 992px) {
        .footer-container {
            justify-content: flex-start;
        }
        
        .footer-column {
            flex: 0 0 33.333%;
        }
        
        .india-logo {
            text-align: left;
        }
        
        .india-logos {
            justify-content: flex-start;
        }
    }
    
    @media (max-width: 768px) {
        .footer-column {
            flex: 0 0 50%;
        }
    }
    
    @media (max-width: 576px) {
        .footer-column {
            flex: 0 0 100%;
        }
        
        .india-logo {
            margin-top: 2rem;
        }
    }
    
    /* Animation for links */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .footer-links li {
        opacity: 0;
        animation: fadeIn 0.5s ease forwards;
    }
    
    .footer-links li:nth-child(1) {
        animation-delay: 0.1s;
    }
    
    .footer-links li:nth-child(2) {
        animation-delay: 0.2s;
    }
    
    .footer-links li:nth-child(3) {
        animation-delay: 0.3s;
    }
    
    .footer-links li:nth-child(4) {
        animation-delay: 0.4s;
    }
    
    .footer-links li:nth-child(5) {
        animation-delay: 0.5s;
    }
    
    .footer-links li:nth-child(6) {
        animation-delay: 0.6s;
    }
    
    .footer-links li:nth-child(7) {
        animation-delay: 0.7s;
    }
    
    /* Animation for contact items */
    .contact-item {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeIn 0.8s ease forwards;
    }
    
    .contact-item:nth-child(2) {
        animation-delay: 0.2s;
    }
    
    .contact-item:nth-child(4) {
        animation-delay: 0.4s;
    }
    









    .travel-footer {
        background-color: #f8f8f8;
        padding: 3rem 0;
        color: #333;
        font-size: 14px;
        border-top: 1px solid #eee;
    }
    
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 0 1rem;
    }
    
    /* Column styles */
    .footer-column {
        flex: 1;
        min-width: 200px;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .footer-title {
        color: #ff6b00;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 1.5rem;
        position: relative;
        padding-bottom: 8px;
    }
    
    .footer-title::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background-color: #ff6b00;
    }
    
    /* Contact information */
    .contact-item {
        display: flex;
        margin-bottom: 1.5rem;
        align-items: flex-start;
    }
    
    .icon-container {
        width: 40px;
        height: 40px;
        margin-right: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    
    .contact-icon {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    .contact-text p {
        margin-bottom: 4px;
        line-height: 1.4;
        color: #666;
    }
    
    .subheading {
        color: #ff6b00;
        font-size: 14px;
        margin: 1.5rem 0 1rem;
        font-weight: 600;
    }
    
    /* Links */
    .footer-links {
        list-style: none;
    }
    
    .footer-links li {
        margin-bottom: 0.8rem;
    }
    
    .footer-links a {
        color: #666;
        text-decoration: none;
        transition: color 0.3s;
        position: relative;
        padding-left: 15px;
        display: block;
    }
    
    .footer-links a::before {
        content: "→";
        position: absolute;
        left: 0;
        transition: transform 0.3s;
    }
    
    .footer-links a:hover {
        color: #ff6b00;
    }
    
    .footer-links a:hover::before {
        transform: translateX(3px);
    }
    
    /* Social Icons */
    .social-icons {
        display: flex;
        gap: 10px;
        margin-top: 1rem;
    }
    
    .social-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        border: 1px solid #ddd;
        border-radius: 50%;
        color: #666;
        text-decoration: none;
        transition: all 0.3s;
    }
    
    .social-icon:hover {
        background-color: #ff6b00;
        color: white;
        border-color: #ff6b00;
    }
    
    /* India Logo Section */
    .india-logo {
        text-align: right;
    }
    
    .india-title {
        font-size: 22px;
        color: #333;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }
    
    .india-subtitle {
        font-size: 18px;
        color: #333;
        margin-bottom: 1rem;
        font-weight: 500;
    }
    
    .india-logos {
        display: flex;
        justify-content: flex-end;
        gap: 1rem;
    }
    
    .tourism-logo, .partner-logo {
        max-width: 100px;
        height: auto;
    }
    
    /* Responsive styles */
    @media (max-width: 992px) {
        .footer-container {
            justify-content: flex-start;
        }
        
        .footer-column {
            flex: 0 0 33.333%;
        }
        
        .india-logo {
            text-align: left;
        }
        
        .india-logos {
            justify-content: flex-start;
        }
    }
    
    @media (max-width: 768px) {
        .footer-column {
            flex: 0 0 50%;
        }
    }
    
    @media (max-width: 576px) {
        .footer-column {
            flex: 0 0 100%;
        }
        
        .india-logo {
            margin-top: 2rem;
        }
    }
    
    /* Animation for links */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .footer-links li {
        opacity: 0;
        animation: fadeIn 0.5s ease forwards;
    }
    
    .footer-links li:nth-child(1) {
        animation-delay: 0.1s;
    }
    
    .footer-links li:nth-child(2) {
        animation-delay: 0.2s;
    }
    
    .footer-links li:nth-child(3) {
        animation-delay: 0.3s;
    }
    
    .footer-links li:nth-child(4) {
        animation-delay: 0.4s;
    }
    
    .footer-links li:nth-child(5) {
        animation-delay: 0.5s;
    }
    
    .footer-links li:nth-child(6) {
        animation-delay: 0.6s;
    }
    
    .footer-links li:nth-child(7) {
        animation-delay: 0.7s;
    }
    
    /* Animation for contact items */
    .contact-item {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeIn 0.8s ease forwards;
    }
    
    .contact-item:nth-child(2) {
        animation-delay: 0.2s;
    }
    
    .contact-item:nth-child(4) {
        animation-delay: 0.4s;
    }
    


    .support{
        font-size: 13px;
        color: #555;
        
    }









    .slider-container {
        max-width: 1150px;
        margin: auto;
        overflow: hidden;
        position: relative;
      }
  
      .slider-track {
        display: flex;
        transition: transform 0.5s ease-in-out;
      }
  
      .main-slide {
        flex: 0 0 25%;
        padding: 10px;
      }
  
      .main-slide img {
        width: 100%;
        height: 320px;
        
        display: block;
      }
  
      .nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.5);
        color: white;
        border: none;
        padding: 10px;
        cursor: pointer;
        z-index: 10;
        font-size: 18px;
      }
  
      .prev-btn {
        left: 10px;
      }
  
      .next-btn {
        right: 10px;
      }
  
      @media (max-width: 768px) {
        .main-slide {
          flex: 0 0 50%;
        }
      }
  
      @media (max-width: 480px) {
        .main-slide {
          flex: 0 0 100%;
        }
      }
  
      .image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .image-wrapper img {
    width: 100%;
  
    display: block;
  }
  
  .overlays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    color: white;
    background-color: transparent;
    padding: 20px;
   
    text-align: center;
    border:  1px solid white;
  }
  
  .overlayspara {
    margin-bottom: 10px;
    font-size: 14px;
    color: white;
  }
  
  .read-more {
    background-color: transparent;
    border: none;
    padding: 6px 14px;
    border-radius: 4px;
    color: white;
    font-size: 13px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .read-more:hover {
    /* background-color: #8f1e29; */
  }




  @keyframes bottomToTop {
    0% {
        opacity: 0;
        transform: translateY(30px); /* Start from below */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* End at normal position */
    }
}

/* Apply animation */
.animate-bottom-to-top {
    opacity: 0;
    animation: bottomToTop 1s ease-out forwards; /* Animation duration and easing */
}

/* Optional styling */
.explore-title {
    font-size: 2.5rem;
    color: #333;
    font-weight: bold;
    margin: 10px 0;
}

.family {
    font-size: 1.2rem;
    color: #777;
    text-align: center;
    margin-top: 10px;
}

/* Additional styles for wrapper */
.explore-heading-wrapper {
    text-align: center;
    margin: 50px 0;
}

.fundamental{
    background-color: blanchedalmond;
}


.card-header{
    border: none;
}