@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&family=Sora:wght@100..800&display=swap');

*{
 scroll-behavior: smooth;
}

/* Whatapps Chat */

 .chat-body {
  background-color: #0b141a;
  background-image: url("Images/whatapps-chat.jpg");
  background-size: cover;
  background-repeat: repeat;
  max-height: fit-content;
  overflow-y: visible;
}
::selection{
  color: #fbbf24;
  background-color: whitesmoke;
}
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(10px); }
  }

  .animate-fadeIn {
    animation: fadeIn 0.25s ease-out forwards;
  }

  .animate-fadeOut {
    animation: fadeOut 0.25s ease-in forwards;
  }

  /* Scrollbar thin */
  #whatsapp-popup::-webkit-scrollbar { width: 3px; }
  #whatsapp-popup::-webkit-scrollbar-thumb { background: #444; border-radius: 10px; }


  /* Slide-out animation */
  .sidebar {
    transform: translateX(10%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .sidebar:hover {
    transform: translateX(0);
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .sidebar {
      display: none;
    }
  }

  /* cta button  */
  .btn-glow:hover{
     box-shadow: 0 0 15px rgba(220, 162, 42, 0.6);

  }

.nav-link  {
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: #facc15;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

  /* Fade/slide animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
.slide-in {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s ease, transform 1s ease;
}
.slide-in.show {
  opacity: 1;
  transform: translateX(0);
}


footer {
  background-color: #000;
  color: #fff;
  position: relative;
}


.contact-block {
  max-width: 500px;
  margin: 0 auto;
}


.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1f1f1f;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  color: #fff;
}

.social-icon:hover {
  background-color: #dca22a;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(220, 162, 42, 0.6);
}


html {
  scrollbar-width:thin;
  scrollbar-color:  #facc15 #111;
}

html::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

html::-webkit-scrollbar-track {
  background: #111;
}

html::-webkit-scrollbar-thumb {
  background: #d4af37;
  border-radius: 10px;
}

html::-webkit-scrollbar-thumb:hover {
  background: #b58920;
}



/* BASE */
#home-container {
  font-weight: 400;
  color: #111;
  overflow: hidden;
}

/* WRAPPER */
#hero12-header76 {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 1rem 0.5rem;
}

#hero12-max-width {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  gap: 2rem;
}

/* LEFT CONTENT */
#hero12-column1 {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;

  position: sticky;
  top: 50%;
  transform: translateY(-50%);
}

.hero12-heading {
  font-size: 3rem;
  font-weight: 600;
  background: linear-gradient(90deg, #f0b53f, #c78c18);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero12-subtext {
  font-size: 1.3rem;
  color: #cacaca;
  line-height: 1.6;
  max-width: 90%;
}

/* RIGHT CONTENT */
#hero12-content {
  width: 50%;
  height: 850px;
  display: flex;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

/* SCROLLING COLUMNS */
#hero12-column2,
#hero12-column3 {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 18px;

  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* IMAGES */
#hero12-content img {
  height: 400px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

/* INFINITE SCROLL (DESKTOP) */
.scroll-vertical-down {
  animation: scrollDownSmooth 20s linear infinite;
}

.scroll-vertical-up {
  animation: scrollUpSmooth 20s linear infinite;
}

@keyframes scrollDownSmooth {
  from { transform: translateY(0); }
  to   { transform: translateY(-100%); }
}

@keyframes scrollUpSmooth {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}

/* FADE OVERLAYS */
.fade-overlay {
  position: absolute;
  pointer-events: none;
  z-index: 10;
}

.fade-overlay.top {
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
}

.fade-overlay.bottom {
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.fade-overlay.left {
  top: 0;
  bottom: 0;
  left: 0;
  width: 60px;
  background: linear-gradient(to right, rgba(0,0,0,0.8), transparent);
}

.fade-overlay.right {
  top: 0;
  bottom: 0;
  right: 0;
  width: 60px;
  background: linear-gradient(to left, rgba(0,0,0,0.8), transparent);
}

/* MOBILE */
@media (max-width: 768px) {

  #hero12-max-width {
    flex-direction: column;
    gap: 24px;
  }

  #hero12-column1 {
    width: 100%;
    position: static;
    transform: none;
    text-align: center;
    align-items: center;
  }

  #hero12-content {
    width: 100%;
    height: auto;
    flex-direction: column;
  }

  #hero12-column2,
  #hero12-column3 {
    width: max-content;
    flex-direction: row;
    gap: 16px;
  }

  #hero12-content img {
    height: 240px;
    width: auto;
  }

  .scroll-vertical-down {
    animation: scrollRightSmooth 26s linear infinite;
  }

  .scroll-vertical-up {
    animation: scrollLeftSmooth 26s linear infinite;
  }

  @keyframes scrollRightSmooth {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  @keyframes scrollLeftSmooth {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
  }

  .fade-overlay.left,
  .fade-overlay.right {
    display: none;
  }
}


#teamAnimation {
  width: 400px;
  height: 400px;
}

@media (max-width: 768px) {
  #teamAnimation {
    width: 300px;
    height: 300px;
  }
}

/* fonts */
.headingfont{
  font-family: "Orbitron", sans-serif;
}
.basicfont{
  font-family: 'Sora', sans-serif;
}


/* WORDS GALLERY */

#marquee-section{
  margin: 50px 0;
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  background: #000;
}

/* Left fade */
.marquee::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 80px;
  background: linear-gradient(to right, black 60%, transparent);
  z-index: 2;
  pointer-events: none;
}

/* Right fade */
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 80px;
  background: linear-gradient(to left, black 60%, transparent);
  z-index: 2;
  pointer-events: none;
}

.marquee-content {
  display: inline-block;
  animation: scroll-left 40s linear infinite;
  user-select: none;
  will-change: transform;
}

.word {
  display: inline-block;
  margin: 0 3rem;
  font-weight: 700;
  color: #dca22a;
  letter-spacing: 2px;
  font-size: clamp(2rem, 4vw, 3rem);
}

/* Scroll animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media(max-width:769px){
  /* Left fade */
.marquee::before {
  content: "";
  width: 80px;
  background: linear-gradient(to right, black 10%, transparent);
}

/* Right fade */
.marquee::after {
  width: 80px;
  background: linear-gradient(to left, black 10%, transparent);
}
.word {
  margin: 0 0.8rem;
  font-size: clamp(2.8rem, 5vw, 3.5rem);
}
}

 @media (max-width:1440px){
  html{
    font-size: 15px;
  }
   html nav .nav-link {
        font-size: 1.01rem;
      }
}


 @media (max-width:769px){
  html{
    font-size: 13px;
  }
}
@media (max-width:430px){
  html{
    font-size: 12px;
  }
}
@media (max-width:375px){
  html{
    font-size: 10px;
  }
}

@media (max-width:320px){
  html{
    font-size: 10px;
  }
}

  @media (min-width: 800px) and (max-width: 1440px) {
      nav .nav-link {
        font-size: 0.9rem;
      }
      nav span {
        font-size: 20px;
      }
      nav .container {
        padding-left: 10px;
        padding-right: 10px;
      }
      nav .hidden.md\:flex {
        gap: 10px;
      }
      nav a.bg-yellow-500 {
        font-size: 14px;
      }
    }

/* Gradient text hero*/
    .gradient-text {
      background: linear-gradient(90deg, #facc15, #f59e0b);
    background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }


   img{
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}


/* #services {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    margin: 20px 0
}

.parallax-bg {
    height: 80vh;
    background: url("https://res.cloudinary.com/de7y9vclv/image/upload/v1759513697/new_j4dyxi.png") center/cover no-repeat fixed;
    background-blend-mode: darken;
 background-color: #00000044; 
    display: flex;
    align-items: center;
    justify-content: center
}

.text-overlay {
    padding: 2rem;
    border-radius: 1rem;
    color: #fff
} */


  /* Sticky Heading Area */
    .sticky-left {
      position: sticky;
      top: 0;
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-right: 1rem;
    }

    .sticky-left span {
      display: inline-block;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .sticky-left h2 {
      font-size: 2.5rem;
      line-height: 1.3;
      font-weight: 300;
      margin-top: 1rem;
    }

    .sticky-left p {
      color: #aaa;
      margin-top: 1rem;
      line-height: 1.6;
      max-width: 90%;
    }


    .service-section {
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: translateY(60px);
      transition: all 0.8s ease-out;
    }

    .service-section.visible {
      opacity: 1;
      transform: translateY(0);
    }

 
    .service-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 3rem;
      width: 100%;
    }

    .service-text {
      flex: 1;
      padding-right: 2rem;
    }

    .service-text h3 {
      font-size: 2rem;
      margin-bottom: 0.5rem;
      letter-spacing: 0.5px;
    }

    .service-text p {
      line-height: 1.7;
      color: #d1d1d1;
    }

    .service-image {
      flex: 1;
      position: relative;
      overflow: hidden;
      height: 75vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .service-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 1rem;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
      transition: transform 0.4s ease;
    }

    .service-image img:hover {
      transform: scale(1.03);
    }

   
    @media (max-width: 1024px) {
      .main-grid {
        flex-direction: column;
      }

      .sticky-left {
        position: relative;
        height: auto;
        text-align: center;
        padding-right: 0;
        margin-bottom: 3rem;
      }

      .sticky-left h2 {
        font-size: 2rem;
      }

      .sticky-left p {
        max-width: 100%;
        margin: 0 auto;
      }

      .service-section {
        height: auto;
        padding: 3rem 0;
        opacity: 1 !important;
        transform: none !important;
      }

      .service-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
      }

      .service-text {
        padding: 0;
        order: 2;
      }

      .service-image {
        order: 1;
        height: 50vh;
        width: 100%;
      }

      .service-image img {
        border-radius: 0.75rem;
      }
    }

    @media (max-width: 640px) {
      .sticky-left h2 {
        font-size: 1.8rem;
        line-height: 1.2;
      }

      .sticky-left span {
        font-size: 0.85rem;
        padding: 0.3rem 0.7rem;
      }

      .service-text h3 {
        font-size: 1.5rem;
      }

      .service-section {
        padding: 2.5rem 0;
      }

      .service-image {
        height: 40vh;
      }
    }

     .zoom-image {
      transition: transform 0.2s ease-out;
      transform-origin: center center;
    }

    .zoom-text {
      font-family: 'Luckiest Guy', cursive;
      transition: transform 0.2s ease-out, opacity 0.2s ease-out;
      transform-origin: left top;
      font-size: 4rem;
      line-height: 1;
    }

.zoom-text-mobile {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  line-height: 1;
}

