/* General Styles */
.adgoc-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3x3 Grid */
    gap: 20px;
    padding: 40px;
    max-width: 1200px;
    margin: auto;
}

.adgoc-card {
    background-color: #040622;
    border-radius: 10px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 0, 102, 0.5);
    box-shadow: 0 0 10px rgba(255, 0, 102, 0.2);
    transition: 0.3s;
}

.adgoc-card:hover {
    transform: translateY(-5px);
}

.adgoc-btn {
    background-color: #ff0066;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.adgoc-btn:hover {
    background-color: #ff3385;
}

.adgoc-white {
    background-color: white;
    color: #ff0066;
}

/* ICON CONTAINER */
.adgoc-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    position: relative;
}

/* 🏷 Ticket Icon */
.adgoc-ticket {
    width: 50px;
    height: 30px;
    border: 2px solid white;
    border-radius: 5px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.adgoc-ticket::before, .adgoc-ticket::after {
    content: "";
    width: 10px;
    height: 10px;
    background: black;
    border-radius: 50%;
    position: absolute;
}
.adgoc-ticket::before { top: -5px; left: 5px; }
.adgoc-ticket::after { bottom: -5px; right: 5px; }

/* 🏛 Table Icon */
.adgoc-table {
    width: 45px;
    height: 12px;
    background: white;
    position: relative;
    border-radius: 3px;
}
.adgoc-table::before, .adgoc-table::after {
    content: "";
    width: 6px;
    height: 15px;
    background: white;
    position: absolute;
    border-radius: 2px;
}
.adgoc-table::before { left: 3px; bottom: -15px; }
.adgoc-table::after { right: 3px; bottom: -15px; }

/* 💼 Showcase Icon */
.adgoc-showcase {
    width: 38px;
    height: 30px;
    border: 2px solid white;
    border-radius: 5px;
    position: relative;
}
.adgoc-showcase::before {
    content: "";
    width: 25px;
    height: 15px;
    border-top: 2px solid white;
    position: absolute;
    top: -10px;
    left: 6px;
}
.adgoc-showcase::after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid white;
    position: absolute;
    bottom: -5px;
    left: 14px;
}

/* 📐 Floor Plan Icon */
.adgoc-floor-plan {
    width: 38px;
    height: 38px;
    border: 2px solid white;
    position: relative;
}
.adgoc-floor-plan::before, .adgoc-floor-plan::after {
    content: "";
    width: 12px;
    height: 12px;
    border: 2px solid white;
    position: absolute;
}
.adgoc-floor-plan::before { top: 6px; left: 6px; }
.adgoc-floor-plan::after { bottom: 6px; right: 6px; }

/* 🏨 Hotel Icon */
.adgoc-hotel {
    width: 32px;
    height: 35px;
    border: 2px solid white;
    position: relative;
}
.adgoc-hotel::before {
    content: "";
    width: 20px;
    height: 5px;
    background: white;
    position: absolute;
    bottom: -7px;
    left: 6px;
}
.adgoc-hotel::after {
    content: "";
    width: 5px;
    height: 10px;
    background: white;
    position: absolute;
    bottom: -12px;
    left: 13px;
}

/* 🤝 Sponsorship Icon */
.adgoc-sponsorship {
    width: 35px;
    height: 20px;
    border: 2px solid white;
    border-radius: 5px;
    position: relative;
}
.adgoc-sponsorship::before, .adgoc-sponsorship::after {
    content: "";
    width: 10px;
    height: 10px;
    background: white;
    position: absolute;
    border-radius: 50%;
}
.adgoc-sponsorship::before { left: -12px; top: 5px; }
.adgoc-sponsorship::after { right: -12px; top: 5px; }
.adgoc-sponsorship::after {
    border: 2px solid white;
    background: transparent;
}
.adgoc-footer {
  background-color: #0a0f25;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  text-align: center;
  padding: 20px;
  position: relative;
}

.adgoc-footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.adgoc-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.adgoc-icon-link {
  display: inline-block;
  width: 40px;
  height: 40px;
}

.adgoc-icon {
  width: 40px;
  height: 40px;
  display: block;
}

.adgoc-links {
  margin-bottom: 10px;
}

.adgoc-link {
  color: #ffffff;
  text-decoration: none;
  margin: 0 5px;
}

.adgoc-link:hover {
  text-decoration: underline;
}

.adgoc-divider {
  margin: 0 5px;
  color: #ffffff;
}

.adgoc-copyright {
  margin-top: 10px;
  font-size: 12px;
  opacity: 0.8;
}

.adgoc-scroll-up {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.adgoc-scroll-icon {
  display: inline-block;
  background-color: #e11d48;
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.adgoc-scroll-icon:hover {
  background-color: #be123c;
}
.swiper-slide img
{
max-height:148px;
}