/* Dropdown Styling */
.job-dropdown {
    min-width: 200px; /* Set a minimum width for the dropdown */
    max-width: 300px; /* Optional: Add max-width to prevent it from getting too wide */
    position: absolute;
    z-index: 1050;
    left: 0; /* Adjust position relative to the parent container */
    top: 100%; /* Position the dropdown directly below the parent link */
    padding: 10px; /* Add padding for better spacing */
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for better visibility */
    background-color: #fff; /* White background for dropdown */
}

/* Prevent Text Wrapping */
.job-dropdown ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.job-dropdown li {
    padding: 5px 0; /* Add vertical spacing between items */
    white-space: nowrap; /* Prevent text wrapping */
}

.job-dropdown a {
    color: #007bff;
    text-decoration: none; /* Remove underline from links */
    display: block; /* Make links take full width for better clicking area */
    padding: 5px 10px; /* Add padding for better usability */
}

.job-dropdown a:hover {
    background-color: #f8f9fa; /* Add hover effect for better UX */
    color: #0056b3; /* Darker blue on hover */
}

@media (max-width: 576px) {
    .job-dropdown {
        width: 100%; /* Full width on small screens */
        left: 0; /* Align to the left edge */
    }
}

/************************* Basic Styles for the Carousel ************************/
.image-carousel {
    position: relative;
    width: 100%; /* Full width of the container */
    height: 600px; /* Default height for desktop */
    overflow: hidden; /* Prevents images from overflowing */
  }
  
  .carousel-slides {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
  }
  
  .slide {
    flex: 0 0 100%; /* Each slide takes up 100% of the width */
    height: 100%; /* Ensures that images fill the height of the container */
  }
  
  .slide img {
    width: 100%; /* Ensure the image fills the width of the slide */
    height: 100%; /* Ensure the image fills the height of the slide */
    object-fit: contain; /* Ensure the entire image is visible, without cropping */
    display: block; /* Removes any unwanted space beneath the image */
    background-color: #000; /* Add a background color in case of empty spaces */
  }
  
  /* Dot Navigation Styles */
  .carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 1; /* Ensures dots are visible on top of images */
  }
  
  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .dot.active {
    background-color: rgba(255, 255, 255, 1);
  }
  
  /* Media Queries for Responsiveness */
  
  /* Tablet Screens (Max width 768px) */
  @media (max-width: 768px) {
    .image-carousel {
      height: 350px; /* Adjust height for tablets */
    }
  
    .carousel-dots {
      bottom: 8px; /* Adjust dot position for smaller screens */
    }
  }
  
  /* Mobile Screens (Max width 480px) */
  @media (max-width: 480px) {
    .image-carousel {
      height: 250px; /* Adjust height for mobile */
    }
  
    .carousel-dots {
      bottom: 6px; /* Adjust dot position for mobile screens */
    }
  }


  /*******************************Card Offer*****************************************************/
  .offer-heading h2 {
    font-size: 2.5rem; /* Make the main heading larger */
    font-weight: bold;
    color: #333; /* Dark text color */
    margin-bottom: 15px; /* Space below the heading */
    text-align: center; /* Center the heading */
  }
  
  .offer-heading .offer-subheading {
    font-size: 1.2rem; /* Smaller text for the subheading */
    color: #555; /* Slightly lighter text color */
    margin-bottom: 40px; /* Add space below the subheading */
    text-align: center; /* Center the subheading */
  }
  
  .offer-heading h2, .offer-heading p {
    max-width: 800px; /* Limit the width of the text */
    margin: 0 auto; /* Center the text horizontally */
  }  
  

  /* Offer Cards Container */
.offer-cards-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
  }
  
  /* Offer Card */
  .offer-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
  }
  
  .offer-card:hover {
    transform: translateY(-10px); /* Hover effect */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .offer-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .offer-card-content {
    padding: 20px;
  }
  
  .offer-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
  }
  
  .offer-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
  }
  
  .price {
    font-size: 2rem;
    color: #ff8c00; /* Orange color for the price */
    margin-bottom: 15px;
  }
  
  .list-unstyled {
    padding-left: 0;
    margin-bottom: 20px;
  }
  
  .list-unstyled li {
    font-size: 0.9rem;
    color: #777;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .list-unstyled li span {
    color: red;
    margin-right: 5px;
  }
  
  .apply-button {
    font-size: 1.2rem;
    padding: 10px 20px;
    background-color: #007bff; /* Blue color */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    width: 100%;
    text-align: center;
  }
  
  .apply-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
    text-decoration: none;
  }
  
  /* Media Query for Mobile */
  @media (max-width: 768px) {
    .offer-cards-container {
      gap: 15px;
      flex-direction: column;
      align-items: center;
    }
  
    .offer-card {
      width: 100%;
      max-width: 350px;
    }
  }
  

  /**************************Timer*****************************************/
/* Timer Section */
.timer-container {
    background: #e8be62 !important; /* Purple background */
    padding: 60px 20px;
    border-radius: 20px; /* Rounded corners */
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.brand-title {
    font-size: 2.8em;
    color: #2c3e50;
    font-weight: bold;s
    text-transform: uppercase;
    margin-bottom: 20px;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.timer-box {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    width: 120px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Small shadow */
}

.timer-box div {
    font-size: 3.5em;
    font-weight: bold;
    color: #e74c3c;
}

.timer-box span {
    font-size: 1.1em;
    color: #34495e;
    margin-top: 5px;
    display: block;
}

/* Mobile View */
@media (max-width: 768px) {
    .timer {
        gap: 20px;
    }

    .timer-box {
        width: 100px;
        padding: 15px;
    }

    .timer-box div {
        font-size: 3em;
    }

    .timer-box span {
        font-size: 1em;
    }
}

/* Tablet and Smaller Screens */
@media (max-width: 480px) {
    .timer {
        flex-direction: column;
        gap: 10px;
    }

    .timer-box {
        width: 80px;
        padding: 10px;
    }

    .timer-box div {
        font-size: 2.5em;
    }

    .timer-box span {
        font-size: 0.9em;
    }

    .brand-title {
        font-size: 2.2em;
    }
}

/********************Top Companies******************************
/* Section Styling */
#patnerssec {
    background-color: #f9f9f9; /* Subtle background color */
}

#patnerssec h2 {
    font-size: 2rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Logo Slider */
.logo-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.company-logo {
    max-width: 150px;
    max-height: 100px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-logo:hover {
    transform: scale(1.1); /* Slight zoom on hover */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Add a shadow effect */
}

/* Responsive Design */
@media (max-width: 768px) {
    .company-logo {
        max-width: 120px;
        max-height: 80px;
    }
}

@media (max-width: 576px) {
    .company-logo {
        max-width: 100px;
        max-height: 60px;
    }
}

/******************* About Us Section Styling ********************/
#aboutus {
    background-color: #f8f9fa; /* Light background for the section */
    padding-top: 60px; /* Extra padding for top */
    padding-bottom: 60px; /* Extra padding for bottom */
}

.about-us .card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Soft shadow around the card */
    background-color: white;
    transition: transform 0.3s ease-in-out;
}

.about-us .card:hover {
    transform: translateY(-5px); /* Slight lift effect on hover */
}

.about-us .card-body {
    text-align: center; /* Center the text */
    padding: 40px 30px; /* Add padding for spacing */
}

.about-us h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #343a40; /* Dark text color */
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.about-us p.lead {
    font-size: 1.2rem;
    font-weight: 400;
    color: #495057;
    margin-bottom: 20px;
}

.about-us p.text-muted {
    font-size: 1rem;
    font-weight: 300;
    color: #6c757d; /* Lighter text color */
}

@media (max-width: 768px) {
    #aboutus {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .about-us .card-body {
        padding: 30px 20px;
    }

    .about-us h2 {
        font-size: 1.8rem;
    }

    .about-us p.lead {
        font-size: 1.1rem;
    }
}

/******************* Whatsapp Icon and Chat Popup Styling ********************/
.whatsapp-icon {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: #25D366; /* WhatsApp green color */
    border-radius: 40%;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 9999;
    transition: transform 0.3s ease;
}

.whatsapp-icon:hover {
    transform: scale(1.1); /* Slightly enlarge on hover */
}

.whatsapp-icon a {
    color: white;
    font-size: 28px;
    text-decoration: none;
}

/* Style for the WhatsApp Chat Popup */
.whatsapp-chat-popup {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    max-height: 450px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: none; /* Initially hidden */
    z-index: 9998;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

/* Header of the chat popup */
.whatsapp-chat-header {
    background-color: #25D366;
    padding: 12px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whatsapp-chat-header .chat-title {
    flex-grow: 1;
}

.whatsapp-chat-header .close-popup {
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
}

/* Body of the chat popup */
.whatsapp-chat-body {
    padding: 10px;
    max-height: 320px;
    overflow-y: auto;
}

.whatsapp-chat-body .message {
    margin-bottom: 15px;
}

.whatsapp-chat-body .sender {
    font-weight: bold;
    color: #007b5e;
}

.whatsapp-chat-body .time {
    font-size: 12px;
    color: #777;
}

/* Footer with Start Chat button */
.whatsapp-chat-footer {
    padding: 10px;
    background-color: #f1f1f1;
    display: flex;
    justify-content: center;
}

.whatsapp-chat-footer .start-chat-button {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
}

.whatsapp-chat-footer .start-chat-button:hover {
    background-color: #128C7E; /* Darker WhatsApp green on hover */
}

.whatsapp-chat-footer .start-chat-button i {
    font-size: 18px;
}

/* Adjustments for smaller screens */
@media (max-width: 768px) {
    .whatsapp-chat-popup {
        width: 250px;
        bottom: 70px;
    }

    .whatsapp-icon {
        padding: 12px;
    }

    .whatsapp-chat-footer .start-chat-button {
        font-size: 14px;
        padding: 8px 12px;
    }
}

/******************Free Rer*********************/
/* Styling for the section */
#file-upload-section {
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0; /* Adds minimal padding at the top and bottom */
    background-color: #f9f9f9;
}


/* Styling for the upload box */
.upload-box {
    border: 2px dashed #d1d1d1;
    border-radius: 10px;
    background-color: #fff;
    text-align: center;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Styling for the upload icon */
.upload-icon img {
    width: 50px;
    margin-bottom: 10px;
}

/* General text styling inside the upload box */
.upload-box p {
    margin: 5px 0;
    color: #555;
}

/* Styling for the browse link */
.browse-link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}

.browse-link:hover {
    text-decoration: underline;
}

/* Styling for the file size text */
.file-size {
    font-size: 0.9em;
    color: #888;
}

/* Styling for the heading */
.upload-heading {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px; /* Slightly reduce space below the heading */
}

/* Styling for the submit button */
.submit-button {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.submit-button:hover {
    background-color: #0056b3;
}

/* Styling for the displayed file name */
.file-name {
    margin-top: 10px;
    font-size: 1rem;
    color: #f228ef !important;
    font-style: italic;
}

/* Popup styling */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    padding: 20px;
    text-align: center;
    z-index: 1000;
}

.popup p {
    margin: 10px 0;
    color: #333;
    font-size: 1rem;
}

/* Close button styling */
.popup button {
    margin-top: 10px;
    padding: 5px 10px;
    border: none;
    background-color: #007bff;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.popup button:hover {
    background-color: #0056b3;
}

/* Overlay styling */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* Upload Container Styles */
.upload-container {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #e49827;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

.upload-container h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

/* Form Group Styles */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #555;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}


/**********************FAQ**********************************/
.faq-section {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.faq {
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.faq-title {
    font-size: 18px;
    color: #007BFF;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 10px 0;
    transition: color 0.3s;
}

.faq-title:hover {
    color: #0056b3;
}

.arrow {
    font-size: 14px;
    transition: transform 0.3s;
}

.faq-title.open .arrow {
    transform: rotate(180deg);
}

.faq-content {
    display: none;
    margin-top: 10px;
    color: #555;
}

.faq-content p, .faq-content ul {
    margin: 0 0 10px 20px;
    padding: 0;
}

.faq-content ul {
    list-style-type: disc;
}


/************************* General styles for the testimonials**********************/

/* General Styling */
#testimonialssec {
    background-color: #f9f9f9;
}

.testimonial-card {
    width: auto; /* Width of the card */
    height: auto; /* Auto height to adjust based on content */
    background: #fff; /* White background for contrast */
    border: 1px solid #ddd; /* Light border */
    border-radius: 10px; /* Rounded corners for a modern look */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    padding: 20px; /* Internal padding for spacing */
    text-align: center; /* Centered text */
    margin: 10px; /* Spacing between cards */
}


.testimonial-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

.testimonial-rating {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffa41b;
}

.testimonial-image {
    width: 5px; /* Width for passport-size photo */
    height: 5px; /* Height for passport-size photo */
    border-radius: 10%; /* Circular shape */
    object-fit: cover; /* Ensures the image fills the shape without distortion */
    border: 2px solid #ffa41b; /* Optional: Border for visibility */
    margin-bottom: 10px; /* Space below the image */
}


.testimonial-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-top: 0.5rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #000000; /* Golden background */
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 20px;
    }

    .testimonial-card p {
        font-size: 0.9rem;
    }

    .testimonial-rating {
        font-size: 1rem;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 25px;
        height: 25px;
    }
}


/**********************small timer********************************/
/* Enlarged Rectangular Timer - Fully Centered */
.small-timer {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    margin: 10px auto; /* Ensures horizontal centering inside the parent */
    padding: 10px 20px; /* Spacious padding for a bigger look */
    background-color: #03475e; /* Bright green background */
    color: #fff; /* White text for contrast */
    border-radius: 8px; /* Smooth rounded corners */
    font-family: 'Arial', sans-serif; /* Clean, modern font */
    font-size: 1.5em; /* Large font size for emphasis */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Prominent shadow for depth */
    width: fit-content; /* Adjust width to content size */
    text-align: center; /* Align text centrally */
}

/* Parent container for proper vertical centering */
.offer-card-content {
    display: flex;
    flex-direction: column; /* Stack content vertically */
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
}

/* Time Value Styling */
.small-timer span.time-value {
    font-weight: bold; /* Bold numbers for visibility */
    margin: 0 4px; /* Spacing between time units */
}

/* Label Styling */
.small-timer span.time-label {
    font-size: 0.7em; /* Slightly smaller than time value */
    color: #c8e6c9; /* Subtle light green for labels */
    text-transform: uppercase; /* Uniform text styling */
    letter-spacing: 1px; /* Adds spacing for readability */
    margin-top: 4px; /* Space above label */
}

/**********************Job********************************/
/* General Styling */
#we-support {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out;  /* Fade-in from bottom */
}

#we-support h2 {
    font-size: 2.5rem;
    color: #070707;
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    animation: slideInFromLeft 1s ease-out;  /* Slide-in from left */
}

.we-support-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    table-layout: auto;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    animation: fadeIn 1s ease-out; /* Fade-in effect for the table */
}

.we-support-table th,
.we-support-table td {
    padding: 20px 25px;
    text-align: left;
    font-size: 1.1rem;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    transition: all 0.3s ease-in-out;
}

/* Styling for table headers */
.we-support-table th {
    background-color: #FF7F50;
    color: rgb(6, 6, 6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Hover effect for table rows */
.we-support-table tr:hover {
    background-color: #f0f0f0;
    transform: translateX(5px);  /* Slide right effect on hover */
}

/* Hover effect on individual cells */
.we-support-table th:hover, 
.we-support-table td:hover {
    background-color: #fff;
    transform: translateY(-5px);  /* Slight lift on hover */
}

/* Cell decorative underline animation */
.we-support-table th:after,
.we-support-table td:after {
    content: '';
    position: absolute;
    background-color: #010101;
    height: 3px;
    width: 0%;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.we-support-table th:hover:after,
.we-support-table td:hover:after {
    width: 100%;  /* Underline effect */
}

/* Responsive Design */
@media (max-width: 1200px) {
    #we-support h2 {
        font-size: 2rem;
    }

    .we-support-table th, .we-support-table td {
        font-size: 1rem;
        padding: 15px 18px;
    }
}

@media (max-width: 768px) {
    #we-support h2 {
        font-size: 1.7rem;
    }

    .we-support-table th, .we-support-table td {
        font-size: 0.95rem;
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    #we-support h2 {
        font-size: 1.3rem;
    }

    .we-support-table th, .we-support-table td {
        font-size: 0.85rem;
        padding: 10px 14px;
    }
}

/* Animations */

/* Fade-in effect */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Fade-in from bottom */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide-in from left (for header) */
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hover Slide-in from left for table */
@keyframes hoverSlideInLeft {
    0% {
        transform: translateX(-10px);
    }
    100% {
        transform: translateX(0);
    }
}

/* Smooth slide-up for rows on hover */
@keyframes hoverRowSlideUp {
    0% {
        transform: translateY(5px);
        opacity: 0.8;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Table Wrapper */
.table-responsive {
    width: 100%;
    overflow-x: auto; /* Enable horizontal scrolling if needed */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on mobile devices */
    margin: 0 auto; /* Center the table container */
}

/* Minimum width for the table to ensure proper layout */
.we-support-table {
    min-width: 600px; /* Set a minimum width to avoid breaking layout */
}

/* Adjustments for Small Screens */
@media (max-width: 480px) {
    .we-support-table th, .we-support-table td {
        font-size: 0.8rem; /* Reduce font size for smaller screens */
        padding: 8px 10px; /* Adjust padding for compact layout */
    }
}


/*********************************Stlye for slots********************************/
/* Slots Available Section Styling */
.slots-available {
    text-align: center; /* Center the content */
    font-size: 1.2em; /* Set base font size */
    font-weight: normal; /* Normal weight for text */
    color: #333; /* Set text color to a neutral dark */
    margin: 15px 0; /* Add margin for spacing around the section */
  }
  
  /* Styling for the slot number */
  .slots-available span {
    font-weight: bold; /* Make the slot number bold */
    font-size: 1.5em; /* Increase font size for the slot number */
    color: #28a745; /* Green color for available slots */
    padding: 0 10px; /* Add padding around the number */
    border-radius: 5px; /* Slightly rounded corners for the number */
    background-color: #f1fdf0; /* Light green background for slot number */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); /* Add a light shadow for depth */
  }
  
  /* For low slots (dynamic class) */
  .slots-available span.low-slots {
    color: #dc3545; /* Red color for low slots */
    background-color: #f8d7da; /* Light red background */
    animation: pulse 1.5s infinite; /* Add pulse effect for emphasis */
  }
  
  /* Pulse Animation for Low Slots */
  @keyframes pulse {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.1);
      opacity: 0.8;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
    








  


