html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'SoraCustom';
    src: url('https://www.seltop.work/assets/Sora-Regular-CCGCDK4e.ttf') format('truetype');
}
@font-face {
    font-family: 'ArchivoCustom';
    src: url('https://www.seltop.work/assets/Archivo-Regular-Dv2uU1nf.ttf') format('truetype');
}

@font-face {
    font-family: 'Romantic';
    src: url('assets/ROMANTIC.TTF') format('truetype');
}

@font-face {
    font-family: 'Workshop';
    src: url(assets/BigloveChristmasDEMO.otf);
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #212121;
    color: #fff;
    margin: 0;
}

.celestial {
    color: #00E0FF;
}

#hero-video-container {
    position: absolute;
    top:0; left:0; width:100%; height:100%; overflow:hidden; z-index:-20;
}
#hero-video { width:100%; height:100%; object-fit:cover; }
#video-overlay { position:absolute; inset:0; background: rgba(33,33,33,0.7); z-index:-10; }

.hero-title { font-weight:800; letter-spacing:-0.05em; text-shadow:4px 4px 6px rgba(0,0,0,0.9); }

.hero-para { text-shadow:3px 3px 2px rgba(27, 27, 29, 1); }

.cta-button { box-shadow: 0 4px 15px rgba(16, 227, 16, 0.5); }

.marquee-container {
    overflow: hidden;
    width: 100%;
    margin: 0 auto; 
    mask-image: linear-gradient(to right, transparent 0%, white 10%, white 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, white 10%, white 90%, transparent 100%);
}
.marquee-content { display:flex; width:max-content; animation: scroll-left 60s linear infinite; padding:20px 0; } 
.marquee-container:hover .marquee-content { animation-play-state: paused; }
@keyframes scroll-left { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

.testimonial-card {
    min-width: 300px;
    width: 500px; 
    flex-shrink: 0;
    background: #272727;
    border-radius: 16px;
    padding: 24px;
    height: fit-content;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}


.gallery-wrap {
    max-width: 1404px;
    margin: 0 auto;
    padding: 0px 20px 20px 20px;
    box-sizing: border-box;
}

.gallery-grid {
    
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.video-card-container {
    background: #272727;
    border-radius: 16px;
    padding: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.video-card-container:hover { 
    transform: translateY(-6px); 
    box-shadow: 0 10px 30px rgba(0,0,0,.5); 
}

.video-card-thumb { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    border-radius: 10px; 
    display: block; 
}
.video-thumb-link {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 16 / 9;
    cursor: pointer;
}
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.85;
    transition: opacity 0.2s ease;
    pointer-events: none;
}
.video-thumb-link:hover .play-btn {
    opacity: 1;
}
.video-card-title { 
    font-size: 20px; 
    margin: 10px 0 4px 0; 
    color: #fff; 
}
.video-card-meta { 
    color: #aaa; 
    font-size: 14px; 
}

a { text-decoration:none; color:inherit; display:block; }

@media (max-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-wrap { padding: 30px 16px; }
    .gallery-wrap h1 { font-size: 36px; }
}

.stats-banner-widget {
    --sb-bg: #272727;
    --sb-card: #f9fdec;
    --sb-shadow: rgba(0,0,0,0.35);
    --sb-gap: 14px;
    font-family: Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.stats-banner-widget .sb-bleed {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    box-sizing: border-box;
}

.stats-banner-widget .banner {
    background: var(--sb-bg);
    padding: 60px 0;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.stats-banner-widget .banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(0, 0, 0, 0.25) 0 6px,
        rgba(0, 0, 0, 0) 6px 40px
    );
    opacity: 0.35;
    pointer-events: none;
    z-index: 1;
}

.stats-banner-widget .cards {
    width: 100%;
    max-width: 1100px;
    display: flex;
    gap: 48px;
    justify-content: center;
    align-items: center;
    z-index: 2;
    padding: 0 16px;
    box-sizing: border-box;
}

.stats-banner-widget .stat-card {
    background: var(--sb-card);
    padding: 20px 36px;
    border-radius: 14px;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: var(--sb-gap);
    z-index: 2;

    box-shadow: 4px 4px 0 var(--sb-shadow);

    min-width: 0;
}

.stats-banner-widget .stat-card .emoji {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    display: inline-block;
}

.stats-banner-widget .stat-card .text {
    display: inline-block;
    line-height: 1.1;
    white-space: normal;
    word-break: break-word;
}

.text {
    color: black;
}

@media (max-width: 900px) {
    .stats-banner-widget .cards { gap: 28px; }
    .stats-banner-widget .stat-card { padding: 16px 22px; font-size: 18px; }
    .stats-banner-widget .stat-card .emoji { width: 36px; height: 36px; }
}

@media (max-width: 480px) {
    .stats-banner-widget .banner { padding: 28px 0; }
    .stats-banner-widget .cards {
        flex-direction: column;
        gap: 16px;
        align-items: center;
}
.stats-banner-widget .stat-card {
    width: 100%;
    max-width: 420px;
    padding: 14px 18px;
    font-size: 16px;
    justify-content: center;
    text-align: center;
    gap: 12px;
    border-radius: 12px;
    box-shadow: 4px 4px 0 var(--sb-shadow);
}
.stats-banner-widget .stat-card .emoji { width: 44px; height: 44px; }
}

.stats-banner-widget * { box-sizing: border-box; }


footer {
    width: 100%;
    color: #ffffff;
    background-image: url("assets/timeline.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding-top: 0;
}


footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.footer-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 26px;
  display: grid;
  grid-template-columns: 2fr 1.4fr;
  gap: 40px;
  align-items: center;
  z-index: 1;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  text-align: center;
}


.logo-text {
  font-size: 30px;
  letter-spacing: 4px;
  font-family: 'Romantic', Workshop;
  padding-bottom: 0px;
}

.tagline h2 {
  font-size: 20px;
  margin-bottom: 4px;
}

.tagline p {
  font-size: 18px;
  opacity: 0.85;
  max-width: 500px;
  line-height: 1.6;
}

.contact-block h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.contact-block p {
  margin-bottom: 6px;
  font-size: 14px;
  opacity: 0.85;
  max-width: 420px;
}

.tagline a {
  color: #16d7f9;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  font-size: 18px;
  transition: color 0.3s ease, font-size 0.3s ease;
}

    .tagline a:hover {
        color: #01d9ff;
        font-size: 19px;
    }

.partner-card {
  background: #007a8a;
  color: #ffffff;
  border-radius: 20px;
  padding: 28px 24px;
  max-width: 350px;
  margin-left: auto;

  margin-top: -150px;

  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.6);
  position: relative;
  z-index: 99;
}

@media (max-width: 900px) {
  .partner-card {
    max-width: 100%;
    margin-left: 0;
    margin-top: -80px;
  }
}

.partner-card h1 {
  font-size: 24px;
  line-height: 1.1;
  margin-bottom: 6px;
}

.partner-card h1 span {
  display: block;
}

.partner-card p {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 8px;
}

.btn-primary {
  margin-top: 18px;
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
  background: #111827;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease,
    background 0.12s ease;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.5);
}

.btn-primary:hover {
  background: #020617;
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.7);
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  font-size: 0;
}

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.12s ease, transform 0.12s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: rgba(15, 23, 42, 0.35);
  transform: translateY(-1px);
}

.social-icon i {
  line-height: 1;
}

.copyright {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px 16px;
  font-size: 12px;
  color: #d1d5db;
  display: flex;
  justify-content: center;
  align-items: center;      
  text-align: center;     
  gap: 10px;
  z-index: 1;
}


@media (max-width: 600px) {
  .copyright {
    flex-direction: column;
    text-align: center;
  }
}

.nohighlight {
    text-decoration: none;
    color: white;
}

.custom-hr {
border: none;
height: 4px;       
width: 80%;            
margin: 40px auto;        
background-color: #ffffff; 
margin-top: 20px;
}

.email-link {
display: inline-block;   
padding: 10px 20px;     
margin: 10px 0;     
}

.custom-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 28px;
  margin: 20px 0;
  border-radius: 9999px;
  background: linear-gradient(90deg, #00b4ff 0%, #0084ff 50%, #7d8bff 100%);
  border: 4px solid #009dff;
  color: white !important;
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(0, 148, 255, 0.3);
}

.custom-button:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(0, 148, 255, 0.5);
}

.custom-button:active {
  transform: scale(0.98);
}

.custom-button .x-logo {
  width: 24px;
  height: 24px;
}

.ytjobs-button {
  background: linear-gradient(90deg, #ff0000 0%, #cc0000 50%, #ff4444 100%);
  border-color: #ff0000;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.ytjobs-button:hover {
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.5);
}

thatfont {
    font-family: Workshop;
}

.navbar {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1200px;
  height: 64px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 28px;

  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);

  transition: transform 0.35s ease, opacity 0.35s ease;
  z-index: 1000;
}

.navbar.hide {
  transform: translate(-50%, -120%);
  opacity: 0;
}

.nav-left {
  color: white;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.3px;
}

.nav-right {
  display: flex;
  gap: 28px;
}

.nav-right a {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding-bottom: 4px;
}

.nav-right a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: white;
  transition: width 0.3s ease;
}

.nav-right a:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
.nav-right {
  display: none;
}

.navbar {
  justify-content: center;
}
}

.eighteen {
  font-size: 18px;
}

.sixteen {
  font-size: 16px;
}

.fourteen {
  font-size: 14px;
}
