
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #0f172a;
  color: #e2e8f0;
  line-height: 1.6;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: 'Hind', sans-serif;
  margin-bottom: 1rem;
}

p {
  color: #f59e0b;
}

.heading--1 {
  font-size: 2.75rem;
  color: #ffffff;
}

.heading--2 {
  font-size: 2.25rem;
  color: #e2e8f0;
}

.heading--3 {
  font-size: 1.5rem;
  color: #e2e8f0;
}

.heading--4 {
  font-size: 1.125rem;
  color: #f59e0b;
}

/* === CONTAINER === */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 1rem 2rem;
}

@media (max-width: 768px) {
  .container {
   padding: 0 1rem;
 }
}

.section {
  padding: 2rem;
  animation: fadeInUp 1.2s ease forwards;
  opacity: 0;
}

@media (max-width: 768px) {
  .section {
   padding: 1rem;
 }
}

/* === HEADER === */
.header {
  background: #0f172a;
  padding: 1rem 0;
  border-bottom: 1px solid #1e293b;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === NAVIGATION === */
.c-nav__content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.c-nav {
    padding: 0.5rem;
}

.c-list--flex {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.c-list {
  list-style-type: none;
}

.c-list__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease;
  position: relative;
}

.c-list__item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.c-list__icon--check::before {
  content: '✔';
  color: #f59e0b;
  font-weight: bold;
  font-size: 1rem;
  display: inline-block;
  margin-right: 0.25rem;
}

.c-list__text a {
  text-decoration: none;
  color: #f59e0b;
}

.c-link {
  transition: color 0.3s ease;
  color: #e2e8f0;
}

.c-link--list:hover {
  color: #38bdf8;
}

.c-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.c-logo .c-logo__img {
  height: 3rem;
}

.c-logo .c-logo__text {
  margin-left: 0.7rem;
  font-weight: 600;
}

.c-logo .c-logo__text--white {
  color: white;
}

.c-link {
  text-decoration: none;
}

/* === BUTTONS === */
.c-button {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  margin: 0rem;
}

.c-button--primary {
  background-color: #f59e0b;
  color: #fff;
}

.c-button--primary:hover {
  background-color: #b45309;
}

.c-button--secondary {
  background-color: transparent;
  color: #f59e0b;
  border: 2px solid #f59e0b;
}

.c-button--secondary:hover {
  background-color: #b45309;
  color: #0f172a;
}

.c-button--block {
  width: 100%;
}

/* === HERO SECTION === */
.c-hero {
  background-image: url('img/art.png');
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
}

.c-hero__content {
  max-width: 700px;
  margin: auto;
  animation: fadeInUp 1.3s ease forwards;
  opacity: 0;
}

.c-hero__button-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.slider {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.15);
}

.slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

.slides img {
  min-width: 100%;
  border-radius: 12px;
}

.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 1rem;
  z-index: 5;
  align-items: center;
}

.slider-nav button {
  background: linear-gradient(135deg, #1e3a8a, #0ea5e9);
  color: #ffffff;
  font-size: 1.5rem;
  border: none;
  padding: 0.4rem 0.75rem;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(14, 165, 233, 0.3);
  backdrop-filter: blur(4px);
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: 0 0 3px #38bdf8;
  height: auto;
  min-height: auto;
  max-height: 48px;
  line-height: 1;
}

.slider-nav button:hover {
  background: linear-gradient(135deg, #0ea5e9, #1e3a8a);
  color: #ffffff;
  box-shadow: 0 0 16px #38bdf8, 0 0 32px #0ea5e9;
  transform: scale(1.08);
  animation: flicker 0.7s infinite alternate;
}

/* === NAVIGATION DOTS === */
.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: 10px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  background-color: #334155;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slider-dots button.active {
  background-color: #38bdf8;
  box-shadow: 0 0 10px #38bdf8;
}

@keyframes flicker {
  0% {
    opacity: 1;
    text-shadow: 0 0 6px #38bdf8, 0 0 12px #0ea5e9;
  }
  100% {
    opacity: 0.85;
    text-shadow: 0 0 2px #0ea5e9, 0 0 8px #38bdf8;
  }
}

@media (max-width: 768px) {
  .slider {
    max-width: 100%;
  }

  .slider-nav button {
    font-size: 1.1rem;
    padding: 0.3rem 0.6rem;
    max-height: 40px;
    line-height: 1;
    animation: none;
    box-shadow: 0 0 8px rgba(14, 165, 233, 0.25);
  }

  .slider-nav {
    padding: 0 0.5rem;
  }

  .slider-dots {
    margin-top: 0.75rem;
  }
}


/* === CARD/FEATURE/PRICING === */
.c-card {
  background-color: #1e293b;
  padding: 2rem;
  border-radius: 16px;
  display: flex;
  gap: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 100%;
}

.c-card:hover,
.c-feature:hover,
.c-price:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(56, 189, 248, 0.15);
}

.c-feature {
  background-color: #1e293b;
  padding: 2rem;
  border-radius: 16px;
  display: flex;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 100%;
}

.c-price {
  background-color: #1e293b;
  padding: 2rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 100%;
}

.c-card:nth-child(even) {
  flex-direction: row-reverse;
}

.c-card__title {
  margin-bottom: 0.75rem;
}

/*.c-price--highlight {
  border: 2px solid #38bdf8;
}*/

.c-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

@media (max-width: 768px) {
  .c-card__content {
    max-width: 100%;
    align-items: center;
    text-align: center;
 }
}

.c-card__img-holder {
  display: flex;
  justify-content: center; 
  align-items: center; 
  overflow: hidden;
  flex: 1;
  min-width: 40%;
}

.c-card__img {
   max-width: 78%;
  max-height: 100%;
  object-fit: contain; 
}

@media (max-width: 768px) {
  .c-card,
  .c-feature,
  .c-price {
    flex-direction: column;
 }

 .c-card__img-holder {
    margin-top: 1rem;
    justify-content: center;
  }

  .c-card:nth-child(even) {
    flex-direction: column !important;
  }
}

/* === LAYOUT === */
.box--grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
}

@media (max-width: 768px) {
  .box--grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
 }

.box--flex {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.box--mt2 {
  margin-top: 2rem;
}

/* === FOOTER === */

.footer {
  font-family: "Forum", serif;
  position: relative;
  background: #0f172a;
  color: #cbd5e1;
  padding: 1rem;
  font-size: 0.95rem;
  overflow: hidden;
  z-index: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.9);
  z-index: 0; 
}

.footer .stars,
.footer .stars2,
.footer .stars3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 300%;
  height: 300%;
  background-repeat: repeat;
  background-size: contain;
  animation: moveStars linear infinite;
  mix-blend-mode: screen;
  pointer-events: none;
  opacity: 0.2;
}

.footer .stars {
  background-image: url('https://i.ibb.co/kgMbHgzK/stars1.png');
  animation-duration: 80s;
  z-index: 0;
}

.footer .stars2 {
  background-image: url('https://i.ibb.co/HDR03BBP/stars2.png');
  animation-duration: 160s;
  z-index: 1;
}

.footer .stars3 {
  background-image: url('https://i.ibb.co/C3wQsRzy/stars3.png');
  animation-duration: 240s;
  z-index: 2;
}

/* Star animation */
@keyframes moveStars {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Content container stays on top */
.footer .container {
  position: relative;
  z-index: 4;
}

.c-footer {
  display: flex;
  /*flex-wrap: wrap;*/
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.c-footer__column {
  /*min-width: 220px;*/
  /*display: flex;*/
  flex-direction: column;
}

.c-footer__brand {
  /*display: flex;*/
  /*align-items: center;*/
  /*gap: 0.75rem;*/
  /*margin-bottom: 1rem;*/
  text-decoration: none;
}

.c-footer__logo {
  height: 3rem;
  object-fit: contain;
}

.c-footer__brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #38bdf8;
}

.c-footer__subtitle {
  font-family: "Forum", serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #f1f5f9;
}

.c-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.c-footer__list li {
  margin-bottom: 0.5rem;
  color: #94a3b8;
}

.c-footer__list a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.c-footer__list a:hover {
  color: #38bdf8;
}

.c-footer__list--check li::before {
  content: '✔';
  color: #f59e0b;
  font-weight: bold;
  font-size: 1rem;
  display: inline-block;
  margin-right: 0.5rem;
  transform: translateY(1px);
}


.c-footer__text {
  font-size: 0.875rem;
  color: #f59e0b;
  padding-top: 1.5rem;
  line-height: 1.6;
}

.footer__text {
  text-align: center;
  font-size: 0.875rem;
  color: #f59e0b;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
  line-height: 1.6;
}


/* Optional responsive tweak */
@media (max-width: 768px) {
  .c-footer {
    flex-direction: column;
  }
}

.c-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 999;
  padding: 0.5rem;
}

.c-nav__bar {
  width: 24px;
  height: 2px;
  background-color: #f59e0b;
  transition: all 0.3s ease;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .heading--1 {
    font-size: 2rem;
  }

  .heading--2 {
    font-size: 1.75rem;
  }

  .c-hero__button-group {
    flex-direction: column;
    align-items: center;
  }

  .box--flex {
    flex-direction: column;
  }

  
  .c-nav__content {
    flex-direction: column;
    align-items: flex-start;
  }

  /* .slider-nav {
    bottom: 5px;
    right: 10px;
  } */
}

.section__title-wrapper {
  text-align: center;
}

.secure-hero {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  /*flex-wrap: wrap;*/
  /*align-items: center;
  gap: 1rem;*/
}

.secure-hero-image {
  max-width: 70%;
  height: auto;
}

.secure-hero-image:hover {
  animation: pulse 1s ease infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

.secure-hero-container {
  margin-bottom: 4rem;
}

.secure-hero-wrapper {
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .secure-hero {
    flex-direction: column;
    align-items: flex-start;
  }
  .secure-hero-image {
    max-width: 100%;
    height: auto;
  }

  .secure-hero-wrapper {
    display: block;
  }

  .c-nav__toggle {
    display: flex;
  }

  .c-nav__content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #0f172a;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 2rem;
    display: none;
    border-top: 1px solid #1e293b;
    z-index: 10;
  }

  .c-nav__content.active {
    display: flex;
  }

  .c-nav__content .c-list--flex {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .c-nav__content .c-button {
    align-self: stretch;
    /*margin-top: 1rem;*/
  }
}
/* === ANIMATIONS === */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === DELAYED SECTION LOAD (OPTIONAL JS CLASS) === */
.section.reveal {
  opacity: 1 !important;
  animation: fadeInUp 1.2s ease forwards;
}


/* === Terms and Conditions === */

.terms {
  background: linear-gradient(145deg, #1e293b, #0f172a);
  border: 1px solid rgba(56, 189, 248, 0.15);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.05);
  transition: box-shadow 0.3s ease;
  animation: fadeInUp 0.8s ease forwards;
}

.terms:hover {
  box-shadow: 0 0 40px rgba(56, 189, 248, 0.12);
}

.terms__meta {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-bottom: 1.5rem;
  border-left: 3px solid #f59e0b;
  padding-left: 1rem;
  font-style: italic;
}

.terms__content p {
  margin-bottom: 1rem;
  color: #f59e0b;
  line-height: 1.75;
}

.terms__content h1,
.terms__content h2 {
  color: #f1f5f9;
  font-weight: 700;
}

.terms__content h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.5rem;
}

.terms__list {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  list-style: none;
}

.terms__list li {
  position: relative;
  margin-bottom: 0.75rem;
  color: #f1f5f9;
  padding-left: 1.25rem;
}

.terms__list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #f59e0b;
  font-weight: bold;
  font-size: 0.95rem;
  top: 2px;
}

.terms__content a {
  color: #38bdf8;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.terms__content a:hover {
  color: #f59e0b;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .terms {
    padding: 1.5rem 1.25rem;
  }

  .terms__content h2 {
    font-size: 1.125rem;
  }
}


/* === Contact === */

.contact {
  background-color: #1e293b;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.contact__form {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__form .form-group {
  display: flex;
  flex-direction: column;
}

.contact__form input,
.contact__form textarea {
  background-color: #0f172a;
  border: 1px solid #334155;
  border-radius: 8px;
  padding: 0.75rem;
  color: #e2e8f0;
  font-size: 1rem;
  transition: border 0.3s ease;
}

.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: #38bdf8;
  background-color: #0f1e33;
}

.contact__map-wrapper {
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.15);
}
/* Contact Section Wrapper */
.contact {
  padding: 3rem 1rem;
  background: #0f172a; /* dark slate (fits your futuristic theme) */
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}

/* Center the CTA button */
.contact__cta {
  text-align: center;
  margin-bottom: 2rem;
}

.animated-contact-button {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #38bdf8); /* blue gradient */
  border-radius: 12px;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}

.animated-contact-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(56,189,248,.4);
}

/* Map container */
.contact__map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}

/* Map iframe */
.contact__map {
  width: 100%;
  height: 400px;
  border: none;
}

.contact__map {
  width: 100%;
  height: 400px;
  border: none;
}

/* Responsive */
@media (max-width: 768px) {
  .contact__map {
    height: 300px;
  }
}

/* === About === */
.about-section {
  padding: 1rem;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background-color: #1e293b;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  flex-wrap: wrap;
}

.about-content {
  flex: 1 1 50%;
}

.about-image-holder {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image {
  max-width: 72%;
  height: auto;
  border-radius: 12px;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.about-text {
  color: #e2e8f0;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.highlight {
  color: #f59e0b;
  font-weight: 600;
}

/* Responsive stack on mobile */
@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-image {
    max-width: 90%;
  }
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #0f172a;
  color: #e2e8f0;
  margin: 0;
  padding: 0;
}

.section {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.features-title {
  text-align: center;
  font-size: 2.5rem;
  color: #f1f5f9;
  margin-bottom: 3rem;
}

.features-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.feature-card {
  background-color: #1e293b;
  padding: 1.5rem;
  border-radius: 12px;
  flex: 1 1 300px;
  max-width: 360px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(56, 189, 248, 0.3);
}

.feature-card h3 {
  color: #f1f5f9;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.feature-card p {
  color: #f59e0b;
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .features-title {
    font-size: 2rem;
  }

  .feature-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}


/* === Ticket === */


.heading--2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #f59e0b;
}

.ticket-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.ticket-form label {
  margin-bottom: 0.5rem;
  color: #f1f5f9;
  font-weight: 600;
}

.ticket-form input,
.ticket-form select,
.ticket-form textarea {
  padding: 0.75rem;
  border: 1px solid #334155;
  border-radius: 8px;
  background-color: #0f172a;
  color: #e2e8f0;
  font-size: 1rem;
}

.ticket-form input:focus,
.ticket-form select:focus,
.ticket-form textarea:focus {
  border-color: #38bdf8;
  outline: none;
}

.c-button {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  display: block;
  width: 100%;
  border: 2px solid #f59e0b;
}

.c-button--primary {
  background-color: #f59e0b;
  color: #fff;
  transition: background-color 0.3s ease;
}

.c-button--primary:hover {
  background-color: #b45309;
}

.ticket-button {
  background-color: transparent;
  color: #f59e0b;
  border-radius: 8px;
  text-decoration: none;
}

@media (max-width: 768px) {
  .ticket-section {
    padding: 1rem;
  }
}

.social {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.social-li a img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-li a:hover img {
  transform: scale(1.2);
  filter: brightness(1.2);
}


.animated-contact-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: white;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 114, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.animated-contact-button::after {
  content: '';
  position: absolute;
  left: -75%;
  top: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transform: skewX(-25deg);
  transition: left 0.5s;
}

.animated-contact-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(0, 114, 255, 0.6);
}

.animated-contact-button:hover::after {
  left: 125%;
}

.contact__info p {
  padding-bottom: 0.7rem;
}

/* === PRICING CALCULATOR === */

.pricing-section {
  padding: 2.5rem;
  margin-bottom: 2rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border: 1px solid rgba(56, 189, 248, 0.15);
  box-shadow: 0 12px 30px rgba(56, 189, 248, 0.1);
  animation: fadeInUp 1.2s ease forwards;
  opacity: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-section:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(56, 189, 248, 0.15);
}

#featureList {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

/* === OPTIONAL FEATURES TITLE === */
.optional-features {
  font-size: 2rem;
  font-weight: 700;
  color: #38bdf8;
  margin: 2rem 0 1rem 0;
  text-align: center;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 6px rgba(56, 189, 248, 0.4);
}

/* === OPTIONAL FEATURES CONTAINER === */
.optional-feature-wrap {
  margin-top: 1.5rem;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid #334155;
}

/* === FEATURES LIST FLEXBOX === */
.optional-features-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 1rem;
}

/* === EACH FEATURE CARD === */
.optional-features-list label {
  flex: 1 1 calc(25% - 1rem);
  max-width: calc(25% - 1rem);
  background-color: #0f172a;
  color: #e2e8f0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  border: 1px solid #334155;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
  line-height: 1.4;
  word-break: break-word;
  min-height: 100px;
  box-sizing: border-box;
}

.optional-features-list label:hover {
  background-color: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.15);
}

/* === CHECKBOX === */
.optional-features-list input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 2px;
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #38bdf8;
  border-radius: 4px;
  background-color: transparent;
  display: grid;
  place-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.optional-features-list input[type="checkbox"]:checked {
  background-color: #38bdf8;
}

.optional-features-list input[type="checkbox"]:checked::after {
  content: '✔';
  color: #0f172a;
  font-size: 0.9rem;
  text-align: center;
}

/* === RESPONSIVE BREAKPOINTS === */
@media (max-width: 1200px) {
  .optional-features-list label {
    flex: 1 1 calc(33.33% - 1rem);
    max-width: calc(33.33% - 1rem);
  }
}

@media (max-width: 900px) {
  .optional-features-list label {
    flex: 1 1 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}

@media (max-width: 600px) {
  .optional-features-list label {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* === BASIC INPUT FIELDS === */
.basic-input,
.support-type,
.license-validation {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
  font-weight: 600;
  color: #f1f5f9;
}

.basic-input input,
.support-type select,
.license-validation select,
#bandwidthUnit {
  margin-top: 0.5rem;
  padding: 0.75rem;
  border-radius: 8px;
  background-color: #0f1e33;
  color: #e2e8f0;
  border: 1px solid #334155;
  transition: border 0.3s ease;
  font-size: 1rem;
}

.basic-input input:focus,
.support-type select:focus,
.license-validation select:focus {
  outline: none;
  border-color: #38bdf8;
}

/* === PRICING RESULT TABLE === */
#result {
  display: none;
  margin-top: 3rem;
  background-color: #1e293b;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(56, 189, 248, 0.15);
  animation: fadeInUp 0.8s ease forwards;
  color: #e2e8f0;
  font-size: 1.1rem;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

.pricing-table th,
.pricing-table td {
  text-align: left;
  padding: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-table thead th {
  color: #f1f5f9;
  font-size: 1rem;
  background-color: #0f172a;
}

.pricing-table tbody td {
  color: #f59e0b;
}

.pricing-table tfoot {
  background-color: #0f172a;
  font-weight: bold;
  color: #f1f5f9;
}

#totalCost {
  color: #38bdf8;
  font-size: 1.25rem;
}

/* === RESPONSIVE TABLE === */
@media (max-width: 768px) {
  .basic-input,
  .support-type,
  .license-validation {
    font-size: 0.95rem;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 0.5rem;
  }

  #result {
    padding: 1.5rem 1rem;
  }
}

/* === CALCULATE BUTTON === */
.calculate {
  margin-top: 0.8rem;
}

/* === ANIMATION === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.partner-main {
  padding: 4rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
}

.partner-heading {
  font-size: 2.5rem;
  color: #38bdf8;
  font-weight: bold;
  margin-top: 1rem;
}

.partner-subheading {
  max-width: 720px;
  color: #94a3b8;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.partner-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.partner-card {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 320px;
  max-width: 400px;
}

.partner-card:hover {
  transform: translateY(-6px);
}

.partner-card h2 {
  font-size: 1.4rem;
  color: #f59e0b;
  margin: 1rem 0 0.5rem;
}

.partner-card p {
  color: #e2e8f0;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  text-align: center;
}

.partner-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.partner-buttons a {
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  text-decoration: none;
}

.partner-img {
  max-width: 220px;
  height: 230px;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.learn-button {
  background-color: transparent;
    color: #f59e0b;
    border-radius: 8px;
    text-decoration: none;
    width: 80%;
}

.request-button {
  background-color: transparent;
    color: #f59e0b;
    border-radius: 8px;
    text-decoration: none;
    width: 80%;
}

.price-heading {
  text-align: center;
}

.clofix-pricing {
    color: #38bdf8;
    text-shadow: 0 2px 6px rgba(56, 189, 248, 0.4);
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(3px);
}

.modal-content {
  background-color: #1e293b;
  margin: 5% auto;
  padding: 2rem;
  border: 1px solid #38bdf8;
  width: 90%;
  max-width: 500px;
  max-height: 80vh;            /* ✅ scrollable height */
  overflow-y: auto;            /* ✅ vertical scroll */
  border-radius: 12px;
  color: #f1f5f9;
  box-shadow: 0 10px 30px rgba(0, 114, 255, 0.3);
  animation: fadeInUp 0.3s ease;
  scroll-behavior: smooth;
}

.modal-content::-webkit-scrollbar {
  width: 8px;
}
.modal-content::-webkit-scrollbar-thumb {
  background-color: #38bdf8;
  border-radius: 10px;
}
.modal-content::-webkit-scrollbar-track {
  background-color: #1e293b;
}

.modal-content h3 {
  color: #f1f5f9;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  text-shadow: 0 2px 6px rgba(56, 189, 248, 0.3);
}

.close-button {
  float: right;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  color: #f59e0b;
  transition: color 0.3s ease;
}
.close-button:hover {
  color: #ff6347;
}

#modalDescription p {
  margin-bottom: 1rem;
  color: #38bdf8;
  font-size: 1rem;
  line-height: 1.7;
  text-shadow: 0 2px 6px rgba(56, 189, 248, 0.4);
}

#modalDescription ul {
  margin-top: 1rem;
  margin-left: 1.5rem;
  padding-left: 1rem;
  list-style-type: disc;
  color: #f59e0b;
}

#modalDescription li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  font-size: 0.95rem;
  color: #38bdf8;
  text-shadow: 0 2px 6px rgba(56, 189, 248, 0.4);
}

.support-table-section {
  padding-top: 4rem;
  animation: fadeInUp 1.3s ease forwards;
  text-align: center;
}

.support-table-section h2 {
  font-size: 2.5rem;
  color: #38bdf8;
  margin-bottom: 2rem;
  text-shadow: 0 0 12px rgba(56, 189, 248, 0.4);
}

@media (max-width: 700px) {
  .toggle-headers-button {
    display: inline-block;
  }
}

.support-table-container {
  overflow-x: auto;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.15);
}

.support-table-modern {
  width: 100%;
  border-collapse: collapse;
  border-radius: 16px;
  overflow: hidden;
  background-color: #0f172a;
  color: #e2e8f0;
  font-family: 'Open Sans', sans-serif;
  backdrop-filter: blur(2px);
}

.support-table-modern thead th {
  background: linear-gradient(90deg, #2563eb, #1e40af);
  color: #fff;
  padding: 1.5rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: sticky;
  top: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.support-table-modern thead th:first-child {
  background: #1e293b;
  text-align: left;
}

.support-table-modern thead th:last-child {
  border-right: none;
}

.support-table-modern tbody tr {
  transition: background 0.3s ease, transform 0.3s ease;
}

.support-table-modern tbody tr:hover {
  background: rgba(56, 189, 248, 0.07);
  transform: scale(1.01);
  box-shadow: 0 8px 24px rgba(56, 189, 248, 0.2);
}

.support-table-modern tbody td {
  padding: 1.3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  border-right: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.98rem;
  line-height: 1.7;
  background-color: rgba(30, 41, 59, 0.6);
  position: relative;
}

.support-table-modern tbody td:first-child {
  background-color: #0f172a;
  color: #f59e0b;
  font-weight: 600;
  text-align: left;
  border-right: 2px solid rgba(255, 255, 255, 0.08);
}

.support-table-modern tbody td:last-child {
  border-right: none;
}

@media (max-width: 700px) {
  .support-table-modern thead {
    display: none;
  }

  .support-table-modern,
  .support-table-modern tbody,
  .support-table-modern tr,
  .support-table-modern td {
    display: block;
    width: 100%;
  }

  .support-table-modern tr {
    margin-bottom: 2rem;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 114, 255, 0.25);
    background: linear-gradient(135deg, #1e293b, #0f172a);
    overflow: hidden;
    padding: 1rem;
    position: relative;
  }

  .support-table-modern td {
    padding: 1rem;
    text-align: left;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background-color: transparent;
  }

  .support-table-modern td::before {
    content: attr(data-label);
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
    color: #38bdf8;
    text-transform: uppercase;
    font-size: 0.9rem;
  }

  .support-table-modern.show-headers td::before {
    display: block;
  }

  .support-table-modern.hide-headers td::before {
    display: none;
  }

  .support-table-modern td:last-child {
    border-bottom: none;
  }
}

.support-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.support-link {
  color: #38bdf8;
  font-size: 0.9rem;
  font-weight: normal;
  text-decoration: none;
  transition: color 0.3s ease;
}

.support-link:hover {
  color: #f59e0b;
  text-decoration: none;
}

@media (max-width: 480px) {
  .support-label {
    flex-direction: column;
    align-items: flex-start;
  }

  .support-link {
    margin-top: 0.25rem;
  }
}

.support-plan-section {
  padding: 4rem 1rem;
  animation: fadeInUp 1s ease forwards;
  text-align: center;
}

.support-plan-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.support-plan-card {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border: 1px solid #334155;
  padding: 2rem;
  border-radius: 16px;
  width: 100%;
  max-width: 350px;
  text-align: left;
  box-shadow: 0 8px 20px rgba(56, 189, 248, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(56, 189, 248, 0.25);
}

.support-plan-title {
  font-size: 1.5rem;
  color: #f59e0b;
  margin-bottom: 1rem;
  text-align: center;
}

.support-plan-price {
  color: #38bdf8;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.support-plan-card p {
  color: #e2e8f0;
  margin-bottom: 0.7rem;
  line-height: 1.6;
}

.support-plan-benefits {
  margin-top: 1rem;
  padding-left: 1rem;
  list-style: none;
}

.support-plan-benefits li {
  margin-bottom: 0.6rem;
  color: #38bdf8;
  font-weight: 500;
  position: relative;
  padding-left: 1.25rem;
}

.support-plan-benefits li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #f59e0b;
  font-weight: bold;
  font-size: 1rem;
}

.support-plan-card.premium {
  background: linear-gradient(135deg, #1e293b, #0f172a);
}

/* Responsive */
@media (max-width: 768px) {
  .support-plan-card {
    max-width: 100%;
  }

  .support-plan-grid {
  flex-wrap: wrap;
}
  
}

/* Clofix Agent Section Base Styles */
.clofix-agent-section {
  background: linear-gradient(145deg, #1e293b, #0f172a);
  padding: 4rem 2rem;
  color: #e2e8f0;
  overflow: hidden;
  animation: fadeInUp 1.3s ease forwards;
}

.clofix-agent-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.clofix-agent-content {
  flex: 1 1 55%;
}

.clofix-agent-image {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-direction: column;
}

.agent-title {

  font-family: "Forum", serif;
  font-style: normal;
  font-size: 3rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.agent-subtitle {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.4;
  text-align: left;
}

.glow-white {
  color: #ffffff;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.glow-gradient {
  background: linear-gradient(90deg, #7c3aed, #6366f1, #0ea5e9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(14, 165, 233, 0.4);
}

.agent-description {
  font-family: "Forum", serif;
  font-size: 1.125rem;
  color: #cbd5e1;
  max-width: 600px;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.agent-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.agent-buttons .c-button {
  font-family: "Forum", serif;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.clofix-agent-image img {
  max-width: 82%;
  height: auto;
  animation: pulse 4s ease-in-out infinite;
}

/* Floating Labels */
.floating-label {
  font-family: "Forum", serif;
  position: absolute;
  background: #0f172a;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #fff;
  width: max-content;
  min-width: 180px;
  z-index: 2;
  animation: fadeInUp 1.5s ease both;
}

.icon-block {
  font-size: 1.25rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.purple {
  background: #8b5cf6; /* Tailwind violet-500 */
}
.blue {
  background: #3b82f6;
}
.green {
  background: #10b981;
}

.top-right {
  top: 0;
  right: 0;
  transform: translate(30%, -30%);
}
.middle-left {
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}
.bottom-right {
  bottom: 0;
  right: 0;
  transform: translate(20%, 30%);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0px #0ea5e9);
  }
  50% {
    transform: scale(1.02);
    filter: drop-shadow(0 0 20px #0ea5e9);
  }
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .clofix-agent-wrapper {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .clofix-agent-content,
  .clofix-agent-image {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .agent-title {
    font-size: 2rem;
  }

  .agent-subtitle {
    text-align: center;
    font-size: 1.3rem;
  }

  .agent-description {
    font-size: 1rem;
    margin: 0 auto 1.5rem auto;
    max-width: 90%;
  }

  .agent-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .agent-buttons .c-button {
    width: 100%;
    max-width: 260px;
  }

  .clofix-agent-image img {
    max-width: 65%;
    height: auto;
  }

  .floating-label {
    position: relative;
    transform: none !important;
    animation: none;
    background: #1e293b;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
    margin: 0.5rem auto;
    justify-content: center;
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
    min-width: 150px;
  }

  .icon-block {
    font-size: 1rem;
    padding: 0.4rem;
  }

  .top-right,
  .middle-left,
  .bottom-right {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .floating-label + .floating-label {
    margin-top: 0.75rem;
  }
}

/* ===================== */
/* EXTRA SMALL SCREENS (Optional) */
/* ===================== */
@media (max-width: 480px) {
  .floating-label {
    font-size: 0.75rem;
    padding: 0.4rem 0.6rem;
    min-width: 140px;
  }

  .icon-block {
    font-size: 0.9rem;
    padding: 0.3rem;
  }
}

/* ===================== */
/* LARGE SCREENS (DESKTOP) FIX */
/* ===================== */
@media (min-width: 1441px) {
  .clofix-agent-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1rem;
  }

  .clofix-agent-content {
    flex: 1 1 50%;
  }

  .clofix-agent-image {
    flex: 1 1 45%;
  }

  .clofix-agent-image img {
    max-width: 82%;
    height: auto;
  }

  .agent-title {
    font-size: 3.2rem;
  }

  .agent-description {
    font-size: 1.2rem;
  }

  .top-right {
    top: 10px;
    right: 10px;
    transform: none;
  }

  .middle-left {
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
  }

  .bottom-right {
    bottom: 10px;
    right: 10px;
    transform: none;
  }
}

.forum-regular {
  font-family: "Forum", serif;
  font-weight: 400;
  font-style: normal;
}

.bandwidth-row {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  margin-bottom: 1.25rem;
}

@media (max-width: 767px) {
  .bandwidth-row {
    flex-direction: column;
    align-items: stretch;
  }
}

.bandwidth-row .basic-input {
  flex: 1;
}

.bandwidth-row .basic-input:first-child {
  flex: 2;
}

.release-section {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 4rem 2rem;
  animation: fadeInUp 1.2s ease forwards;
}

.release-title {
  text-align: center;
  color: #38bdf8;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-shadow: 0 2px 6px rgba(56, 189, 248, 0.5);
}

.release-notes-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.release-card {
  background-color: #1e293b;
  border: 1px solid rgba(56, 189, 248, 0.15);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(56, 189, 248, 0.08);
  transition: all 0.3s ease;
}

.release-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(56, 189, 248, 0.2);
}

.release-card h3 {
  font-size: 1.4rem;
  color: #f59e0b;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.release-date {
  color: #94a3b8;
  font-size: 1rem;
  font-weight: 500;
}

.release-card ul {
  list-style: disc;
  padding-left: 1.5rem;
  line-height: 1.7;
  color: #e2e8f0;
}

.release-card ul li {
  margin-bottom: 0.6rem;
}

@media (max-width: 768px) {
  .release-title {
    font-size: 2rem;
  }

  .release-card h3 {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}

.release-search-wrapper {
  text-align: center;
  margin-bottom: 2rem;
}

.release-search-input {
  padding: 0.75rem 1rem;
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  border: 1px solid #334155;
  background-color: #0f1e33;
  color: #e2e8f0;
  font-size: 1rem;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.1);
  transition: all 0.3s ease;
}

.release-search-input:focus {
  outline: none;
  border-color: #38bdf8;
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.3);
}

.support-type select + .type-chips {
  margin-top: 0.5rem;
}

.support-type select#siteType {
  background-color: #0f1e33;
  color: #e2e8f0;
  border: 1px solid #334155;
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.support-type select#siteType:focus {
  outline: none;
  border-color: #38bdf8;
  box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.25);
}

.type-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0 1rem 0;
}

/* Each chip */
.type-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #0f172a;                
  border: 1px solid #334155;           
  color: #e2e8f0;                     
  padding: 0.4rem 0.7rem;
  border-radius: 999px;                
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  line-height: 1;
  white-space: nowrap;
}


.type-chip .chip-close {
  background: transparent;
  border: none;
  color: #f59e0b;                     
  font-weight: 700;
  cursor: pointer;
  padding: 0 0.25rem;
  line-height: 1;
  font-size: 1rem;
  border-radius: 4px;                
}

.type-chip .chip-close:hover {
  color: #ff7d33;                     
}

.type-chip .chip-close:focus {
  outline: none;
}

.type-chip .chip-close:focus-visible {
  box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.6); 
}

@media (max-width: 600px) {
  .type-chip {
    font-size: 0.85rem;
    padding: 0.35rem 0.6rem;
  }
}

.c-button-bangla {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed
}

.read-more-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #38bdf8;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.25s ease;
}
.read-more-link:hover {
  color: #f59e0b;
}

.extra-collapsed {
  display: none;
}
.extra-expanded {
  display: block;
}

.trust-hero { padding: 0 0 2rem; }

.trust-frame{
  position:relative; border-radius:28px; overflow:hidden; isolation:isolate;
  min-height:520px; display:grid; place-items:center;
  box-shadow:0 20px 60px rgba(0,0,0,0.35);
  border:1px solid rgba(56,189,248,0.12);
}

.trust-frame.theme-dark{
  background: radial-gradient(1200px 600px at 50% 30%, #0b1222 0%, #0f172a 60%, #0a1020 100%);
}
.trust-frame.theme-light{
  background:#ffffff; border-color:rgba(2,6,23,0.06);
  box-shadow:0 18px 40px rgba(2,6,23,0.08);
}

.trust-frame::after{
  content:""; position:absolute; inset:0;
  background: radial-gradient(1200px 420px at 50% 0%, rgba(0,255,180,0.08), transparent 60%),
              radial-gradient(900px 260px at 50% 70%, rgba(56,189,248,0.06), transparent 60%);
  pointer-events:none; z-index:1;
}

.trust-waves{
  position:absolute; inset:-10% -5% -20% -5%;
  background:
    radial-gradient(60% 25% at 50% 25%, rgba(16,185,129,0.25), transparent 70%),
    radial-gradient(50% 20% at 50% 35%, rgba(59,130,246,0.18), transparent 70%),
    radial-gradient(45% 18% at 50% 42%, rgba(16,185,129,0.25), transparent 70%);
  filter:blur(30px) saturate(110%); z-index:0; animation:trustPulse 7s ease-in-out infinite; opacity:.8;
}
@keyframes trustPulse{ 0%,100%{transform:scale(1);opacity:.85;} 50%{transform:scale(1.06);opacity:1;} }

.trust-particles{ position:absolute; inset:0; list-style:none; margin:0; padding:0; z-index:2; pointer-events:none; }
.trust-particles li{
  position:absolute; width:8px; height:8px; border-radius:50%;
  background:rgba(16,185,129,.7); box-shadow:0 0 12px rgba(16,185,129,.45); opacity:.8; animation:floatDot linear infinite;
}
.trust-particles li:nth-child(3n){ background:rgba(56,189,248,.85); box-shadow:0 0 12px rgba(56,189,248,.5); }
.trust-particles li:nth-child(4n){ width:5px; height:5px; opacity:.7; }
.trust-particles li:nth-child(5n){ width:10px; height:10px; }
@keyframes floatDot{ 0%{transform:translateY(10px);} 50%{transform:translateY(-10px);} 100%{transform:translateY(10px);} }

.trust-particles li { top: 8%;  left: 14%; animation-duration: 7s; }
.trust-particles li:nth-child(2){ top:18%; left:80%; animation-duration:6.5s; }
.trust-particles li:nth-child(3){ top:76%; left:14%; animation-duration:8s; }
.trust-particles li:nth-child(4){ top:60%; left:82%; animation-duration:7.5s; }
.trust-particles li:nth-child(5){ top:22%; left:44%; animation-duration:6.2s; }
.trust-particles li:nth-child(6){ top:40%; left:12%; animation-duration:9s; }
.trust-particles li:nth-child(7){ top:70%; left:52%; animation-duration:6.8s; }
.trust-particles li:nth-child(8){ top:30%; left:72%; animation-duration:8.4s; }
.trust-particles li:nth-child(9){ top:84%; left:34%; animation-duration:7.1s; }
.trust-particles li:nth-child(10){ top:12%; left:60%; animation-duration:9.2s; }
.trust-particles li:nth-child(11){ top:48%; left:90%; animation-duration:6.6s; }
.trust-particles li:nth-child(12){ top:50%; left:30%; animation-duration:7.9s; }
.trust-particles li:nth-child(13){ top:78%; left:76%; animation-duration:8.6s; }
.trust-particles li:nth-child(14){ top:38%; left:54%; animation-duration:7.2s; }
.trust-particles li:nth-child(15){ top:14%; left:26%; animation-duration:8.8s; }
.trust-particles li:nth-child(16){ top:66%; left:10%; animation-duration:6.9s; }
.trust-particles li:nth-child(17){ top:26%; left:90%; animation-duration:7.7s; }
.trust-particles li:nth-child(18){ top:88%; left:86%; animation-duration:9.3s; }

.trust-inner{ position:relative; z-index:3; max-width:980px; text-align:center; padding:4.5rem 1.25rem; }
.trust-pill{
  display:inline-block; padding:.35rem .75rem; background:rgba(148,163,184,.15);
  color:#e2e8f0; border:1px solid rgba(148,163,184,.25); border-radius:999px; font-size:.875rem; letter-spacing:.25px;
}
.theme-light .trust-pill{ color:#0f172a; background:rgba(2,6,23,.05); border-color:rgba(2,6,23,.08); }

.trust-title{
  font-family:'Hind', sans-serif; font-size:clamp(1.9rem, 3.6vw + .5rem, 3.4rem);
  line-height:1.12; margin:1rem auto .75rem; color:#e2e8f0;
}
.theme-light .trust-title{ color:#0f172a; }

.trust-gradient{
  background:linear-gradient(90deg, #38bdf8, #34d399);
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
  text-shadow:0 0 16px rgba(34,211,238,.25);
}

.trust-sub{ max-width:760px; margin:0 auto 1.6rem; color:#94a3b8; font-size:1.05rem; }
.theme-light .trust-sub{ color:#334155; }

.trust-inner{ opacity:0; transform:translateY(18px); }
.trust-reveal{ opacity:1 !important; transform:translateY(0) !important; transition:all .6s ease; }

.trust-divider{
  width:100%; height:1px; margin:2.2rem auto 0;
  background:linear-gradient(90deg, transparent, rgba(148,163,184,.25), transparent); opacity:.8;
}

.trust-cards{
  display:grid; grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1.2rem; margin:2rem auto 0; max-width:920px;
}
@media (max-width:900px){ .trust-cards{ grid-template-columns:1fr; } }

.trust-card{
  position:relative; overflow:hidden; border-radius:18px;
  padding:1.35rem 1.35rem 1.15rem;
  background:rgba(15,23,42,.55);
  border:1px solid rgba(148,163,184,.15);
  box-shadow:0 14px 34px rgba(2,6,23,.45);
  backdrop-filter:blur(6px);
  transition:transform .35s cubic-bezier(.2,.65,.2,1), box-shadow .35s ease, border-color .35s ease, background .35s ease;
  cursor:pointer; color:#e2e8f0; outline:none;
}
.theme-light .trust-card{
  background:rgba(248,250,252,.9);
  border-color:rgba(2,6,23,.08);
  box-shadow:0 10px 26px rgba(2,6,23,.08);
  color:#0f172a;
}

.trust-card::before{
  content:""; position:absolute; inset:-2px;
  background:conic-gradient(from 180deg, rgba(34,211,238,.0), rgba(34,211,238,.35), rgba(52,211,153,.35), rgba(34,211,238,.0));
  filter:blur(12px); opacity:.0; transition:opacity .35s ease, transform .6s ease; transform:rotate(0deg); z-index:0;
}
.trust-card:hover::before, .trust-card:focus-visible::before{ opacity:.55; transform:rotate(25deg); }

.trust-card::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(120deg, rgba(59,130,246,.10), transparent 35%, transparent 65%, rgba(16,185,129,.10));
  mix-blend-mode:screen; opacity:.0; pointer-events:none; transition:opacity .35s ease;
}
.trust-card:hover::after, .trust-card:focus-visible::after{ opacity:.35; }

.trust-card:hover, .trust-card:focus-visible{
  transform:translateY(-8px) scale(1.02);
  border-color:rgba(56,189,248,.35);
  box-shadow:0 22px 46px rgba(56,189,248,.18);
  background:rgba(15,23,42,.62);
}
.theme-light .trust-card:hover, .theme-light .trust-card:focus-visible{
  border-color:rgba(2,6,23,.12); background:#fff;
}

.trust-card__icon{
  width:64px; height:64px; display:grid; place-items:center; border-radius:14px;
  color:#d1fae5;
  background:linear-gradient(135deg, rgba(16,185,129,.28), rgba(56,189,248,.22));
  border:1px solid rgba(148,163,184,.18);
  box-shadow:0 8px 22px rgba(16,185,129,.15);
  transform:translateZ(0);
  transition:transform .35s cubic-bezier(.2,.65,.2,1), box-shadow .35s ease; z-index:1;
}
.trust-card:hover .trust-card__icon{ transform:translateY(-4px) rotate(-2deg); box-shadow:0 14px 30px rgba(56,189,248,.25); }

.trust-card__title{
  font-family:'Hind', sans-serif; font-size:1.35rem; margin:.9rem 0 .35rem; letter-spacing:.2px;
}
.trust-card__text{ color:#cbd5e1; line-height:1.75; font-size:1.01rem; margin:0 0 .9rem; }
.theme-light .trust-card__text{ color:#334155; }

.trust-card__cta{
  display:inline-block; font-size:.86rem; letter-spacing:.3px; padding:.35rem .7rem; border-radius:999px;
  background:rgba(30,41,59,.55); border:1px solid rgba(148,163,184,.18); color:#93c5fd;
  transform:translateZ(0);
  transition:transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.trust-card:hover .trust-card__cta{ transform:translateY(-2px); background:rgba(59,130,246,.18); color:#e0f2fe; border-color:rgba(59,130,246,.35); }

.trust-card:hover{ animation:cardHover 650ms ease-out 1; }
@keyframes cardHover{
  0%{ transform:translateY(0) scale(1); }
  45%{ transform:translateY(-10px) scale(1.02); }
  100%{ transform:translateY(-8px) scale(1.02); }
}

.why{
  margin:3.2rem auto 2.8rem;
  max-width:1060px;
  padding:0 1rem;
}
.why-head{
  text-align:center;
  margin-bottom:1.6rem;
}
.why-pill{
  display:inline-block; padding:.3rem .65rem; font-size:.82rem; border-radius:999px;
  color:#e2e8f0; background:rgba(148,163,184,.15); border:1px solid rgba(148,163,184,.25);
}
.why-title{
  font-family:'Hind', sans-serif;
  font-size:clamp(1.6rem, 2.6vw + .6rem, 2.2rem);
  margin:.6rem 0 .4rem; color:#e2e8f0; text-align:center;
}
.why-sub{
  color:#94a3b8; max-width:780px; margin:0 auto 1.2rem; text-align:center;
}

.why-grid{
  display:grid; grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1rem; margin-top:.6rem;
}
@media (max-width:1000px){ .why-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .why-grid{ grid-template-columns:1fr; } }

.why-item{
  position:relative; overflow:hidden; border-radius:16px;
  background:rgba(15,23,42,.55);
  border:1px solid rgba(148,163,184,.15);
  box-shadow:0 10px 26px rgba(2,6,23,.35);
  padding:1rem .95rem;
  transition:transform .35s ease, border-color .35s ease, box-shadow .35s ease, background .35s ease;
  opacity:0; transform:translateY(18px) scale(.98);
}
.why-item.trust-reveal{ opacity:1; transform:translateY(0) scale(1); }

.why-item:hover{
  transform:translateY(-6px);
  border-color:rgba(56,189,248,.35);
  background:rgba(15,23,42,.62);
  box-shadow:0 16px 34px rgba(56,189,248,.18);
}

.why-ico{
  width:46px; height:46px; display:grid; place-items:center;
  border-radius:12px; margin-bottom:.5rem; font-size:1.25rem;
  color:#d1fae5;
  background:linear-gradient(135deg, rgba(16,185,129,.28), rgba(56,189,248,.22));
  border:1px solid rgba(148,163,184,.18);
}
.why-item h3{ margin:.1rem 0 .25rem; font-size:1.02rem; color:#e2e8f0; }
.why-item p{ margin:0; color:#cbd5e1; font-size:.95rem; line-height:1.55; }

.compliance-card{
  margin:1.6rem 0 0;
  display:grid; grid-template-columns:1.2fr .8fr; gap:1rem;
  background:linear-gradient(180deg, rgba(15,23,42,.75), rgba(2,6,23,.85));
  border:1px solid rgba(148,163,184,.18);
  border-radius:18px; padding:1.2rem;
  box-shadow:0 16px 40px rgba(2,6,23,.45), inset 0 1px 0 rgba(255,255,255,.03);
  overflow:hidden;
  opacity:0; transform:translateY(18px);
}
.compliance-card.trust-reveal{ opacity:1; transform:translateY(0); transition:all .65s ease; }

.comp-left h3{ margin:.2rem 0 .5rem; color:#e2e8f0; font-size:1.25rem; }
.comp-left p{ color:#cbd5e1; margin:.2rem 0 .8rem; line-height:1.75; }
.comp-badges{ display:flex; flex-wrap:wrap; gap:.5rem; }
.badge-pill{
  padding:.35rem .6rem; border-radius:999px; font-size:.86rem;
  color:#d1fae5; background:linear-gradient(90deg, rgba(16,185,129,.25), rgba(56,189,248,.22));
  border:1px solid rgba(148,163,184,.18);
  opacity:0; transform:translateY(12px);
}
.badge-pill.trust-reveal{ opacity:1; transform:translateY(0); transition:all .6s ease; }

.comp-right{ position:relative; border-radius:14px; background:rgba(30,41,59,.35); border:1px solid rgba(148,163,184,.12); }
.comp-lock {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #3b82f6; /* Tailwind Blue-500 */
  opacity: .95;
  filter: drop-shadow(0 12px 22px rgba(59, 130, 246, 0.35)); /* Blue glow */
}

.comp-grid{
  position:absolute; inset:0; background:
    linear-gradient(transparent 22px, rgba(148,163,184,.08) 23px) 0 0 / 100% 24px,
    linear-gradient(90deg, transparent 22px, rgba(148,163,184,.07) 23px) 0 0 / 24px 100%;
  mask-image: radial-gradient(600px 240px at 50% 50%, #000 0%, transparent 75%);
  animation:gridFloat 8s ease-in-out infinite;
}
@keyframes gridFloat{
  0%,100%{ transform:translateY(0); opacity:.9; }
  50%{ transform:translateY(-6px); opacity:1; }
}

@media (prefers-reduced-motion: reduce){
  .trust-waves, .trust-particles li, .comp-grid{ animation:none !important; }
  .why-item, .compliance-card, .badge-pill{ transition:none !important; }
}

@media (max-width:900px){
  .compliance-card{ grid-template-columns:1fr; }

  .comp-right {
    display: none;
  }
}
@media (max-width:600px){
  .trust-card__title{ font-size:1.2rem; }
  .trust-card__text{ font-size:.98rem; }
}

.eclipse-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  width: 100%;
}

.eclipse-inner {
  display: inline-block;
  text-align: center;
}

.summary-cards {
  position: relative;
  overflow: hidden;
  text-align: center;
  margin: 4rem 0;
  padding: 4rem 1rem;
  border-radius: 1.25rem;

  background: #3498DB;
  animation: sky 10s ease-in-out infinite;
}

.summary-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #f1f5f9;
  text-shadow: 0 0 15px rgba(59,130,246,0.8);
  margin: 0 0 2rem 0;
  position: relative;
  z-index: 2;
}

@keyframes sky {
 0%   { background: #1e3a8a; }    
  45%,55% { background: #0f172a; }  
  100% { background: #1e3a8a; } 
}

svg #sun-g {
  transform: translateX(200px);
  animation: sun-g 10s ease-in-out infinite;
}
svg #sun {
  transform: translateX(-200px);
  animation: sun 10s ease-in-out infinite;
}

@keyframes sun-g {
  0% { transform: translateX(200px); }
  45%,55% { transform: translateX(0px); }
  100% { transform: translateX(-200px); }
}
@keyframes sun {
  0% { transform: translateX(-200px); }
  45%,55% { transform: translateX(0px); }
  100% { transform: translateX(200px); }
}

@media (prefers-reduced-motion: reduce) {
  .summary-cards { animation: none !important; }
  svg #sun-g, svg #sun { animation: none !important; }
}

.cards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  position: relative;
  z-index: 2;
}

.cards-wrapper .card {
  background: linear-gradient(160deg, #0a0f1c, #1e293b 80%);
  border: 1px solid rgba(59,130,246,0.35);
  border-radius: 1.2rem;
  padding: 2rem;
  color: #e2e8f0;
  box-shadow: 0 0 25px rgba(59,130,246,0.35);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  perspective: 1000px;
  transform-style: preserve-3d;
  will-change: transform;
}

.cards-wrapper .card::before {
  content: "";
  position: absolute; inset: -1px;
  background: radial-gradient(500px 220px at var(--hover-x,50%) var(--hover-y,50%),
              rgba(59,130,246,0.12), transparent 60%);
  transition: opacity .25s ease;
  opacity: .6;
}

.cards-wrapper .card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 0 40px rgba(59,130,246,0.8);
}

.cards-wrapper .card-inner {
  height: 100%;
  transform: rotateX(0deg) rotateY(0deg);
  transition: transform 0.15s ease-out;
}

.cards-wrapper .card h3 {
  font-size: 1.4rem;
  color: #60a5fa;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cards-wrapper .card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #cbd5e1;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .c-list__item {
    padding: 0 !important;
    border-bottom: none !important;
  }

  .c-list__item > a {
    display: block !important;
    width: 100%;
    padding: 0.75rem 0 !important;
    line-height: 1.4;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .c-list__item > a:hover {
    background: rgba(255,255,255,0.03);
    color: #38bdf8;
  }


  .c-nav__content .ticket-button {
    display: block !important;
    width: 100%;
  } 
}

.c-list__item > a {
  display: inline-block;
  padding: 0.5rem 0;
}

.parallax-hero{
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: radial-gradient(1200px 600px at 50% 0%, #0a1225 0%, #0f172a 60%, #0a0f1f 100%);
  border: 1px solid rgba(56,189,248,.18);
  min-height: 560px;
  margin: 0 0 2rem 0;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  isolation: isolate;
}

.ph-layer{
  position:absolute; inset:-10%;
  will-change: transform;
  pointer-events:none;
}

.ph-stars{
  background:
    radial-gradient(2px 2px at 20% 30%, rgba(148,163,184,.8), transparent 60%),
    radial-gradient(2px 2px at 60% 10%, rgba(148,163,184,.65), transparent 60%),
    radial-gradient(2px 2px at 80% 70%, rgba(148,163,184,.7), transparent 60%),
    radial-gradient(1px 1px at 30% 80%, rgba(148,163,184,.55), transparent 60%),
    radial-gradient(1px 1px at 75% 45%, rgba(148,163,184,.75), transparent 60%);
  opacity:.35;
}

.ph-cards{
  display:grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: .9rem;
  margin-top:.25rem;
}

.ph-card{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:.35rem;
  padding: .9rem 1rem;
  border-radius: 12px;
  background: rgba(2,6,23,.55);
  border:1px solid rgba(56,189,248,.18);
  backdrop-filter: blur(4px);
  text-decoration:none;            /* keeps <a> card clean */
  color:#e2e8f0;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.ph-card:hover{
  transform: translateY(-4px);
  box-shadow:0 10px 26px rgba(56,189,248,.20);
  border-color: rgba(56,189,248,.35);
  background: rgba(15,23,42,.62);
}

.ph-card-main{
  font-size:0.9rem;
  font-weight:700;
  color:#f1f5f9;
  line-height:1.3;
}
.ph-card-main--wrap{
  display:flex; flex-wrap:wrap; gap:.35rem;
}
.ph-card-sub{
  font-size:.9rem;
  color:#94a3b8;
}

.ph-card-list {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.ph-card-list .ph-link {
  color: #F5F5F5;
  text-decoration: none;
  font-weight: 600;
  transition: color .25s ease;
}

.ph-card-list .ph-link:hover {
  color: #0ea5e9;
  text-decoration: underline;
}

@media (max-width: 900px){
  .ph-cards{ grid-template-columns: 1fr; }
}

.ph-buttons{ display:none !important; }


.ph-grid{
  background:
    linear-gradient(transparent 23px, rgba(148,163,184,.08) 24px) 0 0 / 100% 24px,
    linear-gradient(90deg, transparent 23px, rgba(148,163,184,.07) 24px) 0 0 / 24px 100%;
  mask-image: radial-gradient(1200px 500px at 50% 20%, #000 0%, transparent 70%);
  opacity:.65;
}

.ph-net{
  background:
    radial-gradient(600px 260px at 50% 40%, rgba(56,189,248,.14), transparent 60%),
    radial-gradient(700px 280px at 50% 65%, rgba(16,185,129,.12), transparent 65%);
  filter: blur(16px) saturate(120%);
  mix-blend-mode: screen;
  opacity:.9;
}

.ph-orbs { display:block; }
.ph-orbs .orb{
  position:absolute; border-radius:50%; filter: blur(2px);
  box-shadow: 0 0 24px rgba(56,189,248,.5);
  background: radial-gradient(circle at 30% 30%, rgba(59,130,246,.9), rgba(99,102,241,.65) 50%, rgba(14,165,233,.4));
  animation: floatY 7s ease-in-out infinite;
}
.orb--sm{ width:16px; height:16px; top:22%; left:18%; animation-duration:6.3s;}
.orb--md{ width:28px; height:28px; top:66%; left:72%; animation-duration:7.6s;}
.orb--lg{ width:44px; height:44px; top:38%; left:54%; animation-duration:8.4s;}
@keyframes floatY{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-10px);} }

.ph-inner{
  position: relative; z-index: 3;
  max-width: 980px; margin: 0 auto; padding: 4rem 1.25rem 3rem;
  text-align: center;
}

.ph-pill{
  display:inline-block; padding:.4rem .8rem;
  background: rgba(148,163,184,.12); border:1px solid rgba(148,163,184,.25);
  border-radius: 999px; font-size:.9rem; color:#e2e8f0;
}

.ph-title{
  font-family:'Hind', sans-serif;
  font-size: clamp(1.9rem, 3.2vw + .6rem, 3rem);
  line-height: 1.12; margin: .9rem 0 .5rem; color:#e2e8f0;
}
.neon{ color:#fff; text-shadow:0 0 16px rgba(255,255,255,.25); }
.gradient{
  background: linear-gradient(90deg, #38bdf8, #34d399);
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
  text-shadow: 0 0 24px rgba(34,211,238,.25);
}

.ph-sub{
  color:#A2A6AB; max-width: 780px; margin: 0 auto 1.4rem; font-size:1.05rem;
}

.ph-glass{
  margin: 1.25rem auto 0; padding: 1rem 1.1rem;
  background: linear-gradient(135deg, rgba(30,41,59,.55), rgba(2,6,23,.55));
  border: 1px solid rgba(56,189,248,.18);
  border-radius: 14px; backdrop-filter: blur(6px);
  box-shadow: 0 14px 34px rgba(2,6,23,.45);
}
.ph-glass-row{
  display:flex; gap:1rem; justify-content:space-between; align-items:center; flex-wrap:wrap;
}
.ph-kicker{ color:#93c5fd; font-weight:600; font-size:.9rem; margin-bottom:.2rem; }
.ph-link{ color:#e2e8f0; text-decoration:none; }
.ph-link:hover{ color:#38bdf8; }
.ph-sep{ color: rgba(226,232,240,.45); margin: 0 .4rem; }
.ph-dim{ color:#cbd5e1; }

.ph-buttons{ display:flex; gap:.75rem; margin-top: .8rem; justify-content:center; flex-wrap:wrap; }

.ph-badges{
  list-style:none; display:flex; gap:.6rem; justify-content:center; margin:1rem 0 0; padding:0; flex-wrap:wrap;
}
.ph-badges li{
  padding:.35rem .7rem; border-radius:999px; font-size:.86rem;
  color:#d1fae5; background: linear-gradient(90deg, rgba(16,185,129,.25), rgba(56,189,248,.22));
  border:1px solid rgba(148,163,184,.18);
}

.contact-copy{
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border: 1px solid rgba(56,189,248,.15);
  border-radius: 16px;
  padding: 2rem 1.25rem;
  margin: 2rem 0;
  box-shadow: 0 12px 30px rgba(56,189,248,.10);
}
.contact-copy__inner{ max-width: 1040px; margin: 0 auto; }
.copy-grid{
  display:grid; gap:1rem; grid-template-columns: repeat(3, minmax(0,1fr));
}
.copy-card{
  background: rgba(15,23,42,.55);
  border: 1px solid rgba(148,163,184,.18);
  border-radius: 14px; padding: 1rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.copy-card:hover{
  transform: translateY(-6px);
  box-shadow:0 16px 34px rgba(56,189,248,.18);
  border-color: rgba(56,189,248,.35);
}
.copy-card h3{ color:#f1f5f9; margin-bottom:.4rem; }
.copy-card p{ color:#cbd5e1; }

@media (max-width: 900px){
  .ph-glass-row{ flex-direction:column; align-items:flex-start; }
  .hide-sm{ display:none; }
  .copy-grid{ grid-template-columns: 1fr; }
}

.partner-main {
  margin-bottom: 1rem;
}

/* === NAV: DROPDOWN === */
.c-dropdown {
  position: relative;
}
.c-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: #e2e8f0;
  font: inherit;
}
.c-dropdown__chev {
  font-size: 0.85rem;
  opacity: 0.9;
}
.c-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #0f172a;
  border: 1px solid #1e293b;
  border-radius: 10px;
  padding: 0.4rem;
  list-style: none;
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
  display: none;
  z-index: 999;
}
.c-dropdown.open .c-dropdown__menu {
  display: block;
}
.c-dropdown__menu a {
  display: block;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  color: #e2e8f0;
  text-decoration: none;
  white-space: nowrap;
}
.c-dropdown__menu a:hover {
  background: rgba(255,255,255,0.04);
  color: #38bdf8;
}

/* Hover open on desktop */
@media (min-width: 769px) {
  .c-dropdown:hover .c-dropdown__menu {
    display: block;
  }
}

/* Mobile: make dropdown menu full-width under item */
@media (max-width: 768px) {
  .c-dropdown__menu a {
    padding: 0.75rem 1rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .c-dropdown__menu {
    background: transparent;
    border: none;
    padding: 0;
  }
}

:root { --header-h: 64px; } /* tweak if your header is taller */

/* Mobile nav layout */
@media (max-width: 768px) {
  .header { position: sticky; top: 0; z-index: 1000; }

  .c-nav { position: relative; z-index: 1001; }
  .c-nav__toggle { display: flex; position: relative; z-index: 1002; }

  /* Full-screen slide-out panel */
  .c-nav__content {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: #0f172a;
    display: none;
    padding: 1rem 1.5rem;
    overflow-y: auto;
    border-top: 1px solid #1e293b;
  }
  .c-nav__content.active { display: block; }

  /* Prevent background scroll when menu open */
  body.nav-open { overflow: hidden; }

  /* Menu list look/feel */
  .c-list--flex {
    flex-direction: column;
    gap: 0;
  }
  .c-list__item > a {
    display: block;
    width: 100%;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  /* Tools dropdown = accordion */
  .c-dropdown { width: 100%; }
  .c-dropdown__toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: 0;
    padding: 0.9rem 0;
    color: #e2e8f0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
  }
  .c-dropdown__chev { transition: transform .25s ease; }
  .c-dropdown.open .c-dropdown__chev { transform: rotate(180deg); }

  .c-dropdown__menu {
    position: static;
    display: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    margin: 0;
  }
  .c-dropdown.open .c-dropdown__menu { display: block; }

  .c-dropdown__menu a {
    display: block;
    padding: 0.85rem 0 0.85rem 0.75rem; /* slight indent */
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
}

@media (max-width: 768px) {
  .c-dropdown__menu {
    display: none !important;
    position: static;
    padding: 0;
    margin: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .c-dropdown.open .c-dropdown__menu {
    display: block !important;
  }

  .c-dropdown__toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .c-dropdown__chev { transition: transform .25s ease; }
  .c-dropdown.open .c-dropdown__chev { transform: rotate(180deg); }

  .c-dropdown__menu a {
    display: block;
    padding: 0.85rem 0 0.85rem 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  /* ensure each list item stacks (prevents same-row issue) */
  .c-list__item { display: block; gap: 0 !important; }

  /* spacing before Create Ticket */
  .c-nav__content .ticket-button { display: block; width: 100%; margin-top: 0.75rem; }
}

@media (max-width: 768px) {
  .header { 
    padding: .5rem 0;            /* shorter header on phones */
  }

  .c-logo .c-logo__img{
    height: 2.25rem;             /* was 3rem; shrink to avoid cropping */
    width: auto;
    display: block;               /* avoids baseline clipping */
    object-fit: contain;
  }

  .header__wrapper{
    gap: .75rem;                  /* tighter spacing = less wrap risk */
  }
}
