
.collection-info ul li:nth-of-type(1){
    font-size: 12px;
    font-weight: 400;
    color:white;
    font-family: "Lato", sans-serif;
}
  .collection-info ul li:nth-of-type(2) {
    margin-top: -18px;
    font-size: 28px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, .8);
    color: white;
    font-family: "Lato", sans-serif;
}
 
  .banner-heading p {
    font-size: 26px;
    font-weight: 600;
    color: white;
    line-height: 35px;
  }

  .font-spat {
    margin-left: 30px;
    font-size: 16px;
   }

  .collection-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0 0 -20px;
  }

  .collection-info ul {
    font-weight: 700;
    list-style: none;
    margin: 0;
  }

  .hero__slide {
    position: relative;
  }
  
  .hero__slide .hero__content {
    position: absolute;
    top: 50%;
    left: 22%;
    transform: translate(-50%, -50%);
    text-align: start;
    z-index: 1;
    color: #fff; /* Adjust text color as needed */
  }
  
  .hero__slide img {
    width: 100%;
    height: auto;
    display: block;
  }
  .bnn{
    margin-top: 10px;
    background-color: #F94E02;
    width: 35%;
    height: 35px;
    border-radius: 20px;
    /*padding: 6px 100px*/
    color: white;
    /*border:1px solid black;*/
    font-weight: 400;
    font-size: 20px;
}
    .bnn:hover{
        background-color: #ff570d;
        /*border:1px solid white;*/
    }
  .head-2{
      text-align:center;
  }

  
  /* Responsive styles */
@media (max-width: 768px) {
    
 .hero__slide .hero__content {
  
    left:41%;
  
  }
  .head-2 h5{
      font-size:35px;
  }
  .banner-heading{
     
     /*left:20%; */
     left:0%; 
    top: 38%;
     /*transform: translate(-50%, -50%); */
     transform: none;
    z-index: 11;
  }
  .bnn{
      height: 40px
  }
}

        /* Container */
        .blog-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* Header */
        .blog-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .blog-title {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(1.8rem, 5vw, 2.8rem);
            color: #2c3e50;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .blog-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #27ae60, #2ecc71);
        }
        
        .blog-subtitle {
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            color: #7f8c8d;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Blog Grid */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }
        
        /* Blog Cards */
        .blog-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 5px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        
        .blog-card:hover {
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        .card-image-container {
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 65%; /* Aspect ratio */
            overflow: hidden;
        }
        
        .card-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-bottom: 4px solid #27ae60;
        }
        
        .card-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .card-category {
            display: inline-block;
            background: #2ecc71;
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: bold;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            align-self: flex-start;
        }
        
        .card-title {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(1.2rem, 2vw, 1.5rem);
            color: #333333;
            margin-bottom: 12px;
            line-height: 1.3;
        }
        
        .card-excerpt {
            color: #7f8c8d;
            font-size: clamp(0.9rem, 1.5vw, 1rem);
            margin-bottom: 15px;
            flex-grow: 1;
        }
        
        .read-more {
            display: inline-flex;
            align-items: center;
            color: #f06f26;
            font-weight: bold;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }
        
        .read-more:hover {
            color: #ff7528;
        }
        
        .read-more:after {
            content: '→';
            margin-left: 8px;
            transition: transform 0.3s ease;
        }
        
        .read-more:hover:after {
            transform: translateX(5px);
        }
        
        /* Adventure Badge */
        .adventure-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: bold;
            z-index: 1;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .blog-grid {
                grid-template-columns: 1fr;
            }
            
            .blog-header {
                margin-bottom: 30px;
            }
            
            .card-content {
                padding: 15px;
            }
        }
        
        @media (max-width: 480px) {
            
            .blog-container {
                padding: 10px;
            }
            
            .blog-title {
                font-size: 1.5rem;
            }
            
            .blog-subtitle {
                font-size: 0.9rem;
            }
        }
        .ssty{
        color:var(--color-new-1);
    /*font-family: 'Dancing Script';*/
    font-weight: 900;
    }
    .loves-sec{
            /*margin-top: -15px;*/
    }
        
        .travel-section {
            width: 100%;
            display: flex;
            min-height: 100vh;
            background: #f9f9f9;
        }
        
        /* Image Section (50%) */
        .image-container {
            width: 50%;
            position: relative;
        }
        
        .image-container img {
            max-width: 90%;
            bottom: 0px;
            position: relative;
            margin-top: 130px;
            margin-left: 20px;
        }
        
        /* Content Section (50%) */
        .content-container {
            width: 50%;
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        /* Text Elements */
        .trust-text {
            font-size: 14px;
            color:#f94a00;
            font-weight: 600;
            letter-spacing: 2px;
            margin-bottom: 15px;
            text-transform: uppercase;
            width: 500px;
            max-width: 100%;
            margin-top: 40px;
        }
        
        .main-heading {
            font-size: 42px;
            font-weight: 700;
            color: #021a5f;
            margin-bottom: 18px;
            margin-top: 12px;
            line-height: 1.3;
            width: 100%;
        }
        
        .description {
            font-size: 16px;
            color: #7f8c8d;
            line-height: 1.8;
            margin-bottom: 44px;
            width: 100%;
        }
        
        .highlight-text {
            font-size: 15px;
            color: #f06c21;
            font-weight: 400;
            /* margin: 0px 0; */
            position: relative;
            padding-left: 20px;
            margin-bottom: 30px;
        }
        
        .highlight-text::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            height: 60%;
            width: 4px;
            background: #f94a00;
            border-radius: 2px;
        }
        
        /* Stats Boxes */
        .stats-container {
            display: flex;
            gap: 20px;
        }
        
        .stat-box {
            flex: 1;
            background: white;
            padding: 15px 10px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .stat-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        
        .stat-number {
            font-size: 36px;
            font-weight: 700;
            line-height: 40px;
            color:var(--color-new-1);
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }
        
        .stat-number::after {
            content: '+';
            position: absolute;
            right: -22px;
            top: 0;
            color:var(--color-new-1);
        }
        
        .stat-title {
            font-size: 14px;
            color: #7f8c8d;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Animation for numbers */
        @keyframes countUp {
            from { transform: translateY(20px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        
        .stat-number.animated {
            animation: countUp 1s ease-out forwards;
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .content-container {
                padding: 60px;
            }
        }
        
        @media (max-width: 992px) {
            .travel-section {
                flex-direction: column;
            }
            
            .image-container, 
            .content-container {
                width: 100%;
            }
            
            .image-container {
                height: 400px;
            }
            
            .content-container {
                padding: 60px 40px;
            }
        }
        
        @media (max-width: 768px) {
            .stats-container {
                flex-direction: column;
            }
            
            .main-heading {
                font-size: 36px;
            }
        }
        
        
    .tourbox-card {
      box-shadow: 0 0 5px #ddd;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid #e9ecef;
      transition: all 0.3s ease;
      height: 100%;
      background-color: #fff;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .tourbox-image-container {
      position: relative;
      overflow: hidden;
      aspect-ratio: 5/3;
    }

    .tourbox-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .tourbox-card:hover .tourbox-image {
      transform: scale(1.05);
    }

    .tourbox-discount {
      position: absolute;
      top: 15px;
      left: 0px;
      background-color: #dc3545;
      color: white;
      padding: 4px 12px;
      border-radius: 0 12px 12px 0;
      font-size: 14px;
      font-weight: 600;
      z-index: 2;
    }

    .tourbox-icon-btn {
      width: 32px;
      height: 32px;
      background: rgba(255, 255, 255, 0.9);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #333;
      transition: all 0.2s ease;
    }

    .tourbox-icon-btn:hover {
      background: #fff;
      color: #dc3545;
      transform: scale(1.1);
    }

    .tourbox-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 50%;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
      z-index: 1;
    }

    .tourbox-body {
      padding: 20px;
    }

    .tourbox-meta {
      display: flex;
      justify-content: space-between;
      margin-bottom: 15px;
    }

    .tourbox-rating {
      color: #ffc107;
      font-size: 14px;
    }

    .tourbox-days {
      color: #6c757d;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .tourbox-divider {
      border-top: 1px dashed #d5d5d5;
      margin: 10px 0;
    }

    .tourbox-location {
      font-size: 12px;
      color: #6c757d;
      margin-bottom: 5px;
    }

    .tourbox-title {
      font-weight: 600;
      font-size: 18px;
      margin-bottom: 5px;
      color: #212529;
    }

    .tourbox-price {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 5px;
      margin-top: 10px;
    }

    .tourbox-price-label {
      color: #000;
      font-size: 14px;
    }

    .tourbox-price-current {
      font-weight: 700;
      font-size: 18px;
      color: #EB662B;
    }

    .tourbox-price-old {
      text-decoration: line-through;
      color: #6c757d;
      font-size: 12px;
    }
    .extra i {
        color: #f06c21;
    }
    .extra p {
        color: #6c757d;
    }
    .tourbox-btn {
      display: inline-flex;
      align-items: center;
       padding: 4px 12px;
      gap: 8px;
       border-radius: 6px;
      color:#fff;
      /*background: linear-gradient(to right, #EB662B, #ff914d);*/
      background: linear-gradient(to right, #032b3d, #00a5f0);
      font-weight: 500;
      text-decoration: none;
      transition: color 0.2s ease;
    }
    .tourbox-btn:hover {
      color: #fff;
      box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
    }
    .tourbox-action-btns {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 15px;
    }
    .tourbox-whatsapp-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      /*background-color: #128C7E;*/
      background: linear-gradient(135deg, #25D366, #128C7E);
      color: white;
      padding: 4px 12px;
      border-radius: 6px;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.2s ease;
    }
    .tourbox-whatsapp-btn:hover {
      background-color: #0a6056;
      color: white;
    }
  
  .up-com{
      /*padding-bottom: 40px;*/
      padding: 30px 30px;
  }
  
  .upcoming h2{
      font-size:30px;
      padding-bottom: 20px;
     
  }
  .upcoming span{
       color: #f06c21;
    font-family: 'Dancing Script';
    font-weight: 900;
  }
  .upcoming {
     /*text-align: center;*/
  }
  .banner-ten-2 .category-size {
    /*width: 30%;*/
    font-size: 15px;
    color: white;
    font-weight: 100;
  }
 
      .trip-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.trip-card-img {
  width: 100%;
  height: 280px;
  /*height: auto;*/
  display: block;
  transition: transform 0.5s ease;
}

.trip-card:hover .trip-card-img {
  transform: scale(1.05);
}

.trip-card-overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  width: 100%;
  padding: 10px;
  text-align: center;
  transition: background 0.3s ease;
}

.trip-card:hover .trip-card-overlay {
  background: rgba(0, 0, 0, 0.8);
}
.trip-card:hover .trip-card-img {
  transform: scale(0.95);
}
.Soon{
        margin-top: 20px;
}
span.ssty{
   
}

        /* Base Styles */
        .travelx {
            padding: 30px 15px;
            box-sizing: border-box;
        }

        /* Container */
        .travelx-container {
            max-width: 1200px;
            margin: 0 auto;
            border-radius: 30px;
            overflow: hidden;
        }

        .travelx-container.travelx-section {
            background-image: url('../images/new-bg.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 30px 20px;
            border-radius: 30px;
        }

        /* Title */
        .travelx-title {
            text-align: center;
            font-size: 2.2rem;
            font-weight: bold;
            margin-bottom: 30px;
            color: #021A5F;
            line-height: 1.3;
        }

        .vibe {
            color: #f06c21;
            font-weight: 900;
        }

        /* Swiper Container */
        .swiper-container {
            width: 100%;
            padding: 20px 0 40px;
        }

        /* Card styling */
        .travelx-card {
            background: rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.25);
            overflow: hidden;
            text-align: center;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            cursor: pointer;
            margin: 0 auto;
            max-width: 280px;
        }

        .travelx-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            transition: all 0.4s ease;
            filter: blur(0.5px);
        }

        .travelx-card:hover img {
            filter: none;
        }

        .travelx-card h3 {
            font-size: 1.2rem;
            padding: 12px 10px;
            margin: 0;
            color: #021A5F;
            background-color: rgba(255, 255, 255, 0.82);
            transition: color 0.3s ease;
        }

        /* Hover effects */
        .travelx-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 16px 36px rgba(0, 0, 0, 0.15);
        }

        .travelx-card:hover h3 {
            color: #f06c21;
        }

        /* Swiper Pagination */
        .swiper-pagination {
            bottom: 10px !important;
        }

        .swiper-pagination-bullet {
            background: #021A5F;
            opacity: 0.5;
            width: 10px;
            height: 10px;
        }

        .swiper-pagination-bullet-active {
            background: #f06c21;
            opacity: 1;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .travelx-title {
                font-size: 2rem;
            }
            
            .travelx-card {
                max-width: 240px;
            }
            
            .travelx-card img {
                height: 160px;
            }
        }

        @media (max-width: 768px) {
            .travelx-container.travelx-section {
                padding: 20px 15px;
                border-radius: 20px;
            }
            
            .travelx-title {
                font-size: 1.8rem;
                margin-bottom: 25px;
            }
            
            .travelx-card {
                max-width: 220px;
            }
            
            .travelx-card img {
                height: 140px;
            }
            
            .travelx-card h3 {
                font-size: 1.1rem;
                padding: 10px;
            }
        }

        @media (max-width: 480px) {
            .banner-ten-2 .category-size {
                /*width: 38%;*/
                font-size: 11px;
            }
            .travelx {
                padding: 20px 10px;
            }
            
            .travelx-container.travelx-section {
                padding: 15px 10px;
                border-radius: 15px;
            }
            
            .travelx-title {
                font-size: 1.5rem;
                margin: 15px 0 20px;
            }
            
            .travelx-card {
                max-width: 400px;
            }
            
            .travelx-card img {
                height: 180px;
            }
            
            .swiper-pagination {
                bottom: 5px !important;
            }
        }
        .soon-2{
            margin-top: 28px;
    }
        /* Base Styles */
        :root {
            --primary: #6C63FF;
            --secondary: #FF6584;
        }
        
        .why-choose-us {
            padding: 30px 0;
            text-align: center;
        }
        
        .section-title {
            font-size: 2.8rem;
            margin-bottom: 60px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
        }
        
        /* 3D Floating Grid */
        .features-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .feature-card {
            width: 250px;
            padding: 40px 25px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 1;
        }
        
        .feature-card:hover {
            transform: translateY(-10px) scale(1.03);
          /*box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);*/
          /*box-shadow: 0 30px 70px rgba(235, 102, 43, 0.35);*/

        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(108,99,255,0.1) 0%, rgba(255,255,255,0) 70%);
            z-index: -1;
            transition: all 0.6s ease;
        }
        
        .feature-card:hover::before {
            transform: scale(1.2);
        }
        
        /* Icon Animation */
        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            color: white;
            /*background: linear-gradient(to right, #EB662B, #ff914d);*/
            background:linear-gradient(to right, #032b3d, #00a5f0);




        


            border-radius: 50%;
            /*box-shadow: 0 10px 30px rgba(108,99,255,0.3);*/
            position: relative;
            transition: all 0.5s ease;
        }
        
        .feature-card:hover .feature-icon {
            transform: rotateY(360deg) scale(1.1);
            /*box-shadow: 0 15px 40px rgba(108,99,255,0.4);*/
            box-shadow: 0 30px 70px rgba(235, 102, 43, 0.35);
        }
        
        .feature-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-weight: 600;
            color: #333;
        }
        
        .feature-desc {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #666;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2.2rem;
                margin-bottom: 40px;
            }
            
            .feature-card {
                width: 220px;
                padding: 30px 20px;
            }
        }
        
        @media (max-width: 480px) {
            .why-choose-us {
                padding: 30px 0;
            }
            
            .features-grid {
                gap: 20px;
            }
            
            .feature-card {
                width: 100%;
                max-width: 280px;
            }
        }

        /* Modern FAQ Styles */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .faq-title {
            text-align: center;
            font-size: 2rem;
            color: #2c3e50;
            margin-bottom: 2rem;
            position: relative;
        }

        .faq-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #6C63FF, #FF6584);
            margin: 10px auto 0;
            border-radius: 2px;
        }

        .faq-item {
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            margin-bottom: 1rem;
            overflow: hidden;
            border: 1px solid #e0e0e0;
        }

        .faq-question {
            padding: 1.2rem 1.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            color: #2c3e50;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: #f9f9f9;
        }

        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: #6C63FF;
            transition: transform 0.3s ease;
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            color: #555;
            line-height: 1.6;
            border-top: 1px solid transparent;
        }

        /* Active state */
        .faq-toggle {
            display: none;
        }

        .faq-toggle:checked + .faq-question {
            background: #f5f5ff;
        }

        .faq-toggle:checked + .faq-question::after {
            content: '-';
        }

        .faq-toggle:checked + .faq-question + .faq-answer {
            max-height: 300px;
            padding: 1rem 1.5rem 1.5rem;
            border-top-color: #eee;
        }

        /* Responsive without media queries */
        .faq-container {
            width: min(90%, 800px);
        }

        .faq-question {
            font-size: clamp(1rem, 2vw, 1.1rem);
            padding: clamp(1rem, 2vw, 1.2rem) clamp(1rem, 3vw, 1.5rem);
        }
  /* Base Styles */
  /*.testimonial-slider-container {*/

  /*  --primary-color: #4f46e5;*/
  /*  --secondary-color: #f8fafc;*/
  /*  --text-color: #334155;*/
  /*  --light-gray: #e2e8f0;*/
  /*  --white: #ffffff;*/
  /*  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);*/
  /*}*/

  .responsive-testimonial-slider {
    /*padding: 4rem 1rem;*/
    padding: 30px 30px;
    background-color: var(--secondary-color);
  }

  .stars-2 {
    color: #FFC631;
    font-size: 20px;
  }

  .g-logo img {
    width: 150px;
  }

  .container {
    /*max-width: 1200px;*/
    margin: 0 auto;
    padding: 0 15px;
    /*padding: 0 0px;*/
  }

  .section-heading {
    text-align: center;
    margin-bottom: 3rem;
  }

  .section-heading p {
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.875rem;
  }

  .section-heading h2 {
    color: var(--text-color);
    font-size: 2rem;
    margin-top: 0.5rem;
  }

  /* Slider Styles */
  .slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 40px;
  }

  .slider-track {
    display: flex;
    transition: transform 0.5s ease;
  }

  .testimonial-card {
    min-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .client-image {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .client-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: var(--shadow);
  }

  .testimonial-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
  }

  .quote-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    top: 25px;
    left: 93%;
    transform: translateX(-50%);
    background: var(--white);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
  }

  .feedback {
    font-style: italic;
    text-align: left;
    color: var(--text-color);
    line-height: 1.6;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .client-info h3 {
    color: var(--text-color);
    /*margin-bottom: 0.25rem;*/
    font-size: 1.125rem;
  }

  .client-info span {
    color: #64748b;
    font-size: 0.875rem;
  }

  /* Navigation */
  .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    box-shadow: var(--shadow);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    z-index: 10;
    transition: all 0.3s ease;
  }

  .slider-nav:hover {
    background: var(--primary-color);
    color: var(--white);
  }

  .prev-slide {
    left: 0;
  }

  .next-slide {
    right: 0;
  }

  /* Dots Indicator */
  .slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 0.5rem;
  }

  .slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--light-gray);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .slider-dots .dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
  }

  .stars {
    color: #FFC631;
  }

  .rating {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .certified i {

    color: #4285F4;
  }
  .nn{
      color:#F06C21;
      /*font-size:40px;*/
  }
  
  .rating span {
      margin-left: 10px;
  }

  /* Responsive Adjustments */
  @media (max-width: 480px) {
    .read-more-btn {
      font-size: 0.8rem;
      padding: 5px 12px;
    }

    .responsive-testimonial-slider {
      padding: 2rem 0.5rem;
    }

    .testimonial-content {
      padding: 1.5rem 1rem;
    }

    .feedback {
      font-size: 0.9375rem;
    }
  }

  @media (max-width: 360px) {
    .rating {
      font-size: 13px;
    }

  }

  /* -------- Extra small devices (max-width: 575px) -------- */
  @media (max-width: 575px) {
    .testimonial-card {
      flex: 0 0 100%;
      /* 1 card on mobile */
    }

    .slider-wrapper {
      padding: unset;
    }

    .rating {
      justify-content: space-around;
    }

    .feedback {
      text-align: center;
    }


    .client-image {
      margin-top: 15px
    }
  }

  /* -------- Medium devices (min-width: 768px) -------- */
  @media (min-width: 768px) {
    .testimonial-card {
      min-width: 50%;
      padding: 0 10px;
    }

    .section-heading h2 {
      /*font-size: 2.5rem;*/
      font-size: 40px;
    }

    .client-image img {
      width: 100px;
      height: 100px;
    }
  }

  /* -------- Between 768px to 991px -------- */
  @media (max-width: 991px) {
    .testimonial-card {
      flex: 0 0 50%;
      /* 2 cards on medium screen */
    }
  }

  /* -------- Large devices (min-width: 992px) -------- */
  @media (min-width: 992px) {
    .testimonial-card {
      min-width: 33.33%;
      /* 3 cards on large screen */
    }

    .slider-wrapper {
      padding: 0 60px;
    }

    .slider-nav {
      width: 50px;
      height: 50px;
    }
  }

  /* Optional: slider wrapper overflow */
  .slider-track-wrapper {
    overflow: hidden;
  }