* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  background: #000;
  font-family: Arial, Helvetica, sans-serif;
}

/* HEADER */
.site-header {
  width: 100%;
  padding: 20px 50px;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #000;
  position: sticky; /* or fixed if you are using */
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO IMAGE */
.logo img {
  width: 180px;
  object-fit: contain;
      cursor: pointer;
}

/* HAMBURGER */
.hamburger {
  width: 27px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  height: 2px;
  width: 100%;
  background: #fff;
  transition: 0.4s;
}

/* ANIMATION */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* FULL SCREEN MENU */
.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  transition: 0.5s ease;
  z-index: 999;
}

.fullscreen-menu.active {
  transform: translateY(0);
}

/* MENU LINKS */
.fullscreen-menu ul {
  list-style: none;
  text-align: center;
}

.fullscreen-menu ul li {
  margin: 20px 0;
}

.fullscreen-menu ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 2px;
  transition: 0.3s;
}

.fullscreen-menu ul li a:hover {
  opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .site-header {
    padding: 30px 10px;
  }

  .logo img {
    width: 100px;
  }

  .fullscreen-menu ul li a {
    font-size: 26px;
  }
}

.scroll-video-section {
  width: 100%;
  height: 300vh; /* more height = slower playback */
  position: relative;
}

/* STICKY VIDEO */
.video-container {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  margin: 0 auto;
  overflow: hidden;
}

/* RESPONSIVE VIDEO */
video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-section {
  background: #000;
  width: 100%;
  color: #fff;
  padding: clamp(60px, 4vw, 120px) clamp(20px, 6vw, 80px);
  overflow: hidden;
}

.what-inner {
  width: 80%;
  margin: auto;
}

.why-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

/* SCRIPT HEADING */
.why-script {
  font-family: "Allura", cursive;
  font-size: clamp(36px, 6vw, 100px);
  color: #bbb;
  margin-bottom: 20px;
}

/* MAIN TEXT */
.why-text {
  font-family: "Poppins", sans-serif;
  font-size: clamp(22px, 3.5vw, 50px);
  line-height: 1.4;
  max-width: 600px;
  font-weight: 300;
}

/* LOGO */
.why-right {
  flex-shrink: 0;
}

/* Wrapper to overlap images */
.logo-wrapper {
  position: relative;
  /* FORCE PERFECT CIRCLE */
  width: clamp(150px, 15vw, 260px);
  aspect-ratio: 1 / 1;   /* 🔥 important */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Rotating circle text */
.rotating-logo {
 position: absolute;
  width: 100%;
  height: 100%;

  object-fit: contain;   /* keeps it proportional */
  
  animation: rotateLogo 8s linear infinite;
}

/* Cat image centered inside */
.center-logo {
  position: absolute;
  width: 40%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Rotation animation */
@keyframes rotateLogo {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* TICKER */
.ticker {
  margin-top: clamp(40px, 6vw, 80px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 60px;
  animation: scrollTicker 25s linear infinite;
}

.ticker span {
  font-family: "Poppins", sans-serif;
  font-size: clamp(10px, 1.2vw, 14px);
  letter-spacing: 2px;
  color: #aaa;
  white-space: nowrap;
}

/* ANIMATION */
@keyframes scrollTicker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .why-container {
    flex-direction: column;
    gap: 30px;
  }

  .why-right {
    align-self: flex-end;
  }

  .ticker-track {
    gap: 30px;
  }
}

.what-section {
  background: #000;
  padding: clamp(60px, 8vw, 120px) clamp(20px, 6vw, 80px);
  color: #000;
  overflow: hidden;
}

/* SCRIPT */
.what-script {
  font-family: "Allura", cursive;
  font-size: clamp(36px, 6vw, 100px);
  color: #bbb;
  margin-bottom: 40px;
}

/* LINES */
.what-lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.what-lines span {
  display: inline-block;
  background: #eaeaea;
  padding: 12px 20px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(20px, 3vw, 50px);
  line-height: 1.4;
  width: fit-content;
  transition: all 0.35s ease;
  cursor: pointer;
}

/* HOVER EFFECT PER LINE */
.what-lines span:hover {
  transform: translateY(-6px) scale(1.25);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* LAST LINE BOLD */
.what-lines .bold {
  font-weight: 700;
}

/* STAGGER EFFECT */
.what-lines span:nth-child(1) {
  margin-left: 0;
}
.what-lines span:nth-child(2) {
  margin-left: 40px;
}
.what-lines span:nth-child(3) {
  margin-left: 80px;
}
.what-lines span:nth-child(4) {
  margin-left: 20px;
}
.what-lines span:nth-child(5) {
  margin-left: 60px;
}
.what-lines span:nth-child(6) {
  margin-left: 100px;
}

/* LAST BOLD */
.what-lines .bold {
  font-weight: 700;
}

/* TICKER */
.ticker {
  margin-top: clamp(40px, 6vw, 80px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 60px;
  animation: scrollTicker 25s linear infinite;
}

.ticker span {
  font-family: "Poppins", sans-serif;
  font-size: clamp(10px, 1.2vw, 14px);
  letter-spacing: 2px;
  color: #aaa;
  white-space: nowrap;
}

/* SCROLL */
@keyframes scrollTicker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .what-lines span {
    margin-left: 0 !important;
  }
}

/* SECTION */
.work-section {
  width: 100%;
  background: #000;
  padding: 80px 0;
  position: relative;
}

/* INNER */
.work-inner {
  width: 80%;
  margin: auto;
}

/* BLUE CARD */
.work-card {
  background: url("../images/blue-bg.png") center/cover no-repeat;
  border-radius: 30px;
  padding: 110px 70px;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  overflow: visible;
}

/* TEXT */
.work-script {
  font-family: "Allura", cursive;
  font-size: 100px;
  color: #e4e4e4;
}

.work-title {
  font-family: "Poppins";
  font-size: 80px;
  font-weight: 300;
  color: #fff;
  margin: 20px 0;
}

.work-desc {
  font-family: "Poppins";
  font-size: 35px;
  color: #e6e6e6;
  line-height: 1.8;
}

/* TV WRAPPER */
.tv-wrapper {
  position: absolute;
  right: 70px;
  top: -120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* TV IMAGE */
.tv-img {
  width: 560px;
}

/* BUTTON */
.work-btn {
  position: relative;
  display: inline-block;
  margin: 25px 0;
  padding: 18px 40px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 12px;
  color: #fff;
  font-family: "Poppins";
  text-decoration: none;
  overflow: hidden;
  transition: color 0.4s ease;
  z-index: 1;
}

/* background fill layer */
.work-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: white;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  z-index: -1;
}

/* hover animation */
.work-btn:hover::before {
  transform: scaleX(1);
}

.work-btn:hover {
  color: #1a1a1a;
}

/* TICKER FULL WIDTH */
.ticker {
  padding: 18px 0;
  overflow: hidden;
  overflow: hidden;
  position: relative;
}

.ticker-up {
  /* margin-top:; */
  width: 80% !important;
  margin: -70px auto 0 !important;
}

.ticker-track {
  background: #0a0a0a !important;
  display: flex;
  width: max-content;
  gap: 80px;
  animation: scrollTicker 15s linear infinite;
}

.ticker span {
  font-family: "Poppins";
  font-size: 12px;
  letter-spacing: 2px;
  color: #aaa;
  white-space: nowrap;
}

/* TICKER ANIMATION */
@keyframes scrollTicker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1200px) {
  .tv-img {
    width: 420px;
  }

  .work-title {
    font-size: 56px;
  }

  .work-script {
    font-size: 70px;
  }

  .tv-wrapper {
    position: absolute;
    right: 15px;
  }
  .work-desc {
    font-family: "Poppins";
    font-size: 30px;
  }
}

@media (max-width: 992px) {
  .work-card {
    flex-direction: column;
    padding: 60px 40px;
  }

  .tv-wrapper {
    position: relative;
    top: 0;
    right: auto;
    margin: 50px auto 0;
  }

  .tv-img {
    width: 360px;
  }

  .work-title {
    font-size: 44px;
  }

  .work-desc {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .work-inner {
    width: 90%;
  }

  .tv-img {
    width: 280px;
  }

  .work-title {
    font-size: 36px;
  }

  .work-script {
    font-size: 48px;
  }
  .tv-wrapper {
    position: relative;
    top: 0;
    right: 25px;
    margin: 50px auto 0;
  }
}

.hire-section {
  width: 100%;
  background: #000;
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.hire-inner {
  width: 80%;
  margin: auto;
  position: relative;
  z-index: 2;
  padding-bottom: 120px; /* space before ticker */
}
.hire-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
}

/* TEXT */
.hire-text {
  font-family: "Poppins", sans-serif;
  font-size: 45px;
  line-height: 1.6;
  color: #eaeaea;
  font-weight: 300;
}
.hire-right {
  display: flex;
  align-items: flex-end;
}

/* SCRIPT */
.hire-script {
  font-family: "Allura", cursive;
  font-size: 100px;
  color: #cfcfcf;
  margin-top: 40px;
}

/* BUTTON */
.connect-btn {
  position: relative;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 16px 40px;
  border-radius: 10px;
  color: #fff;
  font-family: "Poppins";
  text-decoration: none;
  font-size: 30px;
  overflow: hidden;
  transition: color 0.4s ease;
  z-index: 1;
}

/* fill animation layer */
.connect-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  z-index: -1;
}

/* hover effect */
.connect-btn:hover::before {
  transform: scaleX(1);
}

.connect-btn:hover {
  color: #000;
}
/* BLUE BLUR EFFECTS */
.blur{
  position:absolute;
  width:500px;
  height:500px;
  background: radial-gradient(circle, rgba(40,90,255,0.8) 0%, transparent 70%);
  filter: blur(120px);
  pointer-events:none;
  opacity:0.6;
}

/* first dot */
.blur1{
  top:20%;
  left:10%;
  animation: moveBlur1 3s ease-in-out infinite alternate;
}

/* second dot */
.blur2{
  bottom:15%;
  right:15%;
  animation: moveBlur2 3s ease-in-out infinite alternate;
}

@keyframes moveBlur1{

  0%{
    transform: translate(0,0);
  }

  50%{
    transform: translate(200px,-120px);
  }

  100%{
    transform: translate(-150px,150px);
  }

}

@keyframes moveBlur2{

  0%{
    transform: translate(0,0);
  }

  50%{
    transform: translate(-200px,120px);
  }

  100%{
    transform: translate(150px,-150px);
  }

}

/* TICKER */
.ticker {
  width: 100%;
  background: #0b0b0b;
  padding: 18px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: scrollTicker 25s linear infinite;
}

.ticker span {
  font-family: "Poppins";
  font-size: 12px;
  letter-spacing: 2px;
  color: #aaa;
}

@keyframes scrollTicker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 992px) {
  .hire-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .hire-text {
    font-size: 32px;
  }

  .hire-script {
    font-size: 60px;
  }
  .hire-top {
    display: block;
  }
}

@media (max-width: 600px) {
  .hire-inner {
    width: 90%;
  }

  .hire-text {
    font-size: 24px;
  }

  .hire-script {
    font-size: 44px;
  }

  .connect-btn {
    font-size: 16px;
    padding: 12px 30px;
  }
  .hire-top {
    padding: 0 15px;
  }
}

/* SECTION */
.join-section {
  width: 100%;
  background: #000;
  padding: 70px 0;
}

/* INNER */
.join-inner {
  width: 80%;
  margin: auto;
}

/* CARD */
.join-card {
  background: url("../images/blue-bg.png") center/cover no-repeat;
  border-radius: 25px;
  padding: 80px 70px;
  position: relative;
  color: #fff;
}

/* SCRIPT TITLE */
.join-script {
  font-family: "Allura", cursive;
  font-size: 100px;
  color: #dcdcdc;
  margin-bottom: 40px;
}

/* TEXT */
.join-text {
  font-family: "Poppins", sans-serif;
  font-size: 55px;
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: 40px;
}

/* SECOND TEXT BLOCK */
.join-text-2 {
  margin-top: 60px;
}
/* BUTTON */
.apply-btn {
  position: absolute;
  right: 70px;
  bottom: 70px;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 16px 40px;
  border-radius: 10px;
  font-size: 30px;
  font-family: "Poppins";
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  position: absolute;
  transition: color 0.4s ease;
  z-index: 1;
}

/* background fill layer */
.apply-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  z-index: -1;
}

/* hover animation */
.apply-btn:hover::before {
  transform: scaleX(1);
}

.apply-btn:hover {
  color: #000;
}
@media (max-width: 992px) {
  .join-text {
    font-size: 32px;
  }

  .join-script {
    font-size: 60px;
  }

  .apply-btn {
    position: relative;
    right: auto;
    bottom: auto;
    display: inline-block;
    margin-top: 40px;
  }
}

@media (max-width: 600px) {
  .join-card {
    padding: 80px 15px;
  }

  .join-inner {
    width: 90%;
  }

  .join-text {
    font-size: 24px;
  }

  .join-script {
    font-size: 44px;
  }
  .apply-btn {
    font-size: 16px;
    padding: 12px 30px;
  }
}

/* SECTION */
.meet-section {
  width: 100%;
  background: #000;
  padding: 60px 0;
}

/* INNER CONTAINER */
.meet-inner {
  width: 80%;
  margin: auto;
}

/* SCRIPT TITLE */
.meet-title {
  font-family: "Allura", cursive;
  font-size: 100px;
  color: #cfcfcf;
  margin-bottom: 25px;
}

/* ADDRESS TEXT */
.meet-address {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  line-height: 1.7;
  color: #cfcfcf;
  margin-bottom: 40px;
}

/* ICONS ROW */
.social-icons {
  display: flex;
  gap: 18px;
}

/* ICON BOX */
.social-box {
    width: 40px;
    height: 40px;
  background: #444;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

/* ICON */
.social-box img {
  width: 35px;
}

/* HOVER */
.social-box:hover {
  background: #130202;
}

.social-box:hover img {
  filter: invert(1);
}

@media (max-width: 768px) {
  .meet-inner {
    width: 90%;
    padding: 0px 15px;
  }

  .meet-title {
    font-size: 48px;
  }

  .meet-address {
    font-size: 18px;
  }
}
