header {
  width: 100%;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
}

.con ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

.con ul a {
  font-size: 17px;
  color: #fff;
  text-decoration: none;
}

.nav-conatiner {
  display: grid;
  grid-template-columns: 1fr 3fr 1fr;
  align-items: center;
  width: 100%;
  color: #212529;
}

.logo {
  text-align: center;
  height: 100px;
  width: auto;
  padding: 6px;
}

.logo img {
  height: 100%;
  width: auto;
}

.con {
  display: flex;
  justify-content: space-evenly;
}

/* page2 css */

.banner {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the entire area */
  display: block;
}

form .input-lst input {
  height: 50px;
  font-size: 13px;
  color: #666666;
  padding-left: 20px;
  border: 1px solid #e1e1e1;
  width: calc(33.33% - 20px);
  margin-bottom: 20px;
  margin-right: 16px;
}

form #txt-hold {
  height: 120px;
  font-size: 13px;
  color: #666666;
  padding-left: 20px;
  padding-top: 12px;
  border: 1px solid #e1e1e1;
  width: 100%;
  margin-bottom: 14px;
  resize: none;
}

.sub-btn button {
  font-size: 15px;
  color: #ffffff;
  background: #5c00ce;
  font-weight: 700;
  letter-spacing: 2px;
  border: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 14px 30px;
  width: 100%;
}

.con-lst {
  list-style: none;
  padding: 0px;
}

.con-lst li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.con-lst li i {
  font-size: 22px;
  background-color: #f5f5f5;
  border-radius: 50%;
  padding: 12px;
  color: #5c00ce;
  margin-right: 15px;
  min-width: 46px;
  /* To keep icon size consistent */
  text-align: center;
}

.con-lst li h5 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
}

.con-lst li p {
  margin: 5px 0 0 0;
  font-size: 15px;
  color: #666;
}

.fa-location-dot {
  font-size: 22px;
  background-color: #f5f5f5;
  border-radius: 50%;
  padding: 12px;
  color: #5c00ce;
  margin-right: 10px;
  margin-bottom: 10px;
}

.fa-phone {
  font-size: 22px;
  background-color: #f5f5f5;
  border-radius: 50%;
  padding: 12px;
  margin-right: 10px;
  margin-bottom: 10px;
  color: #5c00ce;
}

.fa-envelope {
  font-size: 22px;
  background-color: #f5f5f5;
  border-radius: 50%;
  padding: 12px;
  margin-right: 10px;
  margin-bottom: 10px;
  color: #5c00ce;
}

.con-info h1 {
  margin-bottom: 12px;
}

.con-info .lorem {
  margin-bottom: 18px;
}

.map .box {
  width: 100%;
}

.map iframe {
  border: 1px solid blue;
  width: 100%;
  height: 500px;
  /* You can make it even taller if you want */
  border: 0;
}
.map {
  margin-top: 50px;
  margin-bottom: 10px;
}

body {
  background-color: #0d0d0d;
  color: #f5f5f5;
  font-family: "Orbitron", sans-serif;
}
body {
  padding-top: 80px; /* Push down everything to avoid overlap */
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #111; /* Add background so content under it is hidden */
}
html,
body {
  overflow-x: hidden;
}

a {
  color: #ff0057;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #00ffe0;
}

button {
  background: linear-gradient(135deg, #ff0057, #a100ff);
  color: #fff;
  border: none;
  padding: 14px 30px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background: #00ffe0;
  color: #0d0d0d;
}

.nav-conatiner,
aside, 
footer,
.section {
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 12px;
}
.nav-conatiner{
  padding:0px;
}
.contact-spad {
  margin-bottom: 30px;
  margin-top: 20px;
}
.faq-section {
  margin-top: 60px;
  color: #fff;
}

.faq-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ff6a00;
  margin-bottom: 40px;
}

.accordion-item {
  background: #111;
  border: 1px solid #333;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.accordion-header {
  width: 100%;
  background: #1a1a1a;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 20px;
  border: none;
  outline: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background: #fff;
}

.accordion-header i {
  transition: transform 0.3s ease;
}

.accordion-header.active i {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0 20px;
  background: #1a1a1a;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-content p {
  margin: 20px 0;
  line-height: 1.6;
  color: #ccc;
}
/* Footer section*/
.dj-footer {
  background: linear-gradient(135deg, #000000, #1a1a1a);
  color: #fff;
  padding: 50px 20px 20px;
  position: relative;
  font-family: "Arial", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 2fr;
  gap: 40px;
}

.footer-sec h2 {
  font-size: 1.5em;
  color: #ff0055;
}

.footer-sec ul {
  list-style: none;
  padding: 0;
}

.footer-sec ul li {
  margin-bottom: 10px;
}

.footer-sec ul li a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

.footer-sec ul li a:hover {
  color: #ff0055;
}

.social-icons a {
  color: #fff;
  font-size: 1.5em;
  margin-right: 15px;
  transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
  color: #ff0055;
  transform: scale(1.2);
}

.new-letter input[type="email"] {
  padding: 10px;
  width: 70%;
  border: none;
  border-radius: 20px 0 0 20px;
  outline: none;
}

.new-letter button {
  padding: 10px 20px;
  background-color: #ff0055;
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 0 20px 20px 0;
  transition: 0.3s ease;
}

.new-letter button:hover {
  background-color: #e6004c;
}

.footer-bottom {
  text-align: center;
  padding: 15px 0;
  border-top: 1px solid #444;
  position: relative;
  font-size: 14px;
}

.ham {
  display: none;
}

aside {
  display: none;
}
.footer {
  margin-top: 15px;
}
.contact-wrap {
  display: flex;
  flex-direction: column;
}
@media (max-width: 820px) {
  .tickets {
    display: none;
  }
  .con ul {
    display: flex;
    list-style: none;
    gap: 17px;
  }
  .faq-section h2 {
    font-size: 2rem;
  }

  .accordion-header {
    font-size: 1.1rem;
    padding: 16px;
  }
  .contact-spad {
    display: flex;
    flex-direction: column;
  }
  .banner {
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }
  .footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .footer-sec h2 {
    font-size: 23px;
    color: #ff0055;
  }

  .footer-sec ul {
    list-style: none;
    padding: 0;
  }

  .footer-sec ul li {
    margin-bottom: 10px;
    font-size: 23px;
  }

  .footer-sec ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
    font-size: 20px;
  }
  p {
    font-size: 20px;
  }
  .footer-bottom {
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid #444;
    position: relative;
    font-size: 14px;
    margin-top: 28px;
  }
}

@media (max-width: 520px) {
  .faq-section {
    padding: 0 10px;
  }

  .faq-section h2 {
    font-size: 1.7rem;
  }

  .accordion-header {
    font-size: 1rem;
    padding: 14px;
  }

  .accordion-content {
    font-size: 0.95rem;
  }
  .no-scroll {
    overflow: hidden;
  }
  /* navbar media */

  .banner {
    width: 100%;
    height: auto;
  }

  .con {
    display: none;
  }
  .logo img {
    height: 50%;
    width: auto;
  }

  .nav-conatiner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    color: #212529;
    align-items: center;
    justify-items: start;
    padding: 0;
  }

  .ham {
    display: block;

    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 20px;
    z-index: 9999;
  }

  aside {
    position: fixed;
    top: 0;
    right: 0px;
    display: block;
    width: 300px;
    height: 500px;

    transition: transform 0.4s ease-in-out;
    transform: translateX(300px);
  }

  aside ul {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  aside ul li a {
    color: #ffff;
    text-decoration: none;
  }

  .con ul {
    display: none;
  }
  .con ul.active {
    display: block;
  }
  .con-info h1 {
    font-size: 25px;
  }

  #close-icon {
    display: none;

    cursor: pointer;
  }

  /* navbar ends */

  .footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .new-letter input[type="email"] {
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 20px 0 0 20px;
    outline: none;
  }

  .new-letter form {
    display: grid;
    grid-template-columns: 4fr 1fr;
    gap: 0;
  }

  .footer-bottom {
    text-align: center;
    padding: 12px 0;
    border-top: 1px solid #444;
    position: relative;
    font-size: 12px;
    margin-top: 30px;
  }
  .contact-spad {
    display: flex;
    flex-direction: column;
  }
  .btn {
    display: none;
  }
}

section {
  padding: 60px 0;
}
