body {
  background-color: #030303;
  color: #ffffff;
  font-feature-settings: "ss01" on, "cv10" on;
  overflow-x: hidden;
}

.premium-glow-bg {
  background: radial-gradient(circle at 50% -20%, rgba(255, 107, 0, 0.18) 0%, rgba(255, 43, 0, 0.05) 40%, transparent 70%);
}

.abstract-ribbon {
  /* background: linear-gradient(135deg, rgba(255, 107, 0, 1) 0%, rgba(255, 0, 128, 1) 45%, rgba(68, 0, 255, 1) 100%); */
  filter: blur(90px);
  opacity: 0.25;
  mix-blend-mode: screen;
}

/* Glassmorphism Presets */
.glass-panel {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.glass-card {
  background: rgba(13, 13, 13, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
  border-color: rgba(255, 107, 0, 0.3);
  transform: translateY(-4px);
  background: rgba(20, 20, 20, 0.6);
}

.organic-pill {
  border-radius: 60px 20px 70px 40px;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.organic-pill:hover {
  border-radius: 40px;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(0.5deg);
  }
}

@keyframes glow {

  0%,
  100% {
    opacity: 0.3;
    filter: blur(50px);
  }

  50% {
    opacity: 0.6;
    filter: blur(70px);
  }
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #030303;
}

::-webkit-scrollbar-thumb {
  background: #222;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #b01133;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}





:root {
  --main-font: "Reforma 1918", sans-serif;
  --sub-font: "Poppins", sans-serif;
  --color-black: #000;
  --color-white: #fff;
  --font-size-h1: 1.41rem;
  --font-size-desc-1: 0.16rem;
  --font-size-desc-2: 0.16rem;
  --font-size-header-text-1: 0.14rem;
  --font-size-btn-1: 0.18rem;
  --font-size-btn-2: 0.18rem;
  --line-height-h1: 1.26rem;
  --line-height-desc-1: 0.16rem;
  --line-height-desc-2: 0.16rem;
  --line-height-header-text-1: 0.14rem;
  --line-height-btn-1: 0.18rem;
  --line-height-btn-2: 0.18rem;
}



* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  width: 100%;
}

img {
  display: block;
  user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

/* extra long transition to hide blue autofill background */
input:-webkit-autofill,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:focus {
  -webkit-transition: background-color 100000000000000000000000000000s 0s, color 100000000000000000000000000000s 0s;
  transition: background-color 100000000000000000000000000000s 0s, color 100000000000000000000000000000s 0s;
}

/* Remove Safari autofill*/
input::-webkit-contacts-auto-fill-button {
  visibility: hidden;
  display: none !important;
  pointer-events: none;
  position: absolute;
  right: 0;
}

input[type=text],
input[type=number],
input[type=email],
input[type=tel],
textarea {
  /* remove autofill blue background */
  box-shadow: inset 0 0 0 150px rgba(255, 255, 255, 0) !important;
  -webkit-box-shadow: inset 0 0 0 150px rgba(255, 255, 255, 0) !important;
  -webkit-text-fill-color: currentColor !important;
  font-size: 1rem;
  line-height: 1.5rem;
  background-color: transparent;
}

input[type=number] {
  -moz-appearance: textfield;
}

body {
  background: var(--color-black);
  position: relative;
}

.container {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 0.32rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 0.9rem;
  padding: 0 0.32rem;
}

.header .flex-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}

.header .flex-wrapper .logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header .flex-wrapper span {
  display: flex;
}

.header .flex-wrapper span:last-child {
  position: relative;
  left: 0.13rem;
}

.header .header-menu {
  display: flex;
  align-items: center;
  list-style-type: none;
}

.header .header-menu__item {
  cursor: pointer;
}

.header .header-menu__item:not(:last-child) {
  margin-right: 0.37rem;
}

/* .hero {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
  z-index: 9;
} */

/* .hero .container {
  display: flex;
  align-items: center;
} */

/* .hero .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
} */

/* .hero .title-block {
  padding-left: 1.48rem;
  position: relative;
}

.hero .title-block .title-h1 {
  text-transform: uppercase;
}

.hero .title-block .title-h1 span {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.hero .title-block .title-h1 u {
  text-decoration: none;
  overflow-x: hidden;
  overflow-y: hidden;
}

.hero .title-block .title-h1 .title-row {
  display: flex;
}

.hero .title-block .title-h1 .title-charts-cont {
  display: flex;
  overflow: hidden;
}

.hero .title-block .title-h1 .title-row-2 {
  padding-left: 0.83rem;
}

.hero .title-block .title-h1 #ry {
  margin-right: 0.37rem;
}

.hero .title-block .title-h1 #tells {
  margin-right: 0.15rem;
}

.hero .title-block .title-h1 #a {
  margin-right: 0.15rem;
}

.hero .title-block .first-desc {
  position: absolute;
  top: -0.5rem;
  right: 3.7rem;
  overflow: hidden;
  display: flex;
}

.hero .title-block .second-desc {
  position: absolute;
  bottom: -1rem;
  left: 4.85rem;
  overflow: hidden;
  display: flex;
}

.hero .copyright {
  position: absolute;
  bottom: 0.32rem;
  left: 0.32rem;
  overflow: hidden;
  display: flex;
}

.hero .scroll-to {
  position: absolute;
  bottom: 0.32rem;
  left: 7.75rem;
  width: 1.48rem;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
}

.hero .scroll-to__row {
  overflow: hidden;
  display: flex;
}

.hero .book-btn {
  position: absolute;
  bottom: 0.32rem;
  right: 0.32rem;
  width: 1.7rem;
  height: 1.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero .book-btn__circle {
  width: 1.7rem;
  height: 1.7rem;
  border: 1px solid var(--color-white);
  border-radius: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.hero .book-btn .btn-text {
  width: 1.28rem;
  text-align: center;
  overflow: hidden;
  display: flex;
} */



/* <<<<================ABHI-CSS================>>> */


.grayscale {
  opacity: 0.5;
}

.work h4 {
  position: absolute;
  bottom: 30px;
  transition: 0.9s;

}

.work:hover h4 {
  bottom: 150px;
  /* margin-bottom: 30px; */
}

.work p {
  position: relative;
  top: 200px;
  transition: 0.9s;
}

.work:hover p {
  top: 0;
}

.ai-seo {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.ai-seo p {
  max-width: 220px;
}

.lab-slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.lab-slider {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;

  animation: marquee 90s linear infinite;
}

.item {
  background: white;
  padding: 1rem;
  opacity: 0.8;
  /* margin: 0.8rem; */
  border-radius: 20px;
  width: 100%;
  /* max-width: 300px; */
}

.item:hover {
  transform: scale(1.1);
  transition: 1s;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.ai-seo2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ai-seo2 img {
  filter: brightness(0) invert(1);
  /* transition: transform 0.25s ease; */

}


.tracking-widest {
  position: relative;
  z-index: 50;
  display: inline-block;

}


/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

/* Background Video */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* Dark overlay */
/* .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
} */

/* Heading */
.hero h1 {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0;
  color: #fff;
  text-align: center;
  font-size: clamp(40px, 6vw, 90px);
  line-height: 1.05;
  font-weight: 700;
  padding: 20px;
}

/* Tablet */
@media (max-width: 991px) {
  .hero {
    min-height: 80vh;
  }

  .hero h1 {
    font-size: clamp(38px, 7vw, 65px);
    max-width: 800px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .hero {
    min-height: 75vh;
    padding: 30px 15px;
  }

  .hero h1 {
    font-size: clamp(32px, 10vw, 52px);
    line-height: 1.1;
    padding: 10px;
  }

  .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero {
    min-height: 65vh;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.12;
  }
}


/* <<==============================resposive=========================>> */






.typewriter-heading {
  font-size: clamp(32px, 10vw, 52px);
  font-weight: bold;
  margin-bottom: 100px;
  /* text-align: center; */
  line-height: 1.1;
  padding: 15px 0;
}

/* --- the snippet --- */

/* Accent color for the rotating word */
#typewriter {
  color: #fff;
}

/* Blinking caret */
#typewriter::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 3px;
  background: currentColor;
  vertical-align: -0.1em;
  animation: typewriter-caret 0.9s steps(1) infinite;
}

@keyframes typewriter-caret {
  50% {
    opacity: 0;
  }
}

.item {
  filter: grayscale(1);
}

.item:hover {
  filter: unset;
}

.scroll-reveal2 {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

/* Tablet */
@media (max-width: 991px) {
  .scroll-reveal2 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 576px) {
  .scroll-reveal2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
  }
}

/* Small Mobile */
@media (max-width: 400px) {
  .scroll-reveal2 {
    grid-template-columns: 1fr;
  }
}

.glass-panel:hover img {
    rotate: deg(30px);
    transform: rotate(360deg);
    transition: 0.5s;}
/* 
@media screen and (max-width:600px) and (min-width:408px) {

  .leading-none {
    display: none;
  }

  .glass-panel {
    background: unset;
    border: unset;
  }

} */