@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap");
body {
  overflow-x: hidden;
}

/* ======================== TEAM GRID ======================== */
.team-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.team-grid .team-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}
.team-grid .team-member {
  width: 255px;
  text-align: center;
}
@media (max-width: 840px) {
  .team-grid .team-member {
    width: 200px;
  }
}
.team-grid .team-member__image {
  position: relative;
  display: inline-block;
  border-radius: 50%;
  border: 1px solid transparent;
  filter: grayscale(100%);
  transition: filter 0.3s, box-shadow 0.3s;
}
.team-grid .team-member__image img {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  display: block;
}
@media (max-width: 840px) {
  .team-grid .team-member__image img {
    width: 130px;
    height: 130px;
  }
}
.team-grid .team-member__image:hover {
  filter: grayscale(0%);
  box-shadow: 3px 0px 14.4px 0px rgba(255, 255, 255, 0.7), -4px 2px 11.2px 0px rgba(225, 225, 4, 0.7);
  border: 1px solid rgb(225, 225, 4);
}
@media (max-width: 840px) {
  .team-grid .team-member__image {
    filter: none;
  }
}
.team-grid .team-member__title {
  margin: 15px 0 5px;
}
.team-grid .team-member__title::after {
  content: "";
  display: block;
  width: 46px;
  height: 1px;
  background: #E1E104;
  margin: 10px auto 0;
}
@media (max-width: 840px) {
  .team-grid .team-member__title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.team-grid .team-member__body p {
  margin: 0;
}
@media (max-width: 840px) {
  .team-grid .team-member__body {
    font-size: 14px;
  }
}
.team-grid--desktop {
  display: flex;
}
.team-grid--mobile {
  display: none;
  flex-direction: column;
  gap: 20px;
}
.team-grid--mobile .team-row {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.team-grid--mobile .team-member {
  width: calc(50% - 10px);
}
@media (max-width: 840px) {
  .team-grid--desktop {
    display: none;
  }
  .team-grid--mobile {
    display: flex;
  }
}

/* ======================== TWIN SLIDES ======================== */
.twin-slides-section {
  width: 100%;
  overflow: hidden;
  background-color: #000;
  padding: 40px 0;
  direction: ltr;
}

.marquee {
  width: 100%;
  overflow: hidden;
}
.marquee:last-child {
  margin-bottom: 0;
}

.marquee__inner {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
}

.marquee--right {
  margin-bottom: -35px;
}
@media (max-width: 840px) {
  .marquee--right {
    margin-bottom: -20px;
  }
}

.marquee--right .marquee__inner {
  animation: marquee-right 35s linear infinite;
}

.marquee--left .marquee__inner {
  animation: marquee-left 35s linear infinite;
}

.marquee__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  min-width: 150px;
}
@media (max-width: 840px) {
  .marquee__item {
    padding: 0px 5px;
    min-width: 80px;
  }
}
.marquee__item img {
  max-width: 150px !important;
  max-height: 110px !important;
  width: 150px !important;
  height: 110px !important;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
@media (max-width: 840px) {
  .marquee__item img {
    width: 80px !important;
    height: 80px !important;
  }
}
.marquee__item:hover img {
  opacity: 1;
}

@keyframes marquee-right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes marquee-left {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
@media (max-width: 1024px) {
  .twin-slides-section {
    padding: 30px 0;
  }
  .marquee__item img {
    max-width: 240px;
    max-height: 120px;
  }
}
@media (max-width: 768px) {
  .twin-slides-section {
    padding: 20px 0;
  }
  .marquee__item img {
    max-width: 200px;
    max-height: 100px;
  }
}
@media (max-width: 480px) {
  .twin-slides-section {
    padding: 15px 0;
  }
  .marquee__item img {
    max-width: 160px;
    max-height: 80px;
  }
}
/* ======================== VIDEO PLAYER ======================== */
.sparks-video-wrap {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
}
.sparks-video-wrap video {
  width: 100%;
  height: auto;
  display: block;
}

/* ======================== PROJECTS ======================== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 840px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 15px;
    overflow-x: hidden;
  }
}

.project-item {
  text-align: center;
  border-radius: 16px;
  overflow: hidden;
}
.project-item--hidden {
  display: none;
}

.projects-more-wrap {
  text-align: center;
  margin-top: 40px;
}
.projects-more-wrap.is-hidden {
  display: none;
}

.project-item__title {
  margin-bottom: 0px;
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 840px) {
  .project-item__title {
    font-size: 16px !important;
  }
}

.projects-more-btn {
  background: none;
  border-top: 0px solid transparent;
  border-right: 0px solid transparent;
  border-left: 0px solid transparent;
  border-bottom: 1px solid #E1E104;
  color: #fff;
  padding: 12px 40px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 0px;
  transition: background 0.2s, color 0.2s;
}
.projects-more-btn:hover {
  background: #E1E104;
  color: #000;
}

.project-item__image {
  position: relative;
  display: flex;
  justify-content: center;
  border-radius: 16px !important;
  overflow: hidden !important;
}
.project-item__image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130%;
  height: 130%;
  background: url("../images/project_bg.png") center/contain no-repeat;
  z-index: 0;
  pointer-events: none;
}
.project-item__image img {
  position: relative;
  z-index: 1;
}
.project-item__image[data-video] {
  cursor: pointer;
}

.video-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  align-items: center;
  justify-content: center;
}
.video-lightbox.is-active {
  display: flex;
}
.video-lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}
.video-lightbox__wrap {
  position: relative;
  width: 60%;
  max-width: 640px;
  z-index: 1;
}
@media (max-width: 768px) {
  .video-lightbox__wrap {
    width: 85%;
  }
}
.video-lightbox__player {
  width: 100%;
  max-height: 70vh;
  border-radius: 8px;
  background: #000;
}
.video-lightbox__close {
  position: absolute;
  top: -48px;
  right: -8px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.video-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.curved-borders {
  border-top: 2px solid rgba(255, 255, 255, 0.25);
  border-bottom: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px !important;
}

#sbi_images {
  padding: 0px !important;
  border-radius: 39px !important;
  overflow: hidden !important;
}
@media (max-width: 840px) {
  #sbi_images {
    border-radius: 8px !important;
  }
}

.sb_instagram_header {
  display: none;
}

#sbi_load {
  display: none !important;
}

/* ======================== FORCE ELEMENTOR VIDEO AUTOPLAY ======================== */
/* Hide the play button overlay and poster/thumbnail that Elementor shows */
.elementor-widget-video .elementor-custom-embed-play,
.elementor-widget-video .elementor-custom-embed-image-overlay {
  display: none !important;
}

/* ======================== HERO HEADING WITH STAR ======================== */
.sparks-hero-heading {
  text-align: center;
  font-size: 72px;
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
  margin: 0;
  direction: ltr;
  font-family: "Sora", sans-serif !important;
}
@media (max-width: 840px) {
  .sparks-hero-heading {
    font-size: 40px;
  }
}

.sparks-hero-highlight {
  color: #E1E104;
}

.sparks-hero-dot {
  display: inline-block;
  width: 30px;
  height: 30px;
  vertical-align: baseline;
}

.sparks-anim {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
  transform: translate(10px, 10px);
}

.sparks-anim__frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px !important;
  height: 30px !important;
  -o-object-fit: contain;
     object-fit: contain;
}

.sparks-anim__frame--1 {
  opacity: 1;
}

.sparks-anim__frame--2 {
  display: block;
  opacity: 0;
  animation: blink 1500ms ease-in-out infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.dotlottie-wrap {
  display: block;
}
@media (max-width: 840px) {
  .dotlottie-wrap {
    display: none;
  }
}

.dotlottie-wrap-mobile {
  display: none;
}
@media (max-width: 840px) {
  .dotlottie-wrap-mobile {
    display: block;
    width: 100%;
  }
}
.dotlottie-wrap-mobile canvas {
  max-width: 100%;
}

/* ======================== ADMIN GREETING / SOLAR ORBITS ======================== */
.ag-solar {
  position: relative;
  width: 700px;
  height: 700px;
  margin: 0 auto;
}
@media (max-width: 1300px) {
  .ag-solar {
    transform: scale(0.75);
    transform-origin: center center;
    width: 500px;
    height: 500px;
  }
}
@media (max-width: 840px) {
  .ag-solar {
    transform: scale(0.5);
    transform-origin: center center;
    width: 300px;
    height: 300px;
  }
}

.ag-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.ag-center img {
  display: block;
  width: 70px;
  height: 70px;
}

/* ---------- ripple effect ---------- */
.ag-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid rgb(255, 255, 255);
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: ag-ripple 7s linear infinite;
}
.ag-ripple--2 {
  animation-delay: 0.6s;
}
.ag-ripple--3 {
  animation-delay: 1.2s;
}

@keyframes ag-ripple {
  0% {
    width: 25px;
    height: 25px;
    opacity: 0;
  }
  25% {
    width: 85px;
    height: 85px;
    opacity: 0.9;
  }
  38% {
    width: 115px;
    height: 115px;
    opacity: 0.5;
  }
  43% {
    width: 125px;
    height: 125px;
    opacity: 0;
  }
  100% {
    width: 125px;
    height: 125px;
    opacity: 0;
  }
}
.ag-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.ag-orbit--1 {
  width: 150px;
  height: 150px;
  border: 1px solid rgb(225, 225, 4);
}
.ag-orbit--2 {
  width: 290px;
  height: 290px;
  border: 1px solid rgb(225, 225, 4);
}
.ag-orbit--3 {
  width: 450px;
  height: 450px;
  border: 1px solid rgb(255, 255, 255);
}

.ag-orbit__track {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}
.ag-orbit__track--2 {
  animation: ag-spin 30s linear infinite;
}
.ag-orbit__track--3 {
  animation: ag-spin 20s linear infinite reverse;
}

.ag-dot {
  position: absolute;
  border-radius: 50%;
}
.ag-dot--circle {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ag-dot {
  /* Odd circles: gradient bg */
}
.ag-dot--circle:nth-child(odd) {
  background: linear-gradient(135deg, #111111, #211f23);
  border: 1px solid transparent;
}
.ag-dot {
  /* Even circles: yellow border, black bg */
}
.ag-dot--circle:nth-child(even) {
  background: #000;
  border: 1px dotted #E1E104;
}
.ag-dot__label {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
  font-family: "Heebo", sans-serif;
}
.ag-dot--yellow {
  width: 8px;
  height: 8px;
  background: #E1E104;
  box-shadow: 0 0 8px rgba(225, 225, 4, 0.6);
}
.ag-dot__tag-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Push outward radially (negative Y = away from center in rotated space) */
  transform: translate(-50%, -50%) translateY(-50px);
  pointer-events: none;
}
.ag-dot__tag {
  display: inline-block;
  background: #e8e8e8;
  color: #000;
  font-family: "Heebo", sans-serif;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  padding: 6px 16px;
  border-radius: 20px;
  animation: ag-tag-pulse 5s ease-in-out infinite;
}

@keyframes ag-tag-pulse {
  0% {
    transform: scale(0);
  }
  8% {
    transform: scale(1);
  }
  75% {
    transform: scale(1);
  }
  85% {
    transform: scale(0);
  }
  100% {
    transform: scale(0);
  }
}
/* Orbit 2: 8 dots evenly spaced (every 45°) on a 200px radius circle */
.ag-orbit__track--2 .ag-dot {
  top: 50%;
  left: 50%;
}

.ag-orbit__track--2 .ag-dot:nth-child(1) {
  --angle: 0deg;
  transform: translate(-50%, -50%) rotate(0deg) translateY(-145px);
}

.ag-orbit__track--2 .ag-dot:nth-child(2) {
  --angle: 45deg;
  transform: translate(-50%, -50%) rotate(45deg) translateY(-145px);
}

.ag-orbit__track--2 .ag-dot:nth-child(3) {
  --angle: 90deg;
  transform: translate(-50%, -50%) rotate(90deg) translateY(-145px);
}

.ag-orbit__track--2 .ag-dot:nth-child(4) {
  --angle: 135deg;
  transform: translate(-50%, -50%) rotate(135deg) translateY(-145px);
}

.ag-orbit__track--2 .ag-dot:nth-child(5) {
  --angle: 180deg;
  transform: translate(-50%, -50%) rotate(180deg) translateY(-145px);
}

.ag-orbit__track--2 .ag-dot:nth-child(6) {
  --angle: 225deg;
  transform: translate(-50%, -50%) rotate(225deg) translateY(-145px);
}

.ag-orbit__track--2 .ag-dot:nth-child(7) {
  --angle: 270deg;
  transform: translate(-50%, -50%) rotate(270deg) translateY(-145px);
}

.ag-orbit__track--2 .ag-dot:nth-child(8) {
  --angle: 315deg;
  transform: translate(-50%, -50%) rotate(315deg) translateY(-145px);
}

/* Counter-rotate labels so text stays upright */
.ag-orbit__track--2 .ag-dot__label {
  animation: ag-counter-spin 30s linear infinite;
}

/* Orbit 3: 3 yellow dots evenly spaced (every 120°) on a 290px radius circle */
.ag-orbit__track--3 .ag-dot {
  top: 50%;
  left: 50%;
}

.ag-orbit__track--3 .ag-dot:nth-child(1) {
  --angle: 0deg;
  transform: translate(-50%, -50%) rotate(0deg) translateY(-225px);
}

.ag-orbit__track--3 .ag-dot:nth-child(2) {
  --angle: 120deg;
  transform: translate(-50%, -50%) rotate(120deg) translateY(-225px);
}

.ag-orbit__track--3 .ag-dot:nth-child(3) {
  --angle: 240deg;
  transform: translate(-50%, -50%) rotate(240deg) translateY(-225px);
}

/* Counter-rotate the text so it stays upright */
.ag-orbit__track--3 .ag-dot__tag-spin {
  display: inline-block;
  animation: ag-counter-spin-reverse 20s linear infinite;
}

/* Stagger the pulse on the tag itself */
.ag-orbit__track--3 .ag-dot:nth-child(1) .ag-dot__tag {
  animation-delay: 0s;
}

.ag-orbit__track--3 .ag-dot:nth-child(2) .ag-dot__tag {
  animation-delay: 0.66s;
}

.ag-orbit__track--3 .ag-dot:nth-child(3) .ag-dot__tag {
  animation-delay: 1.33s;
}

@keyframes ag-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Counter-rotate labels: cancels both the track spin AND the dot's placement angle */
@keyframes ag-counter-spin {
  0% {
    transform: rotate(calc(-1 * var(--angle)));
  }
  100% {
    transform: rotate(calc(-360deg - var(--angle)));
  }
}
/* Counter-rotate for orbit 3 (which spins in reverse, so tags spin forward to cancel) */
@keyframes ag-counter-spin-reverse {
  0% {
    transform: rotate(calc(-1 * var(--angle)));
  }
  100% {
    transform: rotate(calc(360deg - var(--angle)));
  }
}/*# sourceMappingURL=custom.css.map */