* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  

  
  
  .feature-cards {
    padding: 70px 0;
    /* background-color: #f8f9fa; */
    overflow: hidden;
  }
  
  .feature-cards-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .feature-card {
    display: flex;
    flex-direction: row;
    min-width: 280px;
    max-width: 440px;
/* border-radius: 50% !important; */
    /* height: 196px; */
    background-color: white;
    border-radius: 70px;
    padding: 10px;
    text-align: center;

    border: 1px solid rgb(133, 129, 129);

    color: black !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    opacity: 0.3;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: calc(0.2s * var(--card-index, 1));
    box-sizing: border-box;
  }
  
  .feature-card:nth-child(1) { --card-index: 1; }
  .feature-card:nth-child(2) { --card-index: 2; }
  .feature-card:nth-child(3) { --card-index: 3; }
  
  .feature-icon {
    /* margin-bottom: 15px; */
    display: flex;
    gap: 90px;
    align-items: center;
    
  }
  
  .feature-img {
    width: 30px;
    height: 30px;
  }
  
  .feature-title {
    color: #7E69AB;
    font-size: 13px;
    margin-bottom: 0px;
    font-weight: 600;
  }
  
  .feature-text {
    color:rgb(71, 69, 69);
    line-height: 1.6;
    margin: 0;
    font-size: 16px;
  }
  
  @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
  }
  
  /* Header */
  // ... keep existing code
  
  /* Hero Section */
  // ... keep existing code
  
  /* Popular Destinations */
  // ... keep existing code
  
  /* Transform Trip Section */
  // ... keep existing code
  
  /* Tour Packages */
  // ... keep existing code
  
  /* Reasons Section */
  // ... keep existing code
  
  /* Cultural Section */
  // ... keep existing code
  
  /* Global Tours */
  // ... keep existing code
  
  /* Exciting Places */
  // ... keep existing code
  
  /* Testimonials */
  // ... keep existing code
  
  /* Travel News */
  // ... keep existing code
  
  /* Newsletter */
  // ... keep existing code
  
  /* Footer */
  // ... keep existing code
  
  /* Responsive Styles */
  @media (max-width: 1024px) {
    /* // ... keep existing code */
    
    .feature-cards-grid{
        padding: 0px 20px;
    }
  }
  
  /* @media (max-width: 768px) {
    // ... keep existing code
  } */

  .light {
    position: relative;
    background-image: url('/public/lovable-uploads/81a81d5b-7776-4b14-9d26-9434f4270528.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;

    border-radius: 40px;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    overflow: hidden;
}

.soverlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    background-image: linear-gradient(rgb(103 82 103 / 50%), rgb(103 82 103 / 50%)), url(https://rangtravels.com/wp-content/uploads/2025/03/golden-triangle-delhi-jaipur-agra-tour-packages.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    
    z-index: 1;
  }

  .family{
    color: gray;
    font-family:  Helvetica, sans-serif;
    
  }
  /* subtitle {
    font-family: monospace;

  }
  */
  

.fonts {
color: gray;
    font-family: gruppo;
    font-size: 15px;
   

 
}

.my-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}.feature-icon {
    display: flex;
    gap: 90px;
    align-items: center;
    justify-content: space-between;
}

.feature-icon img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.feature-icon .feature-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    color: white;
}

.feature-icon .feature-title {
    color: #7E69AB;
    font-size: 1.4rem;
    margin-bottom: 0px;
    font-weight: 600;
}

.to-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 1s ease-out forwards;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}


.to-title {
  font-family: "Varela Round", sans-serif;
  font-weight: 400;
  font-style: normal;
}


.survived{
   
  background-color: var(--primary-color);
    color: white;
    padding: 6px 32px;

    border: 1px solid var(--primary-color);
    /* border-radius: 5px; */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 15px;
  }

  .survived:hover{
    color: #888585;

    text-decoration: none;
  }

.well-description {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 768px) {
    .to-title {
        font-size: 2rem;
        padding: 0 1rem;
    }
    
    .well-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .light {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .to-title {
        font-size: 1.5rem;
    }
    
    .light {
        padding: 2rem 0;
    }
}
.feature-list{
    color: white;
}

.feature-text{
    /* font-family: "Gruppo", sans-serif; */
  
    font-style: normal;


    
}

.features-section {
    position: relative;
  bottom: 260px;
    left: 0;
}

.lavel-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
    /* background: linear-gradient(
      to bottom,
      rgba(218, 215, 213, 0.8),  
      rgba(238, 204, 185, 0.5)   
    ); */
   
    padding: 1rem 0;
    border-radius: 30px;
   border: 1px solid white;
   
}

.features-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.feature-item {
    flex: 1;
    text-align: center;
    padding: 0 10px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

.feature-item:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.3s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.5s;
}

.feature-title {
    color: #f5f3f3;
    font-size: 1rem;
    
    line-height: 1.4;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(63, 62, 62, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .feature-title {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .features-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .feature-item {
        width: 100%;
        padding: 5px 0;
    }
}

@media (max-width: 480px) {
    .feature-title {
        font-size: 0.9rem;
    }
    
    .features-section {
        padding: 1rem 0;
    }
}

.resolutions-section {
    /* padding: 4rem 2rem; */
    overflow: hidden;

    padding-bottom: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Slider Container */
.slider-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 1.5rem;
}

/* Slides */
.slide {
    min-width: calc(33.33% - 1rem);
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
    background-color: rgb(233, 233, 236);
    /* border-radius: 0px 20px 0px 20px !important; */

}

.slide:hover {
    transform: translateY(-10px);
}

.slide-inner {
    position: relative;
    /* border-radius: 12px; */
    /* border-radius: 20px 20px 20px 20px !important; */
    overflow: hidden;
    height: 100%;
    /* padding: 5px; */
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); */
}

.slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    
  
}

.slide-content {
    padding: 1.5rem;
    color: white;
  

}

.slide-content h2 {
    margin: 0;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: rgb(43, 42, 42);
    font-family:  gruppo;
}

.slide-content p {
    font-size: 1.1rem;
    color: rgb(43, 42, 42);
    font-family:  gruppo;
}

/* Navigation Buttons */
.slider-button {
  background-color: var(--primary-hover);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); */
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 2;
    transition: all 0.3s ease;
    color: #fcf8f8;
    font-size: 1.2rem;
}

.slider-button:hover {
  background-color: var(--primary-hover);
    transform: scale(1.1);
 
}

.prev {
    left: -20px;
}

.next {
    right: -20px;
}

/* Navigation Dots */
.slider-navigation {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.nav-dots {
    display: flex;
    gap: 0.8rem;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgb(248, 50, 83);
    background: rgba(202, 201, 201, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgb(143, 143, 146);
}

.nav-dot.active {
    background: white;
    transform: scale(1.2);
    color: #7E69AB !important;
   
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .slide {
        min-width: calc(50% - 0.75rem);
    }
}

@media (max-width: 768px) {
    .resolutions-section {
        padding: 3rem 1.5rem;
    }

    .slider-button {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .slide {
        min-width: calc(100% - 0.5rem);
    }

    .slider-button {
        width: 32px;
        height: 32px;
    }

    .slide-content h2 {
        font-size: 1.3rem;
    }

    .slide-content p {
        font-size: 1rem;
    }
}

/* Animation for dot selection */
@keyframes dotPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1.2);
    }
}

.nav-dot.active {
    animation: dotPulse 0.3s ease-in-out;
    color: #7E69AB !important;
}

/* Animation for slides */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide {
    animation: slideIn 0.5s ease-out forwards;
    animation-delay: calc(var(--slide-index, 0) * 0.1s);
    opacity: 0;
}

.why-choose-us-section {
 
    text-align: center;
    background-color: #ffffff;
    font-family: Arial, sans-serif;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .section-title {
    font-size: 2.8rem;
    color: #777;
    margin-bottom: 20px;
    font-weight: 300;
  }
  
  .section-description {
    max-width: 900px;
    margin: 0 auto 40px;
    color: #777;
    line-height: 1.6;
    font-size: 1rem;
  }
  
  .features-container {
    display: flex;
    justify-content: center;
    /* flex-wrap: wrap; */
    gap: 25px;
  }

  .droping{
    color: #9e9da1;
    margin-left: 10px;
  }

 
  
  .custom-feature-card {
    flex: 1;
    
    min-width: 250px;

    border:  0.4px solid rgb(204, 203, 203);

    height: 250px;
    max-width: 290px;
    text-align: left !important;
    padding: 20px 10px;
    background-color: #dedde2;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px !important;
    /* border-radius: 13px 13px 13px 13px !important; */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
  }
  
  .custom-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .custom-feature-card:nth-child(1) {
    animation-delay: 0.3s;
  }
  
  .custom-feature-card:nth-child(2) {
    animation-delay: 0.5s;
  }
  
  .custom-feature-card:nth-child(3) {
    animation-delay: 0.7s;
  }
  
  .custom-feature-card:nth-child(4) {
    animation-delay: 0.9s;
  }
  
  .icon-container {
    margin-bottom: 15px;
height: 50px;
    width: 50px;

    text-align: left;
  }
  
  .feature-icon {
    width: 150px;
  height: auto;
    display: inline-block;
    padding: 15px;
  }
  
  .custom-feature-heading {
    margin: 15px 0;
    color: black;
    font-size: 15px;
    font-weight: 600;
  }
  
  .feature-description {
    color: #777;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.9rem;
  }
  
  .read-more {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s;
  }
  
  .read-more:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e74c6a;
    transition: transform 0.3s;
  }
  
  .read-more:hover {
    color: #d03354;
  }
  
  .read-more:hover:after {
    transform: scaleX(1.1);
  }
  
  /* Animation for fade-in effect */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive Design */
  @media (max-width: 1200px) {
    .features-container {
      padding: 0 20px;
    }
  
    .custom-feature-card {
      min-width: 180px;
    }
  }
  
  @media (max-width: 992px) {
    .section-title {
      font-size: 2.4rem;
    }
  
    .features-container {
      gap: 20px;
    }
  }
  
  @media (max-width: 768px) {
    .section-title {
      font-size: 2rem;
    }
  
    .features-container {
      flex-direction: row;
      flex-wrap: wrap;
    }
  
    .custom-feature-card {
      min-width: 45%;
      max-width: 45%;
    }
  }
  
  @media (max-width: 576px) {
    .section-title {
      font-size: 1.8rem;
    }
  
    .section-description {
      font-size: 0.9rem;
    }
  
    .features-container {
      flex-direction: column;
      align-items: center;
    }
  
    .custom-feature-card {
      min-width: 85%;
      max-width: 85%;
    }
  }
  
  .setup{
    position: absolute;
    top: -40px;
  }
  .testi{
    position: absolute;
    left: 2%;
    
  }


  .Dolor{

  }

  @media (min-width: 600px)and (max-width: 1100px) {

    .text-truncate{


     text-align: center;

    }
    .Dolor{
      margin-top: 20px;
      text-align: center;
    }

    .Dolor{
      height:50px;
      overflow-y: scroll;
    }
    
  }

  @media (min-width: 1020px)and  (max-width: 1230px){

    .text-truncate{


   margin-left: 30px;
     }
     .Dolor{
       margin-top: 20px;
       text-align: center;
     }

     .testi{
    padding:  10px;
     }

  }

  @media (min-width: 600px)and (max-width: 1000px) {

    .testi{
      position: relative;
    }
  }

  .quote {
    margin-right: -36px;
  
    color: #bec2c2;
    font-size: 27px;
}


.owl-carousel {
  position: relative;
}

.owl-nav {
  position: relative;
align-items: center;
  left: 0;
  right: 0;

  top: -170px;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none; /* let clicks pass through except buttons */
}

.owl-nav span {
  pointer-events: all;
  background-color: var(--primary-color);
  color: #fff;
  padding: 5px;
  border-radius: 50%;
  font-size: 12px;
  cursor: pointer;
  user-select: none;
 
  transition: background 0.3s ease;
}

.owl-nav span:hover {
  background-color: rgba(204, 206, 204, 0.85);
}

.carousel .owl-dot{
  display: inline-block;
}

/* Dots styling (optional) */
.owl-dots {
  justify-content: center;
  display: flex;
  text-align: center;
  margin-top: 15px;
}
.owl-dot span {
  width: 10px;
  height: 10px;
  background: #ccc;
  display: inline-block;
  margin: 5px;
  border-radius: 50%;
}
.owl-dot.active span {
  background: #928f8f;
}

