@font-face {
    font-family: 'Magic Retro';
    src: url('fonts/Magic\ Retro.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: POPPINS;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
  }
  a {
    text-decoration: none;
    color: inherit;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  
 
  /* Profile Page */
  .profile-container {
    max-width: 800px;
    margin: 50px auto;
    background: #fff;
    padding: 30px;
    border-radius: 5px;
  }
  .profile-info {
    display: flex;
    align-items: center;
  }
  .profile-info img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 20px;
  }
  .profile-actions {
    margin-top: 20px;
  }
  .profile-actions .btn {
    margin-right: 10px;
    padding: 10px 15px;
    background: #28a745;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
  }
  .profile-actions .btn:hover {
    background: #218838;
  }

  /* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    padding: 10px 20px;
    border-bottom: 1px solid #ddd;
    flex-wrap: wrap;
}

/* Logo */
.logo img {
    height: 70px;
}

/* Search Bar */
.search-bar {
    display: flex;
    align-items: center;
    background: #f8f8f8;
    padding: 5px 10px;
    border-radius: 20px;
    border: 1px solid #ddd;
    width: 100%;
    max-width: 500px;
}

.search-bar input {
    border: none;
    outline: none;
    background: transparent;
    padding: 8px;
    flex: 1;
}

.search-bar button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 20px;
}

/* Right Section: Location, Sign-In, Profile */
.right-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Location Dropdown */
.location-select select {
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

/* Sign In Button */
.btn {
    background: red;
    color: white;
    padding: 6px 15px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
}

/* User Profile Image */
.user-profile img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    background: #e0e0e0;
    width: 100%;
    padding: 10px 0;
    justify-content: center;
}

.nav-links li a {
    color: #333;
    padding: 10px 15px;
    font-weight: bold;
    transition: color 0.3s ease;
    text-decoration: none;
}

.nav-links li a:hover {
    color: red;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1000;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: #333;
    margin-bottom: 4px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .navbar {
        position: relative;
    }
    .nav-links {
        display: none; /* Hidden by default */
        flex-direction: column;
        position: fixed;
        top: 70px; /* Adjust this based on your navbar height */
        right: -100%; /* Start off-screen */
        width: 250px;
        height: auto; /* Adjust to fit content */
        background: #e0e0e0;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
        padding: 0; /* Remove extra padding */
    }
    
    .nav-links.active {
        right: 0;
        display: flex;
    }
    
    .nav-links ul {
        margin: 0;
        padding: 0;
        list-style: none; /* Remove default list styling */
    }
    
    .nav-links li {
        margin: 0;
        padding: 15px 20px; /* Adjust padding for spacing */
        border-bottom: 1px solid #ccc; /* Optional: Adds a separator */
    }
    
    .nav-links li:last-child {
        border-bottom: none; /* Remove border from last item */
    }
    
    

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}
  
  /* Events Page */
  .events-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
  }
  .events-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 20px;
  }
  .event-item {
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  .event-details h3 {
    margin-bottom: 10px;
  }
  .event-details p {
    margin-bottom: 5px;
  }
  
  /* Event Preview Page */
  .event-preview {
    max-width: 800px;
    margin: 50px auto;
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    text-align: center;
  }
  
  /* Confirmation Page */
  .confirmation {
    max-width: 500px;
    margin: 50px auto;
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    text-align: center;
  }
  
  /* Modal Pop-up */
  .modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
  }
  .modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 5px;
    text-align: center;
  }
  .close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }
  .close-btn:hover,
  .close-btn:focus {
    color: #000;
  }
  
  /* Responsive Styles */
  
  @media (max-width: 480px) {
    .hero h1 {
      font-size: 2.5rem;
    }
    .hero p {
      font-size: 1rem;
    }
  }
  
/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}






/* Footer */

.footer-container .footer-logo img{
    height: 80px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #232323;
    color: white;
    padding: 20px;
    text-align: left;
}
.footer-container > div {
    flex: 1;
    min-width: 250px;
    margin: 10px;
}
.footer-container h4 {
    margin-bottom: 10px;
    font-size: 18px;
}
.footer-container ul {
    list-style: none;
}
.footer-container ul li {
    margin-bottom: 5px;
}
.footer-container ul li a {
    transition: color 0.3s;
}
.footer-container ul li a:hover {
    color: white;
}
.contact-info p {
    margin-bottom: 5px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-container > div {
        margin-bottom: 20px;
    }
}
 

/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Carousel - Edge to Edge */
.carousel {
    width: 100vw; /* Full width */
    overflow: hidden;
    padding: 10px 0;
    background: white; /* Keep background fixed */
    position: relative;
    display: flex;
    align-items: center;
}

/* Track for Infinite Scrolling */
.carousel-track {
    display: flex;
    gap: 20px; /* Space between images */
    animation: scrollAnimation 20s linear infinite;
}

/* Individual Slide */
.carousel-slide {
    flex-shrink: 0;
}

.carousel-slide img {
    width:310px; /* Adjust width */
    height: 100px; /* Adjust height */
    object-fit: cover;
    border-radius: 10px; /* Soft rounded edges */
}

/* Infinite Scroll Animation */
@keyframes scrollAnimation {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .carousel-slide img {
        width: 180px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .carousel-slide img {
        width: 140px;
        height: 100px;
    }
}
/* General Styles */
main {
    width: 90%;
    margin: auto;
    text-align: center;
    font-family: poppins;
}

.main {
    width: 90%;
    margin: auto;
    text-align: center;
    font-family: poppins;
}
/* Section Titles */
.section-title {
    margin-top: 20px;
    font-size: 24px;
    font-weight: bold;
    text-align: left;
    margin-bottom: 15px;
}

/* Event Container */
.event-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Event Card */
.event-card {
    width: 230px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    text-align: center;
    position: relative;
}

/* Event Image */
.event-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Event Details Overlay */
.event-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #ff1a1a; /* Bright red */
    color: white;
    padding: 8px 12px;
    text-align: left;
    box-sizing: border-box;
}

/* Align Event Title & Price to the Left */
.event-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 50%;
}

/* Align Event Date & Location to the Right */
.event-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 50%;
    text-align: right;
}

/* Event Title */
.event-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 1px;
}

/* Event Info */
.event-info {
    font-size: 14px;
    margin-bottom: 1px;
}
.event-price {
    font-size: 13px;
    font-weight: bold;
}

.event-date,
.event-location {
    font-size: 13spx;
    margin: 2px 5px; /* Reduce vertical margin */
    display: block; /* Ensures both stay on separate lines */
}



/* Adjust button styling */
.event-details {
    padding-bottom: 30px; /* Adds space above the button */
}

.book-now {
    margin-top: 0; /* Remove margin-top */
    width: 100%;
    font-weight: bold;
    background: #6e1212; /* Dark red */
    color: #ecc8c8;
    border: none;
    padding: 10px; /* Increased padding for better appearance */
    font-size: 14px;
    cursor: pointer;
    border-radius: 0; /* Remove rounded corners */
    transition: 0.3s;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}



.book-now:hover {
    background: black;
    color: white;
}

/* Event Description */
.event-description {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.event-description p {
   text-align: center;
}

/* Highlight Sections */
.highlight-section {
    background-color: #d3d3d3;
    font-size: 20px;
    font-weight: bold;
    padding: 15px;
}

.highlight-section p {
    margin: 10px 0;
    color: red;
    text-align: center;
}   

/* Booking Info */
.booking-info {
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .event-container {
        flex-direction: column;
        align-items: center;
    }

    .event-card {
        width: 90%;
    }
}

.about-img h1 {
    font-family: 'Magic Retro', sans-serif;
    background-image: url(Images/aboutus.jpg);
    background-size: cover;  /* Ensures full coverage */
    background-position: center top -90px; /* Moves the image up slightly */
    text-align: center;
    color: white;
    font-size: 50px;
    padding: 100px;
}
.entertainment-img h1 {
    font-family: 'Magic Retro', sans-serif;
    background-image: url(Images/entertainmentbg.jpg);
    background-size: cover;  /* Ensures full coverage */
    background-position: center top -90px; /* Moves the image up slightly */
    text-align: center;
    color: white;
    font-size: 50px;
    padding: 100px;
}
.jobs-img h1 {
  font-family: 'Magic Retro', sans-serif;
  background-image: url(Images/jobsbg.jpg);
  background-size: cover;  /* Ensures full coverage */
  background-position: center top -90px; /* Moves the image up slightly */
  text-align: center;
  color: white;
  font-size: 50px;
  padding: 100px;
}
.sports-img h1 {
  font-family: 'Magic Retro', sans-serif;
  background-image: url(Images/sportsbg.jpg);
  background-size: cover;  /* Ensures full coverage */
  background-position: center top -90px; /* Moves the image up slightly */
  text-align: center;
  color: white;
  font-size: 50px;
  padding: 100px;
}
.expo-img h1 {
  font-family: 'Magic Retro', sans-serif;
  background-image: url(Images/expobg.jpg);
  background-size: cover;  /* Ensures full coverage */
  background-position: center top -90px; /* Moves the image up slightly */
  text-align: center;
  color: white;
  font-size: 50px;
  padding: 100px;
}
.social-img h1 {
  font-family: 'Magic Retro', sans-serif;
  background-image: url(Images/socailbg.jpg);
  background-size: cover;  /* Ensures full coverage */
  background-position: center top -90px; /* Moves the image up slightly */
  text-align: center;
  color: white;
  font-size: 50px;
  padding: 100px;
}
.student-img h1 {
  font-family: 'Magic Retro', sans-serif;
  background-image: url(Images/studentbg.jpg);
  background-size: cover;  /* Ensures full coverage */
  background-position: center top -90px; /* Moves the image up slightly */
  text-align: center;
  color: white;
  font-size: 50px;
  padding: 100px;
}

/* Event Preview Container */
.event-preview-container {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

/* Event Banner Section */
/* Event Banner Section */
.event-banner-section {
    display: flex;
    flex-direction: row; /* Align items horizontally */
    align-items: flex-start; /* Align items to the top */
    margin-bottom: 20px;
    gap: 20px; /* Add space between image and content */
}

.event-banner {
    flex: 1; /* Take up available space */
    max-width: 50%; /* Limit the width of the image */
}

.event-banner img {
    width: 70%;
    border-radius: 10px;
}

.event-details-section {
    flex: 1; /* Take up available space */
    text-align: left; /* Align text to the left */
    margin-top: 0; /* Remove top margin */
}

.event-title {
    font-family: 'magic retro', sans-serif;
    font-size: 2rem;
}

.event-subtitle {
    font-size: 1.2rem;
}

.event-date-location {
    font-size: 1rem;
    margin: 10px 0;
}

.book-now1 {
    padding: 10px 20px;
    background-color: #ff1500;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 10px;
}

.book-now1:hover {
    background-color: #ff4a3d;
}

/* Event Description Section */
.event-description-section {
    margin-bottom: 20px;
}

.event-description-section h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.description-line {
    width: 100%;
    height: 1px;
    background-color: #ccc;
    margin-bottom: 10px;
}

.event-description-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Event Organizers Section */
.event-organizers {
    margin-bottom: 20px;
}

.event-organizers h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.organizer-line {
    width: 100%;
    height: 1px;
    background-color: #ccc;
    margin-bottom: 10px;
}

.organizer-logos {
    display: flex;
    justify-content: left;
    gap: 20px;
    padding: 10px;
}

.organizer-logos img {
    max-width: 150px;
    border-radius: 10px;
    border: 2px solid #000;
    padding: 5px;
}

/* Contact Section */
.contact-section {
    margin-bottom: 20px;
}

.contact-section h2 {
    font-size: 2rem;
    color: #000000;
    margin-bottom: 10px;
}

.contact-line {
    width: 100%;
    height: 1px;
    background-color: #ccc;
    margin-bottom: 10px;
}

.contact-section {
    display: flex; /* Make all elements inside it align in one line */
    align-items: center; /* Align text properly */
    gap: 20px; /* Space between names */
    flex-wrap: wrap; /* Ensures responsiveness */
}

.contact-section p {
    font-size: 1rem;
    color: #000000;
    margin: 5px 0;
    display: flex;
    align-items: center;
    gap: 10px; /* Space between name and number */
}

.contact-number {
    font-weight: bold;
    color: #ff0000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .event-banner-section {
        flex-direction: column; /* Stack image and content vertically on smaller screens */
    }

    .event-banner {
        max-width: 100%; /* Full width for the image on smaller screens */
    }

    .event-details-section {
        text-align: center; /* Center text on smaller screens */
    }

    .organizer-logos {
        flex-direction: column;
        align-items: center;
    }
}
.confirmation-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    background-color: #f4f4f4;
    padding: 20px;
  }
  
  .confirmation-card {
    background: #e0e0e0;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 500px;
    width: 100%;
  }
  
  .event-title1 {
    font-family: 'Magic Retro';
    font-size: 28px;
    font-weight: 700;
    color: #000;
  }
  
  .event-subtitle1 {
    font-size: 18px;
    color: #444;
    margin: 5px 0;
  }
  
  .event-details1 {
    font-size: 16px;
    color: #444;
  }
  
  hr {
    border: none;
    height: 1px;
    background: #ccc;
    margin: 15px 0;
  }
  
  .confirmation-icon {
    width: 80px;
    margin: 10px 0;
  }
  
  .confirmation-message {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
  }
  
  .home-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 15px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 8px;
    transition: 0.3s;
  }
  
  .home-button:hover {
    background: #444;
  }
/* Event Container */
.event-container2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Left Section */
.event-details2 {
    width: 50%;
    padding: 20px;
    text-align: left;
}

.event-title2 {
    font-family: 'Magic Retro', sans-serif;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 4px;
}

.event-subtitle2, .event-date2 {
    font-size: 18px;
    color: #555;
    margin-bottom: 4px;
}

/* Registration Slab */
.registration-section2 h3,
.ticket-selection2 h3 {
    font-size: 20px;
    margin: 15px 0;
    color: #333;
}

.price-options2 {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.price-btn2 {
    padding: 10px 15px;
    border: 2px solid black;
    border-radius: 5px;
    background: white;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.price-btn2:hover {
    background: #0a5800;
    color: white;
    border-color: #0a5800;
}

/* Ticket Selection */
.ticket-options2 {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.ticket-btn2 {
    width: 40px;
    height: 40px;
    border: 2px solid black;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    background: white;
    transition: background 0.3s, color 0.3s;
}

.ticket-btn2:hover {
    background: #0a5800;
    color: white;
    border-color: #0a5800;
}

/* Proceed Button */
.proceed-btn2 {
    background: red;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    width: 80%;
    max-width: 200px;
}

.proceed-btn2:hover {
    background: darkred;
}

/* Right Section - Poster */
.event-poster2 {
    width: 35%;
    padding: 20px;
}

.event-poster2 img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Horizontal Line */
.section-divider {
    border: none;
    height: 2px;
    background: #ccc;
    margin: 20px 0;
}

/* ===========================
   📱 Responsive Media Queries
   =========================== */

/* Tablets & Small Laptops (max-width: 1024px) */
@media (max-width: 1024px) {
    .event-container2 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .event-details2 {
        width: 100%;
    }

    .price-options2 {
        justify-content: center;
    }

    .ticket-options2 {
        justify-content: center;
    }

    .event-poster2 {
        width: 80%;
        padding-top: 20px;
    }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
    .event-title2 {
        font-size: 28px;
    }

    .event-subtitle2, .event-date2 {
        font-size: 16px;
    }

    .price-btn2 {
        font-size: 14px;
        padding: 8px 12px;
    }

    .ticket-btn2 {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .proceed-btn2 {
        width: 100%;
    }

    .event-poster2 {
        width: 100%;
    }
}

/* Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
    .event-title2 {
        font-size: 24px;
    }

    .event-subtitle2, .event-date2 {
        font-size: 14px;
    }

    .price-options2 {
        flex-direction: column;
        gap: 5px;
    }

    .ticket-options2 {
        gap: 5px;
    }

    .proceed-btn2 {
        font-size: 14px;
        padding: 10px;
    }
}
/* User Profile Section */
.user-profile-section {
    display: flex;
    justify-content: flex-start;
    padding: 20px;
}

/* User Profile Card */
.user-profile-card {
    display: flex;
    flex-direction: column;
    background: #e0e0e0;
    padding: 30px 20px;
    border-radius: 10px;
    width: 320px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    align-items: center;
    text-align: center;
    position: relative;
}

/* Profile Picture */
.user-profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: -60px; /* Moves profile pic up */
}

/* Profile Info Layout */
.user-profile-info {
    display: grid;
    grid-template-columns: auto auto; /* Two columns */
    column-gap: 15px;
    row-gap: 15px; /* Increased gap between rows */
    text-align: left;
    width: 100%;
    margin-top: 70px; /* Creates space below the profile pic */
}

/* Profile Info Text */
.user-profile-info p {
    margin: 5px 0;
    font-size: 16px;
    color: #555;
}

/* Label Styling */
.user-profile-info strong {
    font-weight: bold;
    color: #333;
}

/* Additional Spacing */
.user-profile-info span {
    display: block;
}

/* Events Section */
.events-section {
    text-align: left;
    padding: 20px;
    width: 100%;
}

.events-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
}

/* Event Cards Layout */
.events-box {
    width: 70%;
    display: flex;
    flex-direction: column;
}

.events-section h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.upcoming-events-container, .past-events-container {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.event-card-upcoming, .event-card-past {
    width: 250px;
    height: 100px;
    background: #e0e0e0;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #333;
}

/* Explore Events Button */
.explore-events-btn {
    margin-top: 20px;
    padding: 10px 20px;
    border: 1px solid #333;
    background: white;
    cursor: pointer;
    border-radius: 5px;
    width: 30%;
}

/* Responsive Design */

/* Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
    .user-profile-section {
        flex-direction: column;
        align-items: center;
    }
    
    .user-profile-card {
        width: 90%;
    }

    .events-container {
        flex-direction: column;
        align-items: center;
    }

    .events-box {
        width: 100%;
    }

    .upcoming-events-container, .past-events-container {
        justify-content: center;
    }

    .event-card-upcoming, .event-card-past {
        width: 80%;
    }

    .explore-events-btn {
        width: 50%;
    }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
    .user-profile-section {
        padding: 10px;
    }

    .user-profile-card {
        width: 100%;
        padding: 20px;
    }

    .user-profile-pic {
        width: 100px;
        height: 100px;
        top: -50px;
    }

    .user-profile-info {
        grid-template-columns: 1fr; /* Single column layout */
        text-align: center;
    }

    .events-container {
        padding: 10px;
    }

    .upcoming-events-container, .past-events-container {
        flex-direction: column;
        align-items: center;
    }

    .event-card-upcoming, .event-card-past {
        width: 90%;
        height: auto;
        padding: 20px;
    }

    .explore-events-btn {
        width: 70%;
    }
}

/* Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
    .user-profile-card {
        width: 100%;
        padding: 15px;
    }

    .user-profile-pic {
        width: 80px;
        height: 80px;
        top: -40px;
    }

    .events-section {
        padding: 10px;
    }

    .event-card-upcoming, .event-card-past {
        width: 100%;
        padding: 15px;
    }

    .explore-events-btn {
        width: 100%;
    }
}
.book-now-link {
    text-decoration: none; /* Remove default link underline */
}

.book-now1 {
    background-color: #ff5733;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.book-now1:hover {
    background-color: #d9432a;
}
/* Payment Container */
.payment-container3 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    gap: 40px;
    border-radius: 10px;
}

/* Order Summary Section */
.order-summary3 {
    flex: 1;
    max-width: 60%;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Event Header */
.event-header3 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.event-details3 {
    text-align: left;
}

.event-title3 {
    font-size: 28px;
    font-weight: bold;
    color: #0e152f;
    margin-bottom: 10px;
}

.event-info3 {
    font-size: 18px;
    color: #666;
    margin-bottom: 5px;
}

.event-date3 {
    font-size: 16px;
    color: #999;
    margin-bottom: 0;
}

.registration-status3 {
    background-color: #1d3557;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 70px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    align-self: flex-start;
}

.registration-status3:hover {
    background-color: #14273e;
}

/* Divider Line */
.divider3 {
    border: 1px solid #ddd;
    margin: 20px 0;
}

/* Summary Section */
.summary-section3 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.summary-details3 {
    flex: 1;
    text-align: left;
}

.summary-details3 h3 {
    font-size: 20px;
    color: #0e152f;
    margin-bottom: 15px;
}

.summary-details3 p {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

/* Payment QR Section */
.payment-qr3 {
    text-align: center;
    padding: 15px;
    border-left: 1px solid #ddd;
    margin-left: 20px;
}

.payment-qr3 img {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
}

.payment-qr3 p {
    font-size: 16px;
    color: #0e152f;
    font-weight: bold;
}

/* Payment Confirm Button */
.payment-confirm-btn3 {
    background-color: #e63946;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    width: 35%;
    transition: 0.3s;
}

.payment-confirm-btn3:hover {
    background-color: #c5303d;
}

/* Event Banner Section */
.event-banner3 {
    flex: 1;
    max-width: 40%;
    text-align: center;
}

.event-banner3 img {
    width: 88%;
    max-width: 400px;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .payment-container3 {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .order-summary3,
    .event-banner3 {
        max-width: 100%;
    }

    .event-banner3 img {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .event-title3 {
        font-size: 24px;
    }

    .event-info3 {
        font-size: 16px;
    }

    .event-date3 {
        font-size: 14px;
    }

    .registration-status3,
    .payment-confirm-btn3 {
        font-size: 14px;
        padding: 10px 15px;
    }

    .summary-details3 h3 {
        font-size: 18px;
    }

    .summary-details3 p {
        font-size: 14px;
    }

    .payment-qr3 img {
        width: 120px;
        height: 120px;
    }

    .payment-qr3 p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .payment-container3 {
        padding: 15px;
    }

    .event-title3 {
        font-size: 22px;
    }

    .event-info3 {
        font-size: 14px;
    }

    .event-date3 {
        font-size: 12px;
    }

    .registration-status3,
    .payment-confirm-btn3 {
        font-size: 12px;
        padding: 8px 12px;
    }

    .summary-details3 h3 {
        font-size: 16px;
    }

    .summary-details3 p {
        font-size: 12px;
    }

    .payment-qr3 img {
        width: 100px;
        height: 100px;
    }

    .payment-qr3 p {
        font-size: 12px;
    }
}