/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}


body {
    font-family: 'Arial', sans-serif;
    /* Light background for contrast */
}

/* Navbar Styles */
.navbar {
    background-color: white; /* Dark background for contrast */
    color: #f1c40f; /* Elegant goldenrod color */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.navbar:hover {
    background-color: white; /* Slightly darker on hover */
}

.navbar .logo img {
    width: 120px;
    height: auto;
}

.navbar-links ul {
    list-style-type: none;
    display: flex;
    gap: 20px;
}

.navbar-links a {
    text-decoration: none;
    color: black;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.navbar-links a:hover {
    color: #ecf0f1; /* Slightly lighter color on hover */
}

.navbar .icons a {
    margin-left: 15px;
    color: #f1c40f;
    transition: color 0.3s ease;
    text-decoration: none;
}

.navbar .icons img {
    width: 28px;
    height: auto;
}

.navbar .icons a:hover {
    color: #ecf0f1; /* Light hover color */
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    height: 21px;
    cursor: pointer;
    z-index: 100;
}

.hamburger-menu span {
    width: 30px;
    height: 3px;
    background-color: #4f87a1; /* Goldenrod color */
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Hamburger active state */
.hamburger-menu.open span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
    transform-origin: left center;
}

.hamburger-menu.open span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.open span:nth-child(3) {
    transform:translateY(-4px) rotate(-45deg);
    transform-origin: left center;
}

@media (max-width: 768px) {
    .navbar-links ul {
        display: none;
        
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        background-color: white; /*  dark background for better visibility */
        position: fixed;
        top: 0;
        right: -250px; /* Initially positioned off-screen */
        width: 250px; /* Fixed width for the menu */
        height: 100vh; /* Full height */
        z-index: 100;
        transform: translateX(100%);
        transition: transform 0.3s ease, right 0.3s ease; /* Smooth transition */
        box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
    }

    .navbar-links.active ul {
        display: flex;
        transform: translateX(0); /* Move the menu into view */
        right: 0; /* Menu slides in from the right */
    }

    .hamburger-menu {
        display: flex;
        z-index: 200;
    }

    /* Larger Hamburger on click */
    .hamburger-menu.open {
        transform: rotate(180deg);
    }
}
.cart-icon{
    position: relative; /* Make this the reference point for the cart count */
    display: inline-block; /* Or block, depending on your layout */
}

#cart-count {
    font-size: 12px; /* Smaller font size */
    font-weight: bold; /* Make the count bold */
    color: #ffffff; /* Text color */
    background-color: #f44336; /* Background color for the count (red) */
    padding: 3px 8px; /* Reduced padding around the count */
    border-radius: 50%; /* Make it a circular shape */
    position: absolute; /* Position relative to the cart icon container */
    top: -5px; /* Move the count slightly above */
    right: -5px; /* Adjust to position it slightly to the right */
    min-width: 20px; /* Ensure the circle has a minimum width */
    min-height: 20px; /* Ensure the circle has a minimum height */
    display: flex;
    justify-content: center;
    align-items: center;
}



/* Search Bar Styles for blood test*/
.search-container {
    display: flex;
    flex-wrap: nowrap; /* Prevent wrapping */
    align-items: center;
    background-color: white;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 600px;
    width: 100%;
    transition: all 0.3s ease;
    padding: 15px;
    margin: 60px 0 0 0;
}

.lab-selection-wrapper {
    flex: 0 1 120px; /* Slightly wider to improve visibility */
    padding: 10px;
}

#lab-selection {
    background-color: #00bcd4; /* Teal color for contrast */
    color: white;
    border: none;
    font-size: 14px; /* Increased font size for better readability */
    padding: 10px;
    outline: none;
    cursor: pointer;
    border-radius: 5px;
    width: 50%;
    transition: background-color 0.3s ease;
}

#lab-selection:focus {
    border: 2px solid #008c91; /* Slightly darker teal on focus */
}

.search-bar-wrapper {
    flex: 1; /* Take remaining space */
    display: flex;
    align-items: center;
    padding: 10px;
}

#search-bar {
    flex-grow: 1;
    border: 2px solid #e0e0e0; /* Soft border for visibility */
    padding: 12px 20px;
    outline: none;
    font-size: 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
    width: 100%;
}

#search-bar::placeholder {
    color: #888; /* Light grey for the placeholder */
}

#search-bar:focus {
    border-bottom: 2px solid #00bcd4; /* Teal border on focus */
}

.search-button {
    background-color: #00bcd4; /* Matching teal for consistency */
    color: white;
    padding: 10px 14px;  /* Slightly increased padding */
    border: none;
    cursor: pointer;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.search-button i {
    font-size: 16px; /* Increased icon size for visibility */
}

.search-button:hover {
    background-color: #008c91; /* Darker teal on hover */
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {
    .search-container {
        flex-direction: row; /* Keep it on a single line */
        max-width: 100%;
        padding: 10px;
    }

    .lab-selection-wrapper,
    .search-bar-wrapper {
        width: auto; /* Let it adjust based on content */
    }

    #search-bar,
    #lab-selection {
        width: 100%;
    }

    .search-button {
        padding: 12px; /* Slightly more padding for mobile */
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .lab-selection-wrapper,
    .search-bar-wrapper {
        padding: 8px;
    }

    #search-bar {
        font-size: 14px;
        padding: 10px;
    }

    .search-button {
        font-size: 16px;
        padding: 12px;
    }
}


/* Search Results */
.search-results {
    display: none;
    background: #c9e4ca;
    position: relative; /* Change position to relative for alignment below the search bar */
    width: 90%;
    max-width: 480px;
    padding: 15px;
    z-index: 999;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    transition: opacity 0.3s ease, transform 0.3s ease-in-out;
    margin-top: 5px; /* Adds space between the search bar and results */
    margin-left: auto;  /* Centers horizontally */
    margin-right: auto; /* Centers horizontally */
}

.search-results.show {
    display: block;
    opacity: 1;
    transform: scale(1);
}
.search-results .result {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 18px;
    color: black;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Roboto', sans-serif;
    transition: background-color 0.2s ease, transform 0.2s ease-in-out;
}

.search-results .result:last-child {
    border-bottom: none;
}

.search-results .result button {
    background-color: #ff9e00;
    color: white;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 30px;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.search-results .result button:hover {
    background-color: #ff5f00;
    transform: translateY(-3px);
}

.search-results .result button:active {
    background-color: #ff4500;
    transform: translateY(0);
}

/* Added hover effect to results for interactivity */
.search-results .result:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

/* Focus styles for accessibility */
.search-results .result button:focus {
    outline: 3px solid #ff9e00;
}

/* Improve typography and readability for mobile */
@media (max-width: 480px) {
    .search-results .result {
        font-size: 16px;
        padding: 10px 0;
    }

    .search-results .result button {
        font-size: 13px;
        padding: 6px 12px;
    }
}

/* Cart Popup */
/* Default styles for the cart popup */
.cart-popup {
  display: none; /* Initially hidden */
  position: absolute;
  top: 60px; /* Adjust the top position based on your layout */
  right: 20px;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  z-index: 1000;
  width: 300px; /* Slightly smaller width */
  max-width: 100%;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  border: 2px solid #32CD32;
}

/* Show the cart popup when active */
.cart-popup.active {
  display: block;
  transform: translateX(0);
  opacity: 1;
}

/* Cart items list */
.cart-popup .cart-content ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 10px;
  max-height: 200px;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(20px);
  animation: slideInUp 0.6s ease-out forwards;
  transition: max-height 0.3s ease;
}

#cart-items li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid #eee;
  font-size: 16px; /* Slightly smaller font */
  color: #444;
}

#cart-items li:hover {
  background-color: #f9f9f9;
}

#cart-items li .price {
  color: #32CD32;
  
}

/* Cart total */
.cart-popup .cart-total {
  font-size: 20px;
  font-weight: 600;
  margin-top: 10px;
  text-align: center;
  color: #333;
}

/* Buttons */
.cart-popup button {
  background-color: #4f87a1;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  width: 100%;
  margin-top: 15px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Hover effect for buttons */
.cart-popup button:hover {
  background-color: #2c6471;
  transform: scale(1.05);
}

/* Home Visit Charge Section */
.home-visit-charge-section {
  margin-top: 16px;
  padding: 10px;
  background-color: #f9f9f9;
  border-radius: 6px;
  border: 1px solid #ddd;
  text-align: center;
  transition: background-color 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: slideInUp 0.6s ease-out 0.2s forwards;
}

#home-visit-charge {
  font-size: 14px;
  color: #4f87a1;
  font-weight: 500;
  margin-bottom: 6px;
}

#remaining-amount-message {
  font-size: 13px;
  color: #e74c3c;
  font-style: italic;
  margin-top: 4px;
}

/* Hard Copy Option */
.hardcopy-option {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  background-color: #ffffff;
  border-radius: 6px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
  transition: background-color 0.3s, transform 0.2s;
}

.hardcopy-option:hover {
  background-color: #f0f8f4;
  transform: translateY(-2px);
}

.hardcopy-option input[type="checkbox"] {
  margin-right: 8px;
  cursor: pointer;
  accent-color: #32CD32;
  transform: scale(1.05);
}

.hardcopy-option label {
  font-size: 14px;
  font-weight: 500;
  color: #444;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
}

.hardcopy-option label:hover {
  color: #4CAF50;
}

#hardcopy-message {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
  line-height: 1.4;
  font-style: italic;
}


/* Close Cart & Clear Cart Buttons */
.clear-cart-btn, .close-cart-btn {
  background-color: #ff5722;
  color: white;
  border: none;
  padding: 8px;
  cursor: pointer;
  width: 100%;
  border-radius: 6px;
  font-size: 15px;
  margin-top: 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.clear-cart-btn:hover, .close-cart-btn:hover {
  background-color: #e64a19;
  transform: scale(1.05);
}

/* WhatsApp Booking Button */
.whatsapp-booking-button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  background-color: #128C7E;
  color: white;
  font-weight: bold;
  width: 100%;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease;
}

.whatsapp-booking-button:hover {
  background-color: #075E54;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .cart-popup {
    width: 80%; /* Ensure the cart takes most of the screen on small screens */
    right: 10px;
    left: 45px; /* Add left margin to avoid too close to the left edge */
    top: 70px;
  }

  .cart-popup .cart-content ul {
    max-height: 300px;
  }

  .cart-popup button {
    font-size: 18px;
    padding: 12px;
  }

  /* Adjust the buttons and elements to be more mobile-friendly */
  .hardcopy-option, .clear-cart-btn, .close-cart-btn, .whatsapp-booking-button {
    padding: 10px;
    font-size: 14px;
  }

  #home-visit-charge {
    font-size: 14px;
  }
}

/* Keyframes for smooth animation */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Image Slider Styles 

        /* Container for the slider */
             /* Carousel Container */
        .carousel-container {
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
            position: relative;
            padding: 0 0 0 0;
        }

        /* Carousel Wrapper */
        .carousel-wrapper {
            display: flex;
            transition: transform 0.5s ease-out; /* Smooth transition for sliding */
        }

        /* Image Style */
        .carousel-slide {
            width: 100%;
            flex: 0 0 100%;
            display: block;
        }

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

        /* Dots for navigation */
        .dots {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
        }

        .dot {
            width: 12px;
            height: 12px;
            margin: 0 5px;
            background-color: rgba(255, 255, 255, 0.7);
            border-radius: 50%;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }

        .dot.active {
            background-color: white;
            transform: scale(1.2);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        }
/* General Styling for Search Bar */
/* Search Bar for area */
.search-bar {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 15px;
  background: #f7f7f7;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.search-label {
  font-size: 18px;
  margin-bottom: 8px;
  color: #333;
}


    #searchInput {
      width: 100%;
      padding: 10px;
      padding-right: 40px; /* Make space for the icon */
      box-sizing: border-box;
      border: 1px solid #ccc;
      border-radius: 4px;
    }

    #searchIcon {
      position: absolute;
      top: 50%;
      right: 30px;
      transform: translateY(-50%);
      color: #888;
      pointer-events: none; /* Prevents the icon from being clickable */
    }

#searchInput:focus {
  border-color: #4CAF50;
}

button {
  background-color: #4CAF50;
  border: none;
  padding: 12px;
  border-radius: 5px;
  cursor: pointer;
  margin: 5px;
}

button i {
  color: white;
}

/* Position the search results below the search bar */
.service-area-results {
  display: none; /* Hidden by default */
  position: absolute;
  top: 100%; /* Align results directly below the search bar */
  left: 0;
  background-color: #fff;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
  max-height: 250px;
  overflow-y: auto;
  z-index: 10; /* Ensure the results are above other content */
  margin-top: 5px; /* Slight space between input and results */
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  color: #333;
}

/* Style individual result items */
.service-area-results div {
  padding: 10px 15px;
  cursor: pointer;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
  transition: background-color 0.2s ease;
}

/* Hover effect for results */
.service-area-results div:hover {
  background-color: #f2f2f2;
}

.service-area-results p {
  padding: 12px;
  margin: 0;
  border-bottom: 1px solid #eee;
}

.service-area-results p:last-child {
  border-bottom: none;
}

/* Popup Notification */
.popup-notification {
    display: none;
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    background: #5a8f7d; /* Soft green for notifications */
    color: white;
    border-radius: 20px;
    padding: 18px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
    animation: popupFadeIn 0.4s ease-out, popupSlideUp 0.4s ease-out;
}

.popup-notification .popup-content {
    text-align: center;
}

.popup-notification p {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.popup-notification button {
    background-color: #ff6f61; /* Red-orange for action */
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 12px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.popup-notification button:hover {
    background-color: #d55b4f;
}

/* Popup Animations */
@keyframes popupFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes popupSlideUp {
    from {
        transform: translateX(-50%) translateY(30px);
    }
    to {
        transform: translateX(-50%) translateY(0);
    }
}

/* Service Area Results when active */
.active-results {
    display: block;
}

/* Pop-up for unavailability */
.popup-notification .coming-soon {
    color: #ff6347; /* Red color for unavailability */
    font-weight: 600;
}


/* About Container */


/* Service Card */
.service-card1 {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: #333;
    border-left: 5px solid #00c2ff; /* Bright blue accent border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card1:hover {
    transform: translateY(-5px); /* Subtle hover effect */
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15); /* More prominent shadow on hover */
}

.service-card1 h3 {
    font-size: 2rem;
    color: #333; /* Darker text color for the heading */
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-items1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item1 {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    color: #333;
    padding: 15px 20px;
    background-color: #f4f7fa; /* Light gray background for items */
    border-radius: 10px;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.service-item1:hover {
    background-color: #00c2ff; /* Soft cyan background on hover */
    color: white;
    transform: translateX(8px); /* Smooth horizontal translation */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Light shadow on hover */
}

.service-item1 p {
    font-size: 1rem;
    color: #555; /* Slightly lighter text for the item description */
    margin-left: 12px;
}

.icon {
    font-size: 1.7rem;
    color: #4f87a1; /* Cyan color for icons */
    margin-right: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-card1 {
        padding: 20px;
        border-left: 4px solid #00c2ff;
    }

    .service-card1 h3 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .service-items1 {
        gap: 15px;
    }

    .service-item1 {
        font-size: 1rem;
        padding: 12px 15px;
    }

    .icon {
        font-size: 1.5rem;
    }
}

    /*Our Services */
/* Services Section */
  .services {
    padding: 40px 20px;
    background: #f9f9f9;
    text-align: center;
  }

  .section-title {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }

  .service-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
  }

  .service-card:hover {
    transform: translateY(-8px);
  }

  .service-card i {
    font-size: 2.5em;
    color: #4f87a1;
    margin-bottom: 15px;
  }

  .service-card h3 {
    font-size: 1.3em;
    color: #333;
  }
    /*Body Checkup Packages*/
    /* Section container */
.checkup-packages {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

h2 {
  text-align: center;
  font-size: 2.2em;
  margin-bottom: 30px;
  font-weight: 600;
}

/* Wrapper for the scrollable content */
.packages-container-wrapper {
  position: relative;
  overflow: hidden; /* Ensure no scrollbars are shown */
}

.packages-container {
  display: flex;
  flex-wrap: nowrap; /* Do not wrap the flex items */
  gap: 20px;
  padding: 10px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; /* Smooth scrolling for mobile */
  scroll-snap-type: x mandatory; /* Ensure smooth snap between items */
  overflow-x: auto; /* Enable horizontal scrolling */
}

/* Package card styles */
.package-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 300px;
  padding: 20px;
  text-align: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  box-sizing: border-box;
  scroll-snap-align: start; /* Ensure snap aligns with the start of the card */
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.package-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.package-card h3 {
  font-size: 1.6em;
  margin-top: 15px;
  font-weight: 500;
}

.package-card .description {
  color: #777;
  font-size: 1em;
  margin: 10px 0;
}

.pricing {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
}

.price {
  font-size: 1.6em;
  color: #999;
  text-decoration: line-through;
  font-weight: bold;
}

.offer-price {
  font-size: 1.4em;
  color: #FF5733;
  font-weight: 500;
}

/* Styling for the Details button */
.details-btn {
    display: inline-block;
    background-color: #FF5733; /* Change the color as needed */
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    margin-bottom: 10px; /* Space between buttons */
    transition: background-color 0.3s ease;
    width: 100%;
    text-align: center;
}

.details-btn:hover {
    background-color: #d34a2f; /* Darker shade on hover */
}
/* Styling for WhatsApp button */
.whatsapp-link {
    display: inline-block;
    background-color: darkgreen;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 10px; /* Adjust spacing if necessary */
    font-size: 1.1em;
    font-weight: 500;
    transition: background-color 0.3s ease;
    width: 100%;
    text-align: center;
}

.whatsapp-link:hover {
    background-color: darkcyan;
}
/* Scroll indicator styles */
.scroll-indicator-left,
.scroll-indicator-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  z-index: 10;
  cursor: pointer;
}

.scroll-indicator-left {
  left: 10px;
}

.scroll-indicator-right {
  right: 10px;
}

.scroll-indicator-left::before {
  content: '←';
  font-weight: bold;
}

.scroll-indicator-right::before {
  content: '→';
  font-weight: bold;
}

.scroll-indicator-left:hover,
.scroll-indicator-right:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

/* Ensure responsiveness */
@media (max-width: 768px) {
  .packages-container {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .package-card {
    width: 90%;
    max-width: 320px;
    margin-bottom: 20px;
  }

  /* Adjust indicator size for mobile */
  .scroll-indicator-left,
  .scroll-indicator-right {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

        /*Testimonials*/

/* Testimonial Section */
.testimonial-section {
  width: 100%;
  max-width: 1200px;
  margin: 50px auto;
  padding: 40px;
  background-color: #f5f5f5; /* Light gray background for a fresh, modern look */
  border-radius: 30px; /* More pronounced rounded corners */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-family: 'Roboto', sans-serif; /* Clean modern font for overall design */
  box-sizing: border-box;
  overflow: hidden;
}

.testimonial-heading {
  font-size: 42px; /* Larger heading font size */
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  font-family: 'Poppins', sans-serif; /* Sleek font for headings */
}

.testimonial-heading::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100px;
  height: 4px;
  background-color: #4f87a1; /* Soft blue underline */
  border-radius: 2px;
}

.testimonial-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  justify-items: center;
  align-items: center;
  overflow-x: hidden;
  padding: 0 10px;
}

.testimonial-card {
  background-color: #ffffff;
  border-radius: 25px; /* More curved corners for an attractive design */
  box-shadow: 6px 6px 25px rgba(0, 0, 0, 0.2), -6px -6px 25px rgba(255, 255, 255, 0.5);
  width: 100%;
  max-width: 350px; /* Larger width for the cards */
  padding: 50px;
  text-align: center;
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-15px);
  box-shadow: 8px 8px 35px rgba(0, 0, 0, 0.25), -8px -8px 35px rgba(255, 255, 255, 0.6);
}

.testimonial-image {
  width: 100px; /* Larger profile image */
  height: 100px;
  border-radius: 50%; /* Fully circular image */
  margin-bottom: 30px;
  border: 5px solid #4f87a1; /* Blue border around the image */
}

.quote {
  font-size: 20px; /* Larger quote font size */
  font-weight: 400;
  color: #777;
  margin-bottom: 25px;
  font-style: italic;
  font-family: 'Georgia', serif; /* Elegant serif font for the quote */
}

.author {
  font-size: 22px; /* Larger author name */
  font-weight: 600;
  color: #4f87a1; /* Soft blue color for the author's name */
  font-family: 'Poppins', sans-serif; /* Modern font for the author's name */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .testimonial-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .testimonial-card {
    width: 100%;
    padding: 45px;
  }

  .testimonial-heading {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .testimonial-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    width: 100%;
    padding: 35px;
  }

  .testimonial-heading {
    font-size: 30px;
  }

  .quote {
    font-size: 18px; /* Slightly smaller quote font size */
  }

  .author {
    font-size: 20px; /* Slightly smaller author name */
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    width: 100%;
    padding: 25px;
  }

  .testimonial-heading {
    font-size: 26px; /* Smaller heading font size */
    margin-bottom: 25px;
  }

  .quote {
    font-size: 16px; /* Smaller quote font size */
  }

  .author {
    font-size: 18px; /* Smaller author name */
  }

  .testimonial-container {
    gap: 15px;
  }
}


/* Contact Us Section */
.contact-us-section {
  background-color: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Enhanced shadow for depth */
  animation: fadeIn 1.5s ease-in-out; /* Smooth fade-in animation */
  max-width: 600px; /* Limiting form width */
  width: 100%;
  margin: 0 auto; /* Centering the contact section */
}

h1 {
  text-align: center;
  font-size: 2.5rem;
  color: #4f87a1;
  margin-bottom: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeIn 1.5s ease-in-out;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1); /* Slight shadow for a modern effect */
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch; /* Full-width form fields */
  animation: slideUp 1s ease-in-out; /* Slide-up animation for the form */
}

.form-group {
  width: 100%;
  margin: 0 auto;
}

label {
  font-size: 1.1rem;
  color: #4f87a1;
  margin-bottom: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

input,
textarea {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
}

input:focus,
textarea:focus {
  border-color: #4f87a1;
  box-shadow: 0px 0px 15px rgba(79, 135, 161, 0.5); /* Glowing effect on focus */
}

textarea {
  resize: vertical;
}

button.submit-btn {
  background-color: #4f87a1;
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.1); /* Adding shadow for depth */
  width: 100%; /* Make button full-width on mobile */
}

button.submit-btn:hover {
  background-color: #3e6e8e;
  transform: translateY(-4px); /* Button lift effect on hover */
}

button.submit-btn:active {
  transform: translateY(0); /* Reset on click */
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-us-section {
    padding: 40px 20px;
  }

  h1 {
    font-size: 2.4rem;
  }

  .contact-form {
    gap: 15px; /* Adjust gap for smaller screens */
  }

  .form-group {
    max-width: 95%; /* Ensure form fields take up most of the width */
  }

  button.submit-btn {
    padding: 14px 28px; /* Slightly smaller padding for mobile */
  }
}

@media (max-width: 480px) {
  .contact-us-section {
    padding: 30px 15px;
  }

  h1 {
    font-size: 1.8rem;
  }

  input,
  textarea {
    font-size: 1rem;
    padding: 12px;
  }

  button.submit-btn {
    font-size: 1rem;
    padding: 12px 24px;
  }
}

/* Animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*contact */
.contact-info {
  background-color: #fff;
  color:#2b6278;
  text-align: center;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.contact-info h2 {
  margin-bottom: 20px;
  color: #2b6278;
  font-size: 1.8em;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border-bottom: 1px solid #ddd;
  transition: transform 0.3s ease-in-out;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item i {
  margin-right: 15px;
  color: #2b6278;
  font-size: 1.5em;
}

.contact-item p {
  margin: 0;
  font-size: 1em;
}

.contact-item:hover {
  transform: translateY(-5px);
}

@media (max-width: 600px) {
  .contact-item {
    flex-direction: column;
    text-align: center;
  }

  .contact-item i {
    margin-bottom: 10px;
  }
}
/* FAQ section*/
/* Language Selector */
.language-selector {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.lang-btn {
    background-color: #4f87a1;
    color: white;
    border: none;
    padding: 12px 25px; /* Slightly larger padding */
    cursor: pointer;
    font-size: 1.1rem; /* Slightly larger font size */
    border-radius: 5px;
    margin: 0 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.lang-btn.active {
    background-color: #2b6278;
}

.lang-btn:hover {
    background-color: #2b6278;
    transform: scale(1.05);
}

.lang-btn:focus {
    outline: none;
    box-shadow: 0 0 3px 2px #4f87a1;
}

/* FAQ Section */
/* FAQ Section */
.faq-section {
    padding: 50px 15px; /* Reduced padding */
    background-color: #f9f9f9; 
    font-family: 'Helvetica Neue', sans-serif;
    color: #333;
    text-align: center;
}

.faq-title {
    font-size: 2.5rem; /* Reduced size */
    font-weight: 700;
    margin-bottom: 30px; /* Reduced margin */
    color: #2b6278;
    text-transform: uppercase;
    letter-spacing: 1px; /* Reduced letter spacing */
    line-height: 1.3;
    font-family: 'Roboto', sans-serif;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Reduced gap */
    max-width: 800px; /* Reduced max-width */
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border-radius: 8px; /* Slightly reduced radius */
    overflow: hidden;
    border: 1px solid #ddd;
    transition: transform 0.2s ease, box-shadow 0.2s ease; /* Shortened transition */
    padding: 0;
}

.faq-item:hover {
    transform: translateY(-4px); /* Reduced lift effect */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Lighter shadow */
}

.faq-question {
    background-color: #4f87a1;
    color: white;
    padding: 15px 20px; /* Reduced padding */
    text-align: left;
    font-size: 1rem; /* Reduced font size */
    border: none;
    border-radius: 8px; /* Slightly reduced border radius */
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%;
}

.faq-question:hover {
    background-color: #2b6278;
    padding-right: 25px; /* Reduced padding effect */
}

.faq-question .icon {
    font-size: 1.8rem; /* Slightly reduced icon size */
    font-weight: bold;
    color: white;
    visibility: visible;
    flex-shrink: 0;
    margin-left: 10px;
}

.faq-answer {
    padding: 0 15px; /* Reduced padding */
    background-color: #fafafa;
    display: none;
    font-size: 0.95rem; /* Reduced font size */
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
    line-height: 1.4; /* Slightly reduced line height */
}

.faq-answer.expanded {
    padding: 10px 15px; /* Reduced expanded padding */
    max-height: 300px; /* Reduced max-height */
    display: block;
}

@media (max-width: 1024px) {
    .faq-title {
        font-size: 2.2rem; /* Reduced font size for medium screens */
    }

    .faq-question {
        font-size: 0.95rem; /* Reduced font size */
    }
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 1.8rem; /* Further reduced size for smaller screens */
    }

    .faq-question {
        font-size: 0.9rem;
        padding: 12px 18px; /* Reduced padding */
    }

    .faq-list {
        gap: 15px; /* Reduced gap */
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 1.6rem; /* Further reduced title size */
    }

    .faq-question {
        font-size: 0.9rem;
        padding: 10px 15px; /* Further reduced padding */
    }

    .faq-answer {
        font-size: 0.85rem; /* Further reduced answer font size */
    }
}

/* Styling for the floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  bottom: 75px;
  right: 15px;
  z-index: 1000;
  display: inline-block;
  transition: all 0.3s ease;
}

.whatsapp-icone {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #128C7E, #25D366);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.whatsapp-float:hover .whatsapp-icone {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-float:focus .whatsapp-icone {
  outline: 3px solid #128C7E;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
}

.whatsapp-icone img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 600px) {
  .whatsapp-float {
    bottom: 20px;
    right: 10px;
  }

  .whatsapp-icone {
    width: 50px;
    height: 50px;
  }
}

/* General styling for the footer */
.footer {
  background-color: #333; /* Dark background for a modern look */
  color: #fff; /* White text for contrast */
  text-align: center; /* Center the text */
  padding: 20px 0; /* Add some padding for spacing */
  font-size: 14px; /* Smaller font size */
}

/* Container inside the footer */
.footer .container {
  max-width: 1200px; /* Limit the width of the footer */
  margin: 0 auto; /* Center the content horizontally */
  padding: 0 20px; /* Add some horizontal padding */
}

/* Styling for the copyright text */
.footer p {
  margin: 0;
  font-size: 14px; /* Ensure consistent font size */
  letter-spacing: 0.5px; /* Slightly increase letter spacing for a clean look */
  font-family: 'Arial', sans-serif; /* Modern font family */
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .footer {
    padding: 15px 0; /* Slightly reduce padding for smaller screens */
  }

  .footer p {
    font-size: 12px; /* Reduce font size on smaller devices */
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 10px 0; /* Further reduce padding on very small screens */
  }

  .footer p {
    font-size: 10px; /* Smaller font size for very small screens */
  }
}

/* Location & Contact Section */
#location-contact {
  background-color: #f8f9fa;
  padding: 40px 0;
}

#location-contact .map-container {
  width: 100%;
  height: 300px;
}

#location-contact .btn-primary {
  margin-top: 20px;
  padding: 12px 30px;
  font-size: 16px;
}


/*location fetch*/

.container-wrapper {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 10px;
}

.box {
    background: #fff;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 160px;
    transition: transform 0.3s;
}

.box:hover { transform: translateY(-5px); }

h2 { font-size: 13px; color: #333; margin-bottom: 8px; }

p { font-size: 12px; margin-bottom: 10px; color: #000; }

.btn, #location-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 20px;
    font-size: 12px;
    width: 100%;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn {
    background: #25D366;
    color: #fff;
}

.btn:hover { background: #128C7E; }

.btn img, h2 img {
    width: 14px;
    height: 14px;
    margin-right: 5px;
}

#location-btn {
    background: #4CAF50;
    color: #fff;
}

#location-btn:hover { background: #45a049; }

#status {
    font-size: 12px;
    padding: 8px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
   
}
#status.success,
#status.error {
  border-left: 6px solid;
}

#status.success {
  background: #d4edda;
  border-color: #28a745;
  color: #155724;
}

#status.error {
  background: #f8d7da;
  border-color: #dc3545;
  color: #721c24;
}

#loader {
    margin: 8px auto;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1.2s linear infinite;
    display: none;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 400px) {
    .container-wrapper { flex-direction: column; }
    .box { width: 100%; }
}
