*{
    padding:0px;
    margin:0px;
    box-sizing: border-box;
    font-family:Arial, Helvetica, sans-serif;
}
body {
    background-image: url("bgimg.png");
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
/* General Navbar Styling */
.navi {
    position: sticky;
    top: 0;
    z-index: 1020; /* Ensure it stays on top of other elements */
    background-color: black;
    height: 75px; /* Adjusted navbar height */
    padding: 0; /* Removed extra padding */
    width: 100%;
}

/* Logo Styling */
.navbar-brand {
    margin: 0; /* Removed any margin */
    padding: 0; /* Removed any padding */
}
.navbar-brand img {
    width: 120px; /* Adjusted logo size */
    height: auto; /* Maintained aspect ratio */
}

/* Navbar Links Styling */
.navbar-nav {
    display: flex;
    justify-content: flex-end; /* Align nav links to the extreme right */
    align-items:flex-end;
    gap: 10px; /* Adjust space between nav links */
    margin-left: 0; /* Push nav links to the extreme right */
    margin-right: 0; /* Ensure no extra space at the end */
    padding-right: 0; /* Remove padding from the right of the nav */
    width: 94%;
    
    
}

.navbar .navbar-nav .nav-link {
    color: white;
    font-size: 12px; /* Adjusted font size */
    font-weight: bolder; /* Bold for better emphasis */
    padding: 0.5em 0.8em; /* Adjusted padding for compact spacing */
    transition: color 0.3s ease-in-out; /* Smooth color transition */
    font-family:Georgia, 'Times New Roman', Times, serif
}

/* Remove space from the nav links */
.navbar-nav li:last-child {
    margin-right: 0; /* Ensure no extra margin for the last link */
}

/* Hover Effect for Nav Items */
.nav-item:hover {
    transform: none; /* Disabled scaling effect */
}
.navbar .navbar-nav .nav-link:hover {
    color: red; /* Only change color on hover */
}

/* Media Query for Larger Screens */
@media screen and (min-width: 768px) {
    .navbar-brand img {
        width: 140px; /* Slightly larger logo size for larger screens */
    }

    .navbar .navbar-nav .nav-link {
        font-size: 16px; /* Adjusted font size for larger screens */
    }
}

/* Cursor Glow Effect with Visible Concentric Circles */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 500px; /* Size of the glow */
    height: 500px;
    pointer-events: none; /* Allow mouse interactions to pass through */
    border-radius: 50%;
    background: radial-gradient(
        circle, 
        rgba(255, 255, 255, 0.35) 0%, /* Brightest center */
        rgba(255, 255, 255, 0.25) 12%, 
        rgba(255, 255, 255, 0.2) 25%, 
        rgba(255, 255, 255, 0.15) 40%, 
        rgba(255, 255, 255, 0.1) 55%, 
        rgba(255, 255, 255, 0.08) 70%, 
        rgba(255, 255, 255, 0.05) 80%, 
        rgba(255, 255, 255, 0) 100% /* Outer ring fading to transparent */
    );
    z-index: 5; /* Adjusted so video appears above */
    transform: translate(-50%, -50%);
    mix-blend-mode: normal;
    filter: brightness(0.6);
    pointer-events: none;
}

/* Prevent cursor glow above video */
.indvid {
    z-index: 10;
}

/* Background Image Styling */
.background {
    background-image: url('bgimg.png'); /* Replace with your background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -2;
    filter: brightness(50%); /* Adjust the value to dim more or less */
}

/* Lamp Container */
.lamp-container {
    position: absolute;
    top: 65%; /* Adjust vertical alignment */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%);
    width: 150px; /* Adjust size to match lamp image */
    height: auto;
    z-index: 2; /* Above the overlay */
}

/* Lamp Image */
.lamp-image {
    display: block;
    width: 120%;
    height: auto;
    position: relative;
    z-index: 3; /* Place above the glow effect */
}

/* Brightened Glow Effect */
.lamp-container::before {
    content: '';
    position: absolute;
    top: 60%;
    left: 56%;
    transform: translate(-50%, -50%);
    width: 300px; /* Size of the glow */
    height: 300px;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.7) 0%, /* Brighter center */
        rgba(255, 255, 150, 0.4) 40%, /* Softer edges */
        rgba(0, 0, 0, 0) 70%
    );
    border-radius: 50%;
    animation: pulse 2.5s infinite;
    z-index: 1; /* Place behind the lamp image */
}

/* Pulsating Animation */
@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8; /* Brighter pulse */
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3); /* Slightly larger pulse */
        opacity: 1; /* Maximum brightness */
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
}
/* Video Styling */
#firstvideo {
    position: absolute;
    top: 130%; /* Just below the lamp */
    left: 50%;
    transform: translate(-50%, 0);
    width: 50%; /* Reduce width */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover;
    z-index: 10; /* Above other elements but below the cursor glow */
    display: block;
}

.ban {
    position: relative; /* Changed to relative to keep it in normal flow */
    margin-top: 100%; /* Margin for spacing */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    text-align: center; /* Center align text */
}

/* Wrapper inside the banner */
.banrap {
    width: 75%; /* Adjust width for centering */
    padding: 20px;
    line-height: 1.8; /* Add line spacing */
    color: white; /* Default text color */
}
/* Styling for the first H1 (highlighted text in gold) */
.banrap h1.highlight {
    font-size: 25px; /* Adjust font size */
    font-family: 'Georgia', serif; /* Elegant font style */
    color: gold; /* Gold text color */
    margin-bottom: 20px; /* Space between paragraphs */
    font-weight: normal;
    line-height: 3;
}

/* Styling for the second H1 (white text) */
.banrap h1.bottom-text {
    font-size: 20px; /* Slightly smaller size */
    font-family: 'Georgia', serif;
    color: white; /* White text color */
    margin-top: 20px; /* Space from the first paragraph */
    font-weight: lighter;
    line-height: 3;
}

/* Button styling */
.guide-button {
    display: inline-block;
    margin-top: 20px; /* Spacing above the button */
    padding: 10px 20px; /* Padding for button */
    font-size: 16px; /* Button text size */
    font-family: Arial, sans-serif;
    color: white; /* White text color */
    background-color: crimson; /* Button background */
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    text-transform: uppercase; /* Capitalize button text */
    transition: background-color 0.3s ease; /* Smooth hover transition */
}

.guide-button:hover {
    background-color: darkred; /* Darker red on hover */
}



/* Scrolling Images Section */
.scroll-images {
    display: flex;
    justify-content: space-between;
    position: fixed; /* Fix the position relative to the viewport */
    top: 0; /* Align to the top */
    left: 0; /* Align to the left */
    width: 100vw; /* Full viewport width */
    height: 100vh; /* Full viewport height */
    z-index: -1; /* Place the images below other elements */
    pointer-events: none; /* Prevent interaction with the images */
}

/* Image Containers */
.image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    pointer-events: none; /* Prevent interaction */
    height: auto; /* Allow container to grow as needed */
    overflow: visible; /* Prevent clipping of images */
}
/* Scrolling Images Styling */
.scroll-image {
    width: 400px; /* Image size */
    height: auto;
    margin-bottom: -300px; /* Overlap adjustment */
    opacity: 0; /* Initial opacity */
    transform: scale(0.5) translateY(100px); /* Initial transform */
    transition: transform 1.5s ease-out, opacity 1.5s ease-in-out; /* Smooth animations */
}

/* Scroll Trigger - Appear Effect */
.scroll-image.appear {
    opacity: 1; /* Fully visible when scrolled into view */
    transform: scale(1.5) translateY(0); /* Larger size when active */
    z-index: 2; /* Ensure active image is on top */
}

/* Left Side Tilt */
.image-container.left img {
    transform: rotate(-10deg) scale(0.7) translateY(0); /* Adjusted scaling */
    margin-right: 20%; /* Adjust spacing for visibility */
}

/* Right Side Tilt */
.image-container.right img {
    transform: rotate(10deg) scale(0.7) translateY(0); /* Adjusted scaling */
    margin-left: 20%; /* Adjust spacing for visibility */
}





/* Main review section */
.mid5 {
    width: 100%;
    height: 60vh;
    position: relative;
    z-index: 10; /* Ensure this section is above the glow effect */
}

/* Section containing the heading */
.midrap5 {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: auto auto auto auto;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    padding-top: 60px;
    text-align: center;
    justify-content: center;
}

.midrap5 h1 {
    font-size: 35px;
    font-family: sans-serif;
    font-weight: bolder;
    text-align: center;
    justify-content: center;
    color: white;
}

/* Slider container */
.slider-container5 {
    position: relative;
    width: 95%;
    overflow: hidden;
    margin: 0 auto;
    z-index: 10; /* Ensure this stays above the glow effect */
}

.rev-slider {
    display: flex;
    overflow: hidden;
}

.rev-container {
    display: flex;
    transition: transform 0.5s ease;
}

/* Review item styles */
.rev-item {
    flex: 0 0 33.333%; /* 3 items visible at a time */
    box-sizing: border-box;
    text-align: center;
    position: relative;
}

/* Text overlay in review items */
.slider-container5 .rev-item .text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* Add text glow */
    font-size: 14px !important; /* Forcefully set a very small font size */
    font-family: sans-serif;
    font-weight: normal;
    padding: 3px;
    line-height: 1; /* Compact line height */
    width: 70%;
    height: 50%;
}

/* Image styles */
.rev-img {
    width: 100%; /* Ensure consistent image width */
    height: 100%; /* Ensure consistent image height */
    object-fit: cover;
    border-radius: 5px;
}

/* Scroll bar styles */
.scroll-bar-container {
    margin-top: 20px;
    text-align: center;
}

.scroll-bar {
    width: 50%;
    -webkit-appearance: none;
    appearance: none;
    height: 10px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    cursor: pointer;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}

.scroll-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    cursor: pointer;
}



.container {
    margin-top: 17%;
    padding: 20px;
    text-align: center;
   font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 40px; /* Increased font size */
    color: orange; /* Changed color to white */
    margin-bottom: 40px;
    font-weight: bold; /* Ensured bold text */
    z-index: 10;
}



/* Main Content */
.main-content {
    margin-top: 3%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: -1;
}

/* Image Slider Section */
.slider-container {
    width: 30%;
    position: relative;
    box-shadow: 0 1px 30px rgba(255, 223, 0, 0.8); /* Yellow shadow */
    overflow: hidden;
    z-index: 10;
}

.slider {
    display: flex;
    transition: transform 1s ease;
}

.slider img {
    width: 100%;
    flex-shrink: 0; /* Ensure all images stay side-by-side */
    object-fit: cover;
}

.dots {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #e5c660;
    box-shadow: 0 0 10px #e5c660;
}

/* Event Details Section */
.event-details {
    width: 40%;
    text-align: left;
    margin-top: 20px;
}

.event-details p {
    font-size: 1.2rem;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: orange;
    font-weight: bold;
}

.icon {
    font-size: 1.5rem;
    color: #e5c660;
}

/* Button */
.buy-tickets {
    margin-top: 20px;
    padding: 20px 15px;
    font-size: 15px;
    color: black;
    font-weight: bold;
    background: #e5c660;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    margin-left: 35%;
    text-transform: uppercase;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.buy-tickets:hover {
    background: #d4b450;
}


.heading {
   font-size: 30px;
    text-align: center;
    font-weight: bold;
    color: burlywood !important;
  }
  .image-row2 {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    gap: 10%;
  }
  .image-row2 img {
    width: 150px;
    height:80px;
   
  }
  .faq-link {
    text-align: center;
    margin: 20px 0;
  }
  .faq-link p{
    color: orange;
    text-decoration: none;
    font-weight: normal;
    font-size: 22px;
  }
  .faq-link a {
    color: #007bff;
    text-decoration: none;
    font-weight: normal;
    font-size: 22px;
  }
  .faq-link a:hover {
    text-decoration: underline;
  }



  /* Center the image container */
.img-book {
    display: flex;
    justify-content: center; /* Horizontally centers the image */
    align-items: center; /* Vertically centers the image */
    height: 100vh; /* Full viewport height to center vertically */
   
  }
  
  /* Style the image */
  .img-book img {
    width: 100%; /* Reduce the size of the image (adjust as needed) */
    max-width: 700px; /* Optional: Limit the maximum width */
    height: auto; /* Maintain aspect ratio */
   z-index: 10;
  }
  


  .newsletter-card {
    position: relative;
    max-width: 300px;
    margin: 50px auto;
    background-color: #1d1d1d; /* Slightly lighter dark card */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
   z-index: 10;
  }
  .newsletter-card h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: white;
  }
  .newsletter-card p {
    font-size: 0.9rem;
    color: white;
  }
   .form-control {
    background-color: #2c2c2c;
    border: 1px solid #555;
    color: white;
   
  }
  .mb-3{
    color: white;
  }
  .newsletter-card .form-control:focus {
    background-color: whitesmoke;
    border-color: #ff4747;
    box-shadow: none;
  }
  .newsletter-card .btn {
    background-color: rgb(182, 29, 29); /* Red button */
    color: white;
    font-weight: bold;
    border: none;
  }
  .newsletter-card .btn:hover {
    background-color: #c9302c;
  }


 /* Full-Section Background Styling */
 .custom-section {
    position: relative;
    background: url('background-image.jpg') no-repeat center center; /* Replace with your background image */
    background-size: cover;
    color: #fff;
    padding: 50px 20px;
    text-align: center;
  }

  /* Social Icons Styling */
  .social-icons {
    margin: 20px 0;
  }

  .social-icons i {
    color: #f5a623; /* Icon color */
    font-size: 30px;
    margin: 0 15px;
    transition: transform 0.3s;
  }

  .social-icons i:hover {
    transform: scale(1.2); /* Slight enlarge effect */
  }

  /* Logos Section */
  .logos img {
    max-width: 120px; /* Adjust width */
    margin: 20px 15px;
    filter: brightness(0) invert(1); /* Make logos appear white */
  }

  /* Disclaimer Text Styling */
  .disclaimer-text {
    font-size: 12px;
    margin-top: 20px;
    line-height: 1.5;
    color: #ccc;
  }



/* Background Styling */
.contact-section {
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    font-family: 'Arial', sans-serif;
  }

  /* Title Styling */
  .contact-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
  }

  /* Links and Text Styling */
  .contact-item {
    margin: 5px 0;
    font-size: 18px;
  }

  .contact-item a {
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s;
  }

  .contact-item a:hover {
    color: #f5a623; /* Hover color */
  }

  .contact-details {
    font-size: 16px;
   
    color: #ccc;
  }


/* Footer Styling */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    color: white;
    padding: 20px;
    z-index: 10; /* Ensure footer is above other elements */
    position: relative; /* Make sure it stays above the glow effect */
   
}

.footer-left {
    flex: 1;
}

.footer-center {
    text-align: center;
    flex: 2;
}

.footer-right {
    flex: 1;
    text-align: right;
}

.footer-logo {
    width: 100px; /* Adjust the width of the logo */
    height: auto;
}

.footer-center p {
    margin: 5px 0;
    color: white; /* Ensure the text color is white */
}

.footer-center a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
}

/* Remove underline from social media icons */
.social-icon {
    color: white;
    margin-left: 15px;
    font-size: 24px;
    transition: box-shadow 0.3s ease-in-out; /* Smooth transition for the glow effect */
    text-decoration: none; /* Ensure no underline */
}

/* Glow effect on the cursor when hovering over the social icons */
.footer-right {
    position: relative;
}

.footer-right .social-icon {
    z-index: 2;
}

.footer-right .social-icon:hover::after {
    content: "";
    position: absolute;
    bottom: -10px; /* The glow will appear beneath the footer */
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0px 10px 20px rgba(255, 255, 255, 0.7);
    z-index: -1; /* Ensure the glow is behind the footer */
}

/* Ensure that all text in the footer is white */
.footer-left,
.footer-center,
.footer-right,
.footer-center a,
.footer-center p {
    color: white !important; /* Force text to be white */
}
