 body {
            font-family: Arial, sans-serif;
            background-color: #f2f2f2;
            margin: 0;
            padding: 0;
        }
        .page-wrapper {
            max-width: 800px;
            margin: auto;
            padding: 20px;
            
        }
        .app-container {
            background-color: #fff;
            padding: 20px;
            margin-bottom: 30px;
            border-radius: 0 0 8px 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        .title {
            text-align: center;
            color: #333;
        }
        .tab-header {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
        }
        .tab-btn {
            padding: 10px 20px;
            margin: 0 5px;
            background-color: #e0e0e0;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
        }
        .tab-btn.active {
            background-color: #007BFF;
            color: #fff;
        }
        .tab-content {
            display: none;
        }
        .tab-content.active {
            display: block;
        }
        .ticket-form label {
            display: block;
            margin-top: 18px;
            color: grey;
          
        }
        .ticket-form input[type="text"]
        {
            width: 100%;
            padding: 8px;
            font-size: 16px;
            margin-top: 5px;
            border-radius: 4px;
            border: 1px solid #ccc;
        }
        select {
          -webkit-appearance: none;
          -moz-appearance: none;
          appearance: none;
          padding: 8px;
          font-size: 16px;
          margin-top: 5px;
          border: 1px solid #ccc;
          border-radius: 6px;
          background-color: #fff;
          width: 100%;
          box-sizing: border-box;
        }
        .select-wrapper {
          position: relative;
          display: inline-block;
          width: 100%;
        }
        
        .select-wrapper::after {
          content: '▼';
          position: absolute;
          right: 12px;
          top: 50%;
          transform: translateY(-50%);
          pointer-events: none;
          font-size: 12px;
          color: #666;
        }
        
        .ticket-form input[type="text"]:focus,
        select:focus,
        textarea:focus {
            border: 1px solid #ff007f; 
            outline: none;      
        }

        .total {
            margin-top: 15px;
            font-size: 1.2em;
            font-weight: bold;
        }
        .btn {
            margin-top: 20px;
            padding: 10px 20px;
            background-color: #ff007f;
            border: none;
            color: #fff;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1em;
            width:100%;
        }
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }
        .modal-content {
            background-color: #fff;
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            max-width: 500px;
            width: 90%;
        }
        
        .spinner {
            border: 6px solid #f3f3f3;
            border-top: 6px solid green;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            animation: spin 1s linear infinite;
            margin: 20px auto;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @media (max-width: 600px) {
            .tab-header {
                flex-direction: column;
                align-items: center;
            }
            .tab-btn {
                margin: 5px 0;
                width: 100%;
            }
            .app-container {
                width:90%;
                margin:auto;
            }
        }
        /* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

    /* Fixed Top Bar */
    .top-bar {
       /* position: sticky; */
        top: 0;
        width: 100%;
        background: #E7EEFF;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    .top-bar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
    }
    
    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .menu {
        display: flex;
        gap: 20px;
    }
    
    .menu a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
    }
    
    .menu-toggle {
        display: none;
        font-size: 28px;
        cursor: pointer;
    }
    
    .hero-section {
        position: relative;
        background: url('../images/bg-wide.jpg') no-repeat center center/cover;
        padding: 60px 20px;
        text-align: center;
        color: white;
        background-color: #009688; /* fallback */
        overflow: hidden;
    }
    .hero-section::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: inherit;
        filter: blur(3px) brightness(0.8);
        z-index: 0;
    }
    .hero-content {
        max-width: 700px;
        margin: auto;
        position: relative;
        z-index: 1;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }
    
    .btn-hero {
        background: #fff;
        color: #FF00A1;
        padding: 12px 24px;
        font-weight: bold;
        border: none;
        text-decoration: none;
        border-radius: 5px;
    }
    
    /* Mobile Styles */
    @media (max-width: 768px) {
        .menu {
            display: none;
            flex-direction: column;
            background: #ffffff;
            position: absolute;
            top: 60px;
            right: 20px;
            padding: 10px 20px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
            border-radius:12px;
        }
    
        .menu.show {
            display: flex;
            z-index:2;
        }
    
        .menu-toggle {
            display: block;
            color: #FF00A1;
    
        }
        .hero-section {
            background-image: url('../images/bg-mobile.jpg');
        }
    }
    .getticket {
      display: inline-block;
      padding: 8px 16px;
      color: #3e2723;
      background-color: #f5deb3;
      border: 2px dashed #8b4513;
      border-radius: 10px;
      font-family: 'Special Elite', serif; /* Looks aged/rough */
      font-size: 18px;
      text-decoration: none;
      box-shadow: 2px 2px 4px rgba(0,0,0,0.4);
      letter-spacing: 1px;
      margin-top: 15px;
    }
    
    .user-type-selector {
        display: flex;
        width: 100%;
        margin-bottom: 0;
        border: 1px solid #ff007f;
        border-radius: 8px 8px 0 0;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
       
    }
    
    .user-button {
        flex: 1;
        padding: 12px 0;
        text-align: center;
        border: 1px solid #ff007f;
        background: #f9f9f9;
        font-size: 16px;
        cursor: pointer;
        transition: background 0.3s;
        color:black;
    }
    
    .user-button:first-child {
        border-right: none; /* So the border in the middle doesn’t double */
        border-radius: 8px 0 0 0;
    }
     .user-button:nth-child(2) {
        border-radius: 0 8px 0 0;
    }
    
    .user-button:hover {
        background: #eaeaea;
    }
    
    .user-button.active {
        background: #ff007f;
        color: white;
        font-weight: bold;
    }
 @media (max-width: 600px) {
          
            .user-type-selector {
                width:90%;
                margin:auto;
            }
        }
    .bottom-bar {
      background-color: #E7EEFF;
      color: black;
      text-align: center;
      padding: 15px 0;
      font-size: 14px;
      margin-top: 40px; /* Add spacing from content above */
    }
    
    .ticket-success {
    background-color: #e0ffe6;
    border-left: 5px solid #28a745;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 10px;
    text-align: center;
}
    .partners {
      text-align: center;
      padding: 50px 20px;
      background-color: #f4f4f4;
    }
    
    .partners h4 {
      font-size: 24px;
      margin-bottom: 30px;
      font-weight: bold;
      color: #333;
    }
    
    .partner-logos {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
    }
    
    .partner-logos img {
      height: 120px;
      max-width: 420px;
      object-fit: contain;
      transition: opacity 0.3s ease;
     
    }
    
    .partner-logos img:hover {
      opacity: 1;
      filter: grayscale(50%);
    }
    
    .dot-anim::after {
        content: '';
        display: inline-block;
        animation: dots 1.5s steps(3, end) infinite;
        font-size: 24px; /* Bigger dots */
        line-height: 1;
        vertical-align: middle;
        width: 1.5em;
        text-align: left;
    }
    
    @keyframes dots {
        0%   { content: ''; }
        33%  { content: '.'; }
        66%  { content: '..'; }
        100% { content: '...'; }
    }
