/* Body Styling */

body {
    background-color: #000;
    font-family: 'Times New Roman', Times, serif;
    color: #fff;
    padding-top: 70px;
}

/* Navbar Styling */
.navbar {
    background-color: #000;
    box-shadow: 0px 4px 15px rgba(255, 215, 0, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    /* Ensures the navbar stays above other content */
    width: 100%;
}

.navbar img {
    height: 60px;
}

.cta-button {
    text-decoration: none;
    color: gold;
    font-size: large;
    text-transform: uppercase;
    font-weight: 900;
    border: 1px solid gold;
    border-radius: 20px;
    padding: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    background-color: goldenrod;
    color: black;
    transform: scale(1.1);
    /* Slightly enlarges the button on hover */
}

/* Banner Styling */
.shiva-book-banner {
    padding-top: 20px;
    text-shadow: 2px 2px 8px rgba(52, 81, 130, 0.8);
}

.shiva-book-banner h2 {
    font-size: 3rem;
    letter-spacing: 2px;
    font-weight: 700;
    color: goldenrod;
}

.shiva-book-banner p {
    font-size: 1.25rem;
    color: #FFD700;
}

marquee {
    font-size: 1rem;
    font-weight: bold;
    color: #FFD700;
}

/* Carousel Styling */
.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}



.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #007bff;
    border-radius: 50%;
}

/* ================ */

/* Container Styling */
.wa_btn {
    position: fixed;
    bottom: 20px;
    /* Adjust to control how far from the bottom the buttons are */
    right: 20px;
    /* Adjust to control how far from the right edge */
    z-index: 9999;
    /* Ensures the buttons are always on top */
    display: flex;
    flex-direction: column;
    /* Stacks the buttons vertically */
    gap: 10px;
    /* Adds space between the icons */
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-in-out;
    /* Smooth transition for hover effect */
}

/* Link Styling */
.wa-link {
    display: inline-block;
    text-decoration: none;
    /* Removes underline from links */
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Icon Styling */
.wa-icon {
    width: 50px;
    /* Sets the size of the icons */
    height: 50px;
    border-radius: 50%;
    /* Makes the icon round */
    object-fit: contain;
    /* Ensures the image maintains its aspect ratio */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    /* Adds a shadow effect for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect for Icons */
.wa-link:hover .wa-icon {
    transform: scale(1.1);
    /* Slightly enlarges the icon on hover */
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
    /* Increases shadow for depth */
    opacity: 0.9;
    /* Slightly reduces opacity to show hover effect */
}

/* Hover Effect for the whole Container */
.wa_btn:hover {
    transform: translateY(-10px);
    /* Moves the entire button group up on hover */
}

/* Media Query for Mobile Responsiveness */
@media (max-width: 768px) {
    .wa_btn {
        right: 10px;
        /* Adjust position for mobile */
        bottom: 10px;
        /* Adjust position for mobile */
    }

    .wa-icon {
        width: 40px;
        /* Smaller icons on mobile */
        height: 40px;
    }
}



/* Card Styling */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}

.card-body h2 {
    font-size: 1.75rem;
    font-weight: 600;
}

.card-body p {
    color: #6c757d;

}

/* Information Card Section */
.info-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #007bff;
}

.info-card p {
    font-size: 1rem;
    color: #6c757d;
}

/* Call to Action Section */
.call-to-action {
    background-color: #1e3d58;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

.call-to-action h2 {
    font-size: 2.5rem;
    color: #fff;
}

.call-to-action p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #d1d1d1;
}

.call-to-action .btn-light {
    padding: 12px 30px;
    background-color: #FFD700;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.call-to-action .btn-light:hover {
    background-color: #d1a100;
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .shiva-book-banner h2 {
        font-size: 2rem;
    }

    .carousel-item img {
        height: auto;
    }

    .card-body h2 {
        font-size: 1.5rem;
    }

    .call-to-action h2 {
        font-size: 2rem;
    }

    .cta-button {
        padding: 8px 16px;
    }
}

.image-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.image-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.image-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

/* Rotate image on hover */
.image-item:hover img {
    transform: rotate(15deg);
}

/* Style for 2 images per row */
@media (max-width: 991px) {
    .image-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Style for small size of images */
@media (max-width: 576px) {
    .image-item {
        width: 100%;
        height: auto;
    }
}


.payment-methods {
    margin-top: 30px;
}

.payment-methods .payment-option {
    text-align: center;
    border: 2px solid goldenrod;
    padding: 15px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-methods .payment-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.payment-methods img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.payment-methods .payment-option h5 {
    font-size: 16px;
    color: goldenrod;
}

/* Bootstrap Grid adjustments for small screens */
@media (max-width: 768px) {
    .payment-methods .col-12 {
        flex: 0 0 50%;
        /* 2 items per row on small screens */
        max-width: 50%;
    }

    .payment-methods {
        overflow-x: auto;
        white-space: nowrap;
    }

    .payment-methods .col-12 {
        display: inline-block;
        padding: 10px;
    }

    .payment-methods h1 {
        font-size: 18px;
        /* Adjust title size for small screens */
    }
}

@media (min-width: 769px) {
    .payment-methods .col-12 {
        flex: 0 0 16.66%;
        /* 6 items per row on larger screens */
        max-width: 16.66%;
    }
}



.footer {
    background-color: #333;
    color: white;
    padding: 5px 0;
}

/* Logo Styling */
.footer .footer-logo img {
    max-width: 150px;
    margin-bottom: 5px;
}





.footer .footer-text {
    font-size: 17px;
    color: #bbb;
    /* margin-top: 10px; */
}

/* Additional Image Styling */
.footer .footer-images img {
    max-width: 80px;
    /* margin-top: 10px; */
}

@media (max-width: 768px) {

    /* Centering elements and stacking in a single column for smaller screens */
    .footer .container {
        text-align: center;
        flex-direction: column;
    }






}