.al-service-box {
    border-radius: 20px;
    height: 500px;
 }

 .sticky-icons {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between; /* Space between the icons */
  }
  
  .sticky-icons a {
    display: block;
  }
  
  .whatsapp-icon {
    margin-left: 20px !important; /* Add space to the right of WhatsApp icon */
  }
  
  .phone-icon {
    margin-right: 20px !important; /* Add space to the left of Phone icon */
  }
  
  .whatsapp-icon img, .phone-icon img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }
  
  .whatsapp-icon img:hover, .phone-icon img:hover {
    transform: scale(1.1);
  }
  
  /* Optional: Add a subtle fade-in effect when the page loads */
  .sticky-icons {
    animation: fadeIn 1s ease-out;
  }
  
  @keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }

  .banner-wrapper {
    display: flex;
    overflow: hidden;
    height: 92vh;
    width: 100vw;
    position: relative;
}

/* Flex container to hold banner items */
.banner-container {
    display: flex;
    width: 400%; /* 4 slides */
    transition: transform 0.5s ease-in-out;
}

/* Each banner item */
.banner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    position: relative;
    background-size: cover;
    background-position: center;
}

/* Background images for each slide */
.banner-item:nth-child(1) {
    background-image: url('../wp-content/uploads/sites/4/2021/09/baner1.jpg');
}

.banner-item:nth-child(3) {
    background-image: url('../wp-content/uploads/sites/4/2021/09/baner214.jpg');
}

.banner-item:nth-child(2) {
    background-image: url('../wp-content/uploads/sites/4/2021/09/baner.jpg');
}


/* Text styles */
.banner-text {
    position: absolute;
    color: white;
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    z-index: 10;
}

.banner-text h1 {
    margin: 0;
}

/* Button styles */
.next-button, .prev-button {
    position: absolute;
    bottom: 20px;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 18px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    z-index: 20;
}

.next-button:hover, .prev-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Positioning of the buttons */
.next-button {
    right: 20px;
}

.prev-button {
    left: 20px;
}

.banner-text h1 {
    color: white;
}

#numerology-335 h1 {
    color: rgb(92, 3, 92);
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.remedies-section {
    padding: 60px;
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    margin: 60px auto;
    max-width: 1100px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
    text-transform: uppercase;
    font-weight: bold;
}

.remedies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.remedy-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid transparent;
    border-color: #FF7010;
}

.remedy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-color: #FF7010;
}

.remedy-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #333;
    font-weight: bold;
}

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

/* Pop-Up Container */
.popup {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup.hidden {
    opacity: 0;
    visibility: hidden;
}

.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Close Button */
.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

/* QR Image */
.qr-image {
    width: 500px;
    height: 500px;
    margin-bottom: 15px;
}

/* Show Pop-Up */
.popup:not(.hidden) {
    opacity: 1;
    visibility: visible;
}

    .pop-upPhrase {
        font-size: 22px;
    }

#astrologer-menu {
    width: 1000px;
}

@media (max-width: 768px) {
    .remedies-grid {
        grid-template-columns: 1fr;
    }
    #astrologer-menu {
        width: 300px;
    }
    .al-header-style-one {
        display: flex;
        align-items: center;
        height: 60px;
    }
}

