body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.spacer {
    height: 30px; /* Adjust height as needed */
}


.packs-carousel-container {
    overflow-x: auto;
    margin-bottom: 40px;
    padding: 10px 0;
    position: relative;
}

.packs-carousel-items {
    display: flex;
    justify-content: center; /* Center in desktop */
    gap: 30px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    padding: 10px 0;
}

.packs-carousel-item {
    flex: 0 0 auto;
    width: 250px;
    scroll-snap-align: center;
    text-align: center;
}

.image-box {
    width: 250px;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.packs-name {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 500;
    color: darkblue;
}
@media (min-width: 769px) {
    .image-box:hover img {
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    .packs-carousel-items {
        justify-content: flex-start;
        gap: 15px;
        padding-left: 10px;
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;     /* Firefox */
    }

    .packs-carousel-items::-webkit-scrollbar {
        display: none;
    }

    .packs-carousel-item {
        width: 90vw;
        margin-right: 10px;
    }

    .image-box {
        width: 90%;
        height: auto;
        aspect-ratio: 5 / 4;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }

    .image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .carousel-dots {
        text-align: center;
        margin-top: 10px;
    }

    .carousel-dots .dot {
        display: inline-block;
        width: 10px;
        height: 10px;
        margin: 0 5px;
        background-color: #bbb;
        border-radius: 50%;
        transition: background-color 0.3s;
    }

    .carousel-dots .dot.active {
        background-color: #333;
    }
}



.estimate-quickbuy-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.estimate-generator-section,
.quick-buy-section {
  flex: 1 1 45%;
  background: none;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  width: 50%;
  height: 350px;
}


.price-list-image {
          max-width: 150px;
          max-height: 150px;
         
 
  
}

.estimate-generator-content p,
.quick-buy-section p {
  font-size: 18px;
  color: #555;
  margin-bottom: 15px;
}

.estimate-btn,
.quick-buy-btn {
  background-color: darkblue;
  color: white;
  padding: 12px 25px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s, color 0.3s;
}

.estimate-btn:hover,
.quick-buy-btn:hover {
  background-color: #DBDEE4;
  color: black;
}

@media (max-width: 768px) {
  .estimate-quickbuy-wrapper {
    flex-direction: column;
    padding: 20px 10px;
  }

  .estimate-generator-section,
  .quick-buy-section {
    flex: 1 1 100%;
    padding: 15px;
    width: 100%;
    height: 100%;
  }

 
  .estimate-generator-content p,
  .quick-buy-section p {
    font-size: 16px;
  }

  .estimate-btn,
  .quick-buy-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}



.running-container {
  width: 100%;
  height: 100px; /* Adjust the height to your preference */
  background-color: #fefefe;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  margin-top: 50px;
}

.running-text {
  font-family: 'Courier New', monospace;
  font-size: 2rem;
 
  color: white;
  white-space: nowrap;
 animation: changeColor 10s linear infinite;
 padding: 10px 20px;
 border-radius: 50px;
}
/* Updated keyframes for smooth animation */
@keyframes runningAnimation {
  0% {
    transform: translateX(100%); /* Start from the right */
  }
  
  
   100% {
    transform: translateX(-100%); /* Move to the left */
  }
}

@keyframes runningAnimation {
  0% {
    transform: translateX(100%); /* Start from the right */
  }
  100% {
    transform: translateX(-100%); /* Move to the left */
  }
}
/* Color changing animation */
@keyframes changeColor {
  0% {
    background: linear-gradient(90deg, #1a1a2e, #16213e, #0f4b5f, #1d6978);
  }
  25% {
    background: linear-gradient(90deg, #003366, #006699, #3399cc);
  }
  50% {
    background: linear-gradient(90deg, #ff6f61, #d43f00, #a83245);
  }
  75% {
    background: linear-gradient(90deg, #2e2c4e, #8e44ad, #c0392b);
  }
  100% {
    background: linear-gradient(90deg, #1a1a2e, #16213e, #0f4b5f, #1d6978);
  }
}

/* Mobile view adjustments */
@media (max-width: 768px) {
  .running-container {
    height: 80px; /* Adjust for smaller screens */
   
  }

  .running-text {
    font-size: 1.7rem; /* Smaller font size for mobile */
   
   
    
  }
  
  
}

@media (max-width: 480px) {
  .running-container {
    height: 70px; /* Further adjustment for smaller mobile screens */
     padding-top: 45px;
  }

  .running-text {
    font-size: 1.2rem; /* Even smaller font size */
   
  }
}










.elite-heading {
    font-size: 36px; /* Adjust size as needed */
    font-weight: normal;
    color: #C54513; /* Set text color */
    text-align: center; /* Center align the heading */
    margin: 50px 0; /* Add space above and below */
    font-family: 'Pacifico', cursive; 
    position: relative; /* Required for pseudo-elements */
    display: flex;
    align-items: center;
    justify-content: center;
   
}

.elite-heading::before,
.elite-heading::after {
    content: "";
    width: 100px;
    height: 2px; /* Thickness of the line */
    background-color: #C54513; /* Line color */
    margin: 0 15px; /* Space between line and text */
   
}

/* Mobile View */
@media (max-width: 768px) {
    
     .elite-heading {  
        font-size: 24px; /* Reduce font size for smaller screens */  
        margin: 30px 0; /* Adjust spacing */  
    }  
    .elite-heading::before,  
    .elite-heading::after { 
        width: 70px;
        height: 1.5px; /* Slightly thinner lines */  
        margin: 0 10px; /* Reduce space */  
    }  
    
}


.categories-container {
   
    margin-bottom: 40px;
    display: grid;
        grid-template-columns: repeat(6, 1fr); /* 2 cards per row */
        gap: 5px;
       
   
}

.category-item {

     width: 100%; /* Full width of the container */
     max-width: 150px;
        max-height: 150px;
        text-align: center;
        padding: 10px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Add shadow for better visibility */
        border-radius: 10px;
        background-color: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
       
}

.category-item a {
    text-decoration: none;
    color: inherit;
    
}


.category-image {
    width: 100px;
    height: 100px;
    background-size: cover;
    background-position: center;
    border-radius: 50%; /* Make the image circular */
    margin: 0 auto 10px auto;
    transition: filter 0.3s ease-in-out;
    filter: grayscale(100%) sepia(100%) hue-rotate(-10deg) saturate(500%) brightness(80%);
  
     
}




.category-item p {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width:100%;
    display: block;
    color: darkblue;
    
}


.hidden-categories {
    display: none;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.hidden-categories.show {
    display: block;
    opacity: 1;
    transform: translateX(0);
}




/* Mobile View */
@media (max-width: 768px) {
    
   
   .categories-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 2 cards per row */
        gap: 5px;
    }

    .category-item {
        width: 100%; /* Full width of the container */
        max-width: 120px;
        height: 120px;
        text-align: center;
        padding: 10px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Add shadow for better visibility */
        border-radius: 10px;
        background-color: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
    }

    .category-images {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
         gap: 5px;
        margin-bottom: 10px;
        
    }

    .category-image {
        width: 50px; /* Smaller size for two images */
        height: 50px;
        background-size: cover;
        background-position: center;
        border-radius: 50%; /* Circular images */
       
    }

    .category-item p {
        font-size: 10px;
        font-weight: 600;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
        display: block;
        margin-top: 5px;
    }
    .categories-container .category-item {
    display: none; /* Hide all items by default */
}

.categories-container .category-item:nth-child(-n+6) {
    display: block; /* Show only the first 6 items */
}
.hidden {
        display: none;
    }

    #viewMoreBtn {
        background-color: darkblue;
        color: white;
        padding: 10px;
        border: none;
        cursor: pointer;
        width: 30%;
        text-align: center;
        justify-content: center;
        font-size: 14px;
        margin-top: 5px;
        border-radius: 5px;
        display: block;
        margin-left: 130px;
        font-weight: bold;
    }
    

}
/* Hide the button on desktop view */
@media (min-width: 769px) {
    #viewMoreBtn {
        display: block !important;
        background-color: darkblue;
        color: white;
        padding: 10px;
        border: none;
        cursor: pointer;
        width: 10%;
        text-align: center;
        justify-content: center;
        align-items: center;
        font-size: 14px;
        margin-top: 5px;
        border-radius: 5px;
        font-weight: bold;
        margin-left: 45%;
      
    }
}



/* Styling the Price List Section */
.price-list-section {
    text-align: center;
    padding: 20px 20px;
    background-color: #f9f9f9; /* Light background */
    border-radius: 10px;
    margin-left: 20px;
   
    
    
   
}

/* Styling the description paragraph */
.price-list-section p {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    
}

/* Button Style */
.download-btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    background-color: darkblue;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s ease;
    max-height: 40px;
   
}

.download-btn:hover {
    background-color: lightgray;
    color: black;
}
.price-list-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
}
/* Responsive for mobile devices */
@media screen and (max-width: 480px) {
    .price-list-image {
        max-width: 200px; /* Smaller image on mobile */
        margin: 10px auto;
    }
}

/* Mobile view for Price List Section */
@media (max-width: 768px) {
    .price-list-section {
        padding: 30px 15px; /* Reduce padding for smaller screens */
        margin-right: 10px;
    }

    .price-list-section p {
        font-size: 16px; /* Slightly smaller font for readability */
    }

    .download-btn {
        padding: 10px 20px;
        font-size: 16px;
        width: 60%; /* Make button full width */
        text-align: center;
    }
}







.carousel {
    text-align: center;
    margin: auto;
    width: 100%;
    max-width: 800px;
    position: relative;
    justify-content: center;
  
    
}



.ellipse-container {
    position: relative;
    width: 800px; /* Ellipse width */
    height: 270px; /* Ellipse height */
    margin: auto;
    border-radius: 50%;
    margin-bottom: 100px;
  
  
   
}

.content {
     font-size: 14px;
     color: black;
     font-weight: normal;
}

.road-line {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 5px dashed gray; /* Dashed road effect */
    border-radius: 50%;
       margin-top: 50px;
    
}

.slides {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-top: 50px;
   
}

.slide {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    text-align: center;
    
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10%;
}


.highlight {
    background-color: #DBDEE4;
    border-radius: 10px;
    padding: 10px;
}


@media (max-width: 768px) {
  
  .carousel {
       display: none;
  }
  
 
}





 

/* Hide heading in system view */
@media (min-width: 768px) {
    .transport-heading {
        display: none;
    }
    
   .transport-slider {
         display: none;
    }
    
  
}

/* Mobile View Styling */
@media (max-width: 767px) {
    .transport-slider {
        position: relative;
        width: 100%;
        height: 200px;
        overflow: hidden;
        margin-bottom: 10px;
        display: flex;
    }

    .transport-slide {
        position: absolute;
        max-width: 100%;
        height: 100%;
        opacity: 0;
        transform: translateX(100%);
        transition: transform 1s ease-in-out, opacity 1s ease-in-out;
        text-align: center;
    }
    
    .transport-slide img {
        width: 100%;
        height: 100%;
        max-width: 150px;
        max-height: 150px;
        object-fit: cover;
        margin-left: 50px;
    }

    .transport-slide.active {
        opacity: 1;
        transform: translateX(0);
        
        
    }

    /* Content Styling */
    .transport-slide .content {
        position: absolute;
        bottom: 10px;
        left: 200px;
        transform: translateX(-50%);
        background: none;
        color: darkblue;
        padding: 8px 15px;
        border-radius: 5px;
        font-size: 18px;
        font-weight: bold;
        text-align: center;
        width: max-content;
    }
}





    
 /* Customer Reviews Carousel */

.customer-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 10px;
}
  h1 { 
    font-size: 24px;
    font-weight: bold;
    text-align: center;


}

.review-card {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
   
}

.review-content {
    font-size: 1.4em;
    font-weight: 500;
    font-style: italic;
    color: #555;
    margin-bottom: 10px;
}

.review-name {
    font-weight: bold;
    color: darkblue;
    font-size: 16px;
}
.review-rating {
        font-size: 16px;
        font-weight: bold;
        color: #333;
        margin-bottom: 5px;
    }
    .review-stars {
        color: #FFD700; /* Gold color for stars */
        font-size: 20px;
        margin-bottom: 10px;
    }
.review-link {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 15px;
    background: darkblue;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
}
.review-link:hover {
    background: lightgray;
    color: black;
}




/* Responsive styles for smaller screens */
@media (max-width: 768px) {
    
    .customer-carousel {
        padding: 10px 10px;
    }
    
.review-card {
        padding: 10px;
    }
.review-image {
        width: 60px;
        height: 60px;
    }
 .review-content {
        font-size: 1em;
    }
.review-link {
        font-size: 0.9em;
        padding: 5px 10px;
    }
     h1 { 
    font-size: 16px;
    font-weight: bold;
    text-align: center;


}
}

@media (max-width: 480px) {
    .review-content {
        font-size: 0.9em;
    }
.review-name {
        font-size: 0.9em;
    }
.review-link {
        font-size: 0.85em;
        padding: 4px 8px;
    }
     h1 { 
    font-size: 14px;
    font-weight: bold;
    text-align: center;
         
     }
    
}





/* Why choose section */
.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
  
 
   
}

#why-choose-us {
   background-color: none;
    padding: 20px 0;
    border-radius: 25px;
   
}

#why-choose-us h2 {
    text-align: center;
    font-size: 24px;
    margin: 10px 0;
    color: #333;
    margin-top: -30px;
}

/* Cards Layout */
.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.card {
    width: 48%;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* Hover Effect */
.card:hover {
    transform: translateY(-10px); /* Lift the card up */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Enhanced shadow */
}

.card h3 {
    font-size: 24px;
    margin: 20px 0;
    color: darkblue;
}

.card p {
    font-size: 16px;
    color: #555;
}

.icon {
    font-size: 40px;
    color: #f39c12;
    margin-bottom: 20px;
}
/* Media Query for Mobile Devices */
@media (max-width: 768px) {
    .container {
        width: 95%; /* Make it full-width */
        padding: 10px;
    }

    .cards {
        flex-direction: column; /* Stack cards vertically */
        align-items: center;
    }

    .card {
        width: 90%; /* Make cards take more width */
        height: auto;
        padding: 15px;
    }

    .icon {
        font-size: 25px; /* Proper icon size */
        margin-bottom: 10px;
    }

    .card h3 {
        font-size: 16px;
    }

    .card p {
        font-size: 14px;
    }
}



    
/* Styling for the video preview section */
.video-preview-container {
    text-align: center;
    padding: 20px;
    background-color:  #f8f9fa;  /* Background color for the preview section */
    border-radius: 10px;
    margin: 20px 0;
    margin-bottom: 40px;
    width: 85%;
  margin-left: 100px;
  
}

.video-preview-container h2 {
    font-size: 24px;
    text-align: center;
    color: #333;
    margin: 30px 0;
}
.video-preview-container p {
    font-size: 15px; 
    color: #555; 
    font-family: Arial, sans-serif; 
    margin-top: 10px; 
    text-align: center; 
}

.video-preview {
    display: inline-block;
    margin-bottom: 15px;
}

.thumbnail {
    width: 300px;  /* Adjust size of the thumbnail */
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
    
}

.arrow-link {
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    background-color: darkblue;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    margin-left: 10px;
}

.arrow-link:hover {
    background-color: lightgray;
    color: black;
}

.arrow-link:after {
    content: " →";
}
/* Mobile view adjustments */
@media (max-width: 600px) {
.video-preview-container {
        padding: 10px;
        margin-left: 30px;
        margin-right: 10px;
        margin-bottom: 20px;
    }

    .video-preview-container h2 {
        font-size: 16px;  /* Slightly bigger for readability */
        margin: 15px 0;
    }

    .video-preview-container p {
        font-size: 14px;
    }

    .thumbnail {
        width: 90%;  /* Make the thumbnail responsive */
        height: auto;  /* Maintain aspect ratio */
        max-width: 150px;  /* Ensure it's not too large */
        display: block;  
        margin: 0 auto;  /* Center the thumbnail */
    }

    .arrow-link {
        font-size: 12px;
        padding: 8px 15px;
        height: 40px;
        border-radius: 10px;
        align-items: center;
        margin-left: -140px;
        margin-top: 10px;
        
    }

}


/* Customer support */
.customer-support {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    background-color: #f9f9f9;
    max-width: 100%;
    margin: 50px auto;
    border-radius: 10px;
    margin-bottom: 40px;
    width: 85%;
}

.support-image {
    flex: 1;
    padding: 20px;
}

.support-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
}

.support-content {
    flex: 2;
    padding: 20px;
    text-align: left;
}

.support-content h2 {
    color: #333;
    margin: 30px 0;
    font-size: 23px;
   
}

.support-content p {
    color: #666;
    line-height: 1.7;
    font-size: 18px;
}


/* Clickable Links */
.support-link {
    text-decoration: none;
    color: darkblue;
    font-weight: bold;
    
}

.support-link:hover {
    text-decoration: underline;
}

/* Mobile View - Adjust layout for smaller screens */
@media screen and (max-width: 768px) {
    .customer-support {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .support-image, .support-content {
        flex: none;
        width: 100%;
        padding: 10px;
    }
    .support-content h2 {
    color: #333;
    margin: 20px 0;
    font-size: 14px;
     text-align: center;
   
    }

    .support-content {
        text-align: center;
    }

    .support-image img {
        max-width: 250px;
    }
}





/* =========================
   SOCIAL MEDIA SECTION
========================= */


/* Container */
.whatsapp-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    padding: 20px;
    flex-wrap: nowrap;
      background: #fff;
}

/* Individual Block */
.social-block {
  
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Icon */
.social-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
}

/* Heading */
.social-block h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: center;
}

/* Content */
.social-block p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

/* Button */
.social-button {
    margin-top: auto;
    padding: 10px 18px;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.3s;
}

/* Button Colors */
.whatsapp-button { background-color: #25D366; }
.youtube-button { background-color: #FF0000; }
.instagram-button { background-color: #C13584; }

.social-button:hover {
    opacity: 0.85;
}


@media (max-width: 768px) {

    .whatsapp-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .social-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .social-icon {
        order: 1;
        margin-bottom: 12px;
    }

    .social-block h2 {
        order: 2;
        margin-bottom: 8px;
        margin-top: 10px !important;
    }

    .social-block p {
        order: 3;
        margin-bottom: 15px;
    }

    .social-button {
        order: 4;
        margin-top: auto;
    }

}




