/*----------- Google Fonts ----------*/
@font-face {
  font-family: 'Clash Display';
  src: url('/frontend/fonts/ClashDisplay-Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #EA4335;
  --secondary: #910e02;
  --bg-color: #000207;
  --dark-blue: #034a9c;
  --blue: #0079FF;
  --white: #ffffff;
  --gray: #9F9F9F;
  --black: #000207;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Clash Display', sans-serif !important;
  overflow-x: hidden;
  background-color: var(--bg-color) !important;
}

.navbar-toggler:focus,
.btn-close:focus,
.form-control:focus {
  box-shadow: none !important;
}

::selection {
  color: var(--white);
  background-color: var(--primary);
}

::-webkit-scrollbar {
  width: 7px;
  height: 4px;
}

::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: radial-gradient(circle at center, #EA4335, #910e02);
}

/*-----------------------------------------------
Header And Hero
-------------------------------------------------*/
header {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
  background-color: #000000bf;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
}

#earth-bg {
  position: absolute;
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%);
  width: 100vw; 
  height: 100vh;
  z-index: 1;
  overflow: hidden;
}

#myearth {
    width: 100vw;
    height: 100vh;
}

#glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 102%;
    max-width: 102vh;
    height: 102vh;
    max-height: 102vh;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center, rgba(255, 0, 51, 0.12) 25%, rgba(255, 0, 51, 0.25) 53%, rgba(220, 20, 60, 0.178) 56%, rgba(220, 20, 60, 0) 70%);
    z-index: -2;
    pointer-events: none;
}
@media (max-width: 800px) {
  #glow {
    display: none;
  }
}
#hero {
  background-image: url('/frontend/images/hero-bg.png');
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

#hero .hero-globe {
  margin-top: 3rem;
  width: clamp(500px, 55vw, 720px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  /* initial state */
  animation: globe-rotate 60s linear infinite;
}

@media (max-height: 860px) {
  #hero {
    padding: 3rem 0 !important;
  }

  #hero .hero-globe {
    width: clamp(400px, 55vw, 550px);
  }
}

/* Globe Animation */
@keyframes globe-rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Hero Social Icons */
/* Global floating style (duration and ease) */
.hero-social-icon {
  position: absolute;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
.hero-social-icon.facebook {
  opacity: 0.8;
  width: clamp(50px, 5vw, 120px);
  top: 20%;
  left: 10%;
  animation-name: moveToCircleFacebook;
}

@keyframes moveToCircleFacebook {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(180px, -100px) scale(0.7);
    opacity: 0.4;
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.8;
  }
}

@media (max-width: 1200px) {
  @keyframes moveToCircleFacebook {
    0% {
      transform: translate(0, 0) scale(1);
      opacity: 0.8;
    }
    50% {
      transform: translate(90px, -50px) scale(0.7);
      opacity: 0.4;
    }
    100% {
      transform: translate(0, 0) scale(1);
      opacity: 0.8;
    }
  }
}

.hero-social-icon.google {
  opacity: 0.5;
  width: clamp(50px, 5vw, 100px);
  bottom: 20%;
  left: 10%;
  animation-name: moveToCircleGoogle;
}

@keyframes moveToCircleGoogle {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(180px, 60px) scale(0.7);
    opacity: 0.3;
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
}

@media (max-width: 1200px) {
  @keyframes moveToCircleGoogle {
    0% {
      transform: translate(0, 0) scale(1);
      opacity: 0.5;
    }
    50% {
      transform: translate(90px, 20px) scale(0.7);
      opacity: 0.3;
    }
    100% {
      transform: translate(0, 0) scale(1);
      opacity: 0.5;
    }
  }
}

.hero-social-icon.ticketmaster {
  opacity: 0.9;
  width: clamp(50px, 5vw, 80px);
  bottom: 45%;
  left: 3%;
  animation-name: moveToCircleTicketmaster;
}

@keyframes moveToCircleTicketmaster {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.9;
  }
  50% {
    transform: translate(140px, 50px) scale(0.7);
    opacity: 0.5;
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.9;
  }
}

@media (max-width: 1200px) {
  @keyframes moveToCircleTicketmaster {
    0% {
      transform: translate(0, 0) scale(1);
      opacity: 0.9;
    }
    50% {
      transform: translate(70px, 25px) scale(0.7);
      opacity: 0.5;
    }
    100% {
      transform: translate(0, 0) scale(1);
      opacity: 0.9;
    }
  }
}

.hero-social-icon.whatsapp {
  opacity: 0.9;
  width: clamp(50px, 5vw, 80px);
  top: 20%;
  right: 8%;
  animation-name: moveToCircleWhatsapp;
}

@keyframes moveToCircleWhatsapp {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.9;
  }
  50% {
    transform: translate(-180px, -100px) scale(0.7);
    opacity: 0.5;
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.9;
  }
}

@media (max-width: 1200px) {
  @keyframes moveToCircleWhatsapp {
    0% {
      transform: translate(0, 0) scale(1);
      opacity: 0.9;
    }
    50% {
      transform: translate(-90px, -50px) scale(0.7);
      opacity: 0.5;
    }
    100% {
      transform: translate(0, 0) scale(1);
      opacity: 0.9;
    }
  }
}

.hero-social-icon.instagram {
  opacity: 0.7;
  width: clamp(50px, 5vw, 80px);
  bottom: 45%;
  right: 0%;
  animation-name: moveToCircleInstagram;
}

@keyframes moveToCircleInstagram {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(-180px, 50px) scale(0.7);
    opacity: 0.4;
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
  }
}

@media (max-width: 1200px) {
  @keyframes moveToCircleInstagram {
    0% {
      transform: translate(0, 0) scale(1);
      opacity: 0.7;
    }
    50% {
      transform: translate(-90px, 25px) scale(0.7);
      opacity: 0.4;
    }
    100% {
      transform: translate(0, 0) scale(1);
      opacity: 0.7;
    }
  }
}

.hero-social-icon.youtube {
  opacity: 0.9;
  width: clamp(50px, 5vw, 100px);
  bottom: 20%;
  right: 10%;
  animation-name: moveToCircleYoutube;
}

@keyframes moveToCircleYoutube {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.9;
  }
  50% {
    transform: translate(-180px, 40px) scale(0.7);
    opacity: 0.5;
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.9;
  }
}

@media (max-width: 1200px) {
  @keyframes moveToCircleYoutube {
    0% {
      transform: translate(0, 0) scale(1);
      opacity: 0.9;
    }
    50% {
      transform: translate(-90px, 20px) scale(0.7);
      opacity: 0.5;
    }
    100% {
      transform: translate(0, 0) scale(1);
      opacity: 0.9;
    }
  }
}

/* Hero Overlay */
/* #hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); 
} */

#hero .hero-title {
  font-size: clamp(1rem, 7vw, 5rem);
  line-height: 1;
}

#hero .planet-glow {
  position: absolute;
  bottom: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(255, 60, 60, 0.661), rgb(255 54 54 / 29%), transparent 70%);
  filter: blur(100px);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}

/*-----------------------------------------------
Service
------------------------------------------------*/
.brand-slider {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    height: 60px;
}

.brand-track {
    display: inline-flex;
    align-items: center;
    animation: scroll 20s linear infinite;
}

.brand-logo {
    flex: 0 0 auto;
    margin: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: brightness(0) invert(1);
}

.brand-logo img {
    max-height: 100%;
    max-width: 140px;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-25%);
    }
}

.brand-slider:hover .brand-track {
    animation-play-state: paused;
}
/*-----------------------------------------------
FEATURES
------------------------------------------------*/
#features .card {
  position: relative;
  overflow: hidden;
  color: var(--white);
  border: 1px solid var(--primary) !important;
  background: linear-gradient(to bottom right, #0a0a0a, #242424);
  transition: all 0.3s ease;
}
#features .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 30px rgba(255, 63, 63, 0.64);
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.193) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: none;
}

.feature-card:hover::before {
  animation: shine .7s ease forwards;
}

/* Animation Keyframes */
@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}
/* #features .card::after {
  content: '';
  position: absolute;
  top: -1.3px;
  left: -1.3px;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, #0079FF, transparent, transparent, transparent);
  border-radius: inherit;
  z-index: -1;
} */

#features .card .card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at center, #343434, transparent);
  box-shadow: -1px -1px 2px rgb(255, 255, 255);
}

#features .card .card-icon img {
  width: 30px;
  height: 30px;
}
#features .card .card-text{
  color: var(--gray);
  font-size: 13px;
}
/*-----------------------------------------------
Pricing
------------------------------------------------*/
#pricing-table {
  max-width: 1000px;
  margin: 0 auto;
}
.custom-switch {
  width: 70px;
  height: 30px;
  background: radial-gradient(circle at center, #EA4335, #910e02);
  border: none;
  cursor: pointer;
  appearance: none;
  position: relative;
  outline: none;
  border-radius: 50px;
}
.loading {
    display: none;
    text-align: center;
    padding: 20px;
}
.no-results {
    display: none;
    text-align: center;
    padding: 20px;
    color: #888;
}
/* The slider circle */
.custom-switch::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 30px;
  background-color: var(--white);
  border-radius: 50px;
  transition: 0.3s ease all;
}

/* Move the circle when checked */
.custom-switch:checked::before {
  transform: translateX(30px);
}

footer{
  background: radial-gradient(circle, #000000, #150000);
}
/*-----------------------------------------------
Breadcrumb
------------------------------------------------*/
.breadcrumb-section {
  height: 90vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.breadcrumb-section.loaded {
    opacity: 1;
}

.breadcrumb-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
}

.breadcrumb-section .breadcrumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.breadcrumb-title {
  font-size: clamp(1rem, 10vw, 5rem);
  line-height: 1;
}

/*-----------------------------------------------
FAQ
------------------------------------------------*/
#faq-bg-img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.faq-accordion .accordion-item {
  background-color: #111111;
  color: #fff;
  border: 1px solid #1a1a1a;
  border-radius: 20px !important;
  margin-bottom: 1.5rem;
  padding-left: 5rem;
  position: relative;
}

.faq-accordion .accordion-item::after {
  content: '';
  position: absolute;
  top: -1.3px;
  left: -1.3px;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, #B01001, transparent, transparent, transparent);
  border-radius: inherit;
  z-index: -1;
}

.faq-accordion .accordion-button {
  box-shadow: none !important;
  border: 0 !important;
  color: var(--white) !important;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 1.5rem;
  border-radius: 20px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #111111 !important;
}

.faq-accordion .accordion-button::after {
  content: "+";
  font-size: 1.5rem;
  background: #fff;
  color: #000;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "×";
  background: radial-gradient(circle at center, #EA4335, #910e02);
  color: #fff;
}


.faq-accordion .accordion-body {
  padding: 0 1.5rem 1.5rem;
  color: #ccc;
  font-size: 1rem;
}

.faq-number-wrap {
  position: absolute;
  top: 50%;
  left: 2rem;
  transform: translateY(-50%);
}

.faq-number {
  font-size: 2rem;
  font-weight: 800;
  color: #6f6f6f;
}

.faq-number.active {
  color: transparent;
  background: radial-gradient(circle at center, #EA4335 0%, #910e02 30px);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/*-----------------------------------------------
Contact
------------------------------------------------*/
#form {
  padding: 5rem 3rem;
  background: linear-gradient(to bottom right, var(--black), #171717);
  border-radius: 20px;
  position: relative;
}

#form::after {
  content: '';
  position: absolute;
  top: -1.3px;
  left: -1.3px;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, var(--primary), transparent, transparent, transparent);
  border-radius: inherit;
  z-index: -1;
}

#form ::placeholder {
  color: #ffffff;
}

/*----------------------------------------------- 
Utilities
------------------------------------------------*/
.text-gradient {
  color: transparent;
  background: radial-gradient(circle at center, #EA4335 0%, #910e02 300px);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-primary-gradient {
  background: radial-gradient(circle at center, #EA4335, #910e02);
}

.section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.gradient-btn {
  display: inline-block;
  padding: .8rem calc(1.2rem + 2vw);
  border: none;
  border-radius: 50px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  text-decoration: none;
  background: radial-gradient(circle at center, #EA4335, #910e02);
  background-size: 200% 200%;
  background-position: center;
  transition: background-position 0.5s ease, box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 24, 0, 0.4);
}

.gradient-btn:hover {
  background-position: right center;
}

.text-btn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: solid !important;
  color: transparent;
  background: radial-gradient(circle at center, #EA4335, #910e02);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.text-btn i {
  font-size: .9rem;
  transform: rotate(-45deg);
  color: transparent;
  background: radial-gradient(circle at center, #EA4335, #910e02);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform 0.3s ease;
}

.text-btn:hover i {
  transform: rotate(0deg);
}

.bg-color {
  background-color: var(--bg-color) !important;
}

.bg-dark-blue {
  background-color: var(--dark-blue) !important;
}
.bg-gradient-primary{
  background: radial-gradient(circle at center, #EA4335, #910e02);
}
.bg-black {
  background-color: var(--black) !important;
}

.bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow-x: hidden;
}

.text-hover-primary {
  transition: all 0.3s ease-in-out;
}

.text-hover-primary:hover {
  color: var(--primary) !important;
}

.top-mix {
  background: linear-gradient(to bottom, var(--bg-color), transparent);
  height: 300px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.bottom-mix {
  background: linear-gradient(to top, var(--bg-color), transparent);
  height: 300px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.blur-circle {
  position: absolute;
  width: clamp(300px, 50vw, 400px);
  height: clamp(300px, 50vw, 400px);
  border-radius: 50%;
  background: var(--secondary);
  opacity: .8;
  filter: blur(150px);
  z-index: 2;
}
.corner-border{
    position: relative;
}
.corner-border::after {
  content: '';
  position: absolute;
  top: -1.3px;
  left: -1.3px;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, var(--primary), transparent, transparent, transparent);
  border-radius: inherit;
  z-index: -1;
}
.icon-square {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: radial-gradient(circle at center, var(--primary), var(--secondary));
}

@media screen and (max-width: 768px) {
  .overflow-md-hidden {
    overflow: hidden !important;
  }
}
.pointer-events-none {
  pointer-events: none !important;
}
