body {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.section-padding {
  padding: 72px 0;
}

/* ✅ Background Video Styling */
/* 🎥 Background Video Styling */
.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* 🌓 Overlay */
.hero-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

/* 🧍‍♂️ Hero Content */
.hero-content {
  position: relative;
  z-index: 3;
  height: 100vh;
  display: flex;
  align-items: center;
}

.header-btn {
  padding: 8px 18px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  background-color: transparent;
  color: #5CC8F3;
  border: 1px solid #5CC8F3;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  overflow: hidden;
  transition: color 0.6s ease;
  z-index: 1;
}

.header-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #5CC8F3;
  /* white background on hover */
  transform: scale(1.5);
  opacity: 0;
  transition: transform 0.9s ease, opacity 0.9s ease;
  z-index: -1;
  /* changed from 21 to -1 */
  border-radius: inherit;
}

/* Hover effect */
.header-btn:hover::before {
  transform: scale(1);
  opacity: 1;
}

.header-btn:hover {
  color: white !important;
  /* text color changes to black */
}

/* ✅ Navbar Compact */
.navbar {
  padding-top: 4px;
  padding-bottom: 4px;
}

.navbar .nav-link {
  padding: 4px 8px;
  font-size: 15px;
  font-weight: 300;
  color: #fff !important;
}

.navbar .header-btn {
  color: #5CC8F3;
  font-size: 15px;
  padding: 6px 16px;
  border-color: #5CC8F3;
}

.navbar.navbar-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
/* .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
} */

.navbar.navbar-glass .nav-link,
.navbar.navbar-glass .header-btn {
  color: #000 !important;
  border-color: #000;
}

.navbar.navbar-glass .header-btn:hover::before {
  background-color: black !important;
}

.navbar.navbar-glass .header-btn:hover {
  color: white !important;
}

.hero-header {
  position: relative;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 3;
  min-height: 75vh;
  display: flex;
  align-items: center;
}

h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 112px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
}

h1 span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 300;
  font-style: Italic;
  font-size: 112px;
  line-height: 120%;
  color: #ffffff;
}

h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600 !important;
  font-style: SemiBold;
  font-size: 68px;
  line-height: 120%;
  letter-spacing: 0%;
  text-transform: uppercase;
}

h2 span {
  font-weight: 200;
  font-style: ExtraLight;
}

.extra-span {
  font-style: Italic;
  font-size: 68px;
  color: #5CC8F3;
  font-weight: 600;
}

.header-pera {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0%;

}

h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: 0%;
}

h5 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0%;
}

h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0%;
}

p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
}

.explore-btn {
  padding: 16px 32px 16px 32px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  background-color: #ffffff;
  color: #000000;
  text-decoration: none;
  border: 1px solid #000000;
  position: relative;
  overflow: hidden;
  transition: color 0.6s ease;
  z-index: 1;
}

.explore-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  transform: scale(1.5);
  /* starts larger than button */
  opacity: 0;
  transition: transform 0.9s ease, opacity 0.9s ease;
  z-index: -1;
  border-radius: inherit;
}

/* Hover effect: scale down to fill inside */
.explore-btn:hover::before {
  transform: scale(1);
  opacity: 1;
}

.explore-btn:hover {
  color: #ffffff;
}

.service-padding {
  /* padding: 0px 30px 0px 30px; */
}

.service-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0%;
  opacity: 72%;
}

.service-heading {
  gap: 18px;
}

.dark-black-bk {
  background-color: #000000;
}

.card,
.card-img-top,
.card-body {
  border: none !important;
  border-radius: 0 !important;
}


.transform-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0%;
}

.transform-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0%;
  opacity: 72%;

}

.card-body.custom-black .card-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0%;
}

.card-body.custom-black .card-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 300 !important;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #000000;
  opacity: 72%;
}

.title-with-article {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-date {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #000000;
  opacity: 72%;

}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 80%;
  overflow: hidden;
}

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-content {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 200px 100px;
  color: #fff;
  z-index: 2;
}

.small-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #ffffff;
}

.video-content .btn {
  position: relative;
  z-index: 1;
  /* Keep text above pseudo-element */
  padding: 16px 32px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  font-family: "Plus Jakarta Sans", sans-serif;
  border-radius: 0 !important;
  overflow: hidden;
  transition: color 0.6s ease;
}

.video-content .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  /* white background on hover */
  transform: scale(1.5);
  opacity: 0;
  transition: transform 0.9s ease, opacity 0.9s ease;
  z-index: -1;
  /* changed from 21 to -1 */
  border-radius: inherit;
}

/* Hover effect */
.video-content .btn:hover::before {
  transform: scale(1);
  opacity: 1;
}

.video-content .btn:hover {
  color: black;
  /* text color changes to black */
}



.build-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #ffffff;
}

.footer-social a img {
  width: 22px;
  height: 22px;
  margin: 0 3px;
  transition: transform 0.3s ease;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-copy {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0%;
}

.quick-links p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0%;

}

.quick-links ul {
  padding-left: 0;
}

.quick-links ul li {
  list-style: none;
  margin: 18px 0;
}

.quick-links ul li a {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #000000;
  opacity: 72%;
  text-decoration: none;
  transition: opacity 0.1s ease;
}

.quick-links a:hover {
  opacity: 1;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 50px 0px;
}

.underline {
  border: 0.5px solid #000000;
}

.custom-row {
  display: flex;
  flex-wrap: wrap;
}

.custom-col {
  flex: 0 0 20%;
  max-width: 20%;
  padding: 10px;
  box-sizing: border-box;
}

/* Responsive adjustments */


.custom-col img {
  max-width: 100%;
  height: auto;
  border: none;
}

.ceo-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0%;
}

.down-padding {
  padding: 0px 0px 72px 0px;
}

.ceo-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0%;
  opacity: 72%;
}

.address-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 300 !important;
  font-style: Light;
  font-size: 16px !important;
  line-height: 24px;
  letter-spacing: 0px;
  color: black;
}

.address-text span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-style: Light;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;

}

.opportunity {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: -5%;

}

.form-control {
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 30px;
  font-family: "Plus Jakarta Sans", sans-serif;
  box-shadow: none !important;
  color: #000000;
  opacity: 70%;
  font-size: 16px;
}

input::placeholder,
textarea::placeholder {
  font-family: Plus Jakarta Sans !important;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -2%;
}

.browse-btn {
  padding: 16px 24px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 400 !important;
  line-height: 20px;
  text-align: left;
  text-decoration: none;
  display: inline-block;
  max-width: 100%;
  color: #3871C1;
  border-style: dashed;
  border-color: rgba(56, 113, 193, 0.24);
}

.upload {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -2%;
  color: #000000;
  opacity: 50%;
  text-decoration: none;

}

.submit-btn {
  padding: 16px 32px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 400 !important;
  line-height: 20px;
  text-align: left;
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
  margin-top: 30px;
  display: inline-block;
  max-width: 100%;
}

.btn-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.left-content-padding {
  padding: 112px 110px;
}

.right-content-padding {
  padding: 122px 55px;
}

.dark-blue {
  background-color: #308AD8;
}

.light-blue {
  background-color: #5CC8F3;
}

.left-image-padding {
  padding: 112px 0px;
}

.right-image-padding {
  padding: 132px 110px;
}

.product-pera {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: 0%;
}

.logo-marquee {
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  padding: 40px 0;

}

.logo-track {
  display: flex;
  width: calc(200%);
  /* Twice the width for seamless scroll */
  animation: scroll-left 20s linear infinite;
  gap: 70px;
}

.logo-track img {
  height: 60px;
  margin-right: 50px;
  object-fit: contain;
  width: auto;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}







@media (max-width: 768px) {}

/* Fallback for super small screens or data save mode */
/* @media (max-width: 768px) and (hover: none) and (pointer: coarse) {
 
  .hero-header {
    background: url('images/rajrna.jpg') center center / cover no-repeat;
  }
} */

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


/* big video */

/* Hide/show copy lines based on screen size */
/* Default visibility */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

/* On screens smaller than 768px, reverse visibility */
@media (max-width: 767px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }
}































@media (max-width: 768px) {
  .custom-col {
    flex: 0 0 50%;
    max-width: 50%;
  }

  h1 {
    font-size: 58px;
  }

  h1 span {
    font-size: 58px;
  }

  h2 {
    font-size: 48px;
  }

  .extra-span {
    font-size: 48px;
  }

  .product-pera {
    font-size: 20px;
  }

  h3 {
    font-size: 30px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 18px;
  }

  p {
    font-size: 14px !important;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    height: auto;
    /* min-height: 60vh; */
    padding: 80px 0 60px;
  }

  .hero-content img {
    margin-top: 30px;
    max-width: 90%;
  }

  .bg-video {
    margin-top: 30px;
    max-width: 90%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    height: auto;
    padding: 100px 0 60px;
    /* for spacing */
  }

  .navbar .nav-link {
    padding: 10px 15px;
  }

  .navbar .header-btn {
    display: inline-block;
    margin-top: 10px;
  }

  .navbar img {
    height: 32px;
  }

  .logo-track {
    width: calc(500%);
    animation: scroll-left 12s linear infinite;
    gap: 5px;
  }

  .explore-btn {
    padding: 10px 20px 10px 20px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
  }

  .transform-title {
    font-size: 16px;
  }

  .transform-text {
    font-size: 13px;
  }

  .service-text {
    font-size: 13px;
  }

  .card-body.custom-black .card-title {
    font-size: 16px;
  }

  .card-body.custom-black .card-text {
    font-size: 13px;
  }

  .build-title {
    font-size: 20px;
  }

  .quick-links ul li {
    list-style: none;
    margin: 10px 0;
  }

  .video-content {
    top: -140px;
    left: -50px;
    padding: 200px 100px;
  }

  .footer-social a img {
    width: 20px;
    height: 20px;
    margin: 0 -3px;
  }

  .video-content .btn {
    padding: 8px 14px;
    font-size: 10px;
  }

  .small-text {
    font-size: 14px;
  }

  .opportunity {
    font-size: 22px;
  }

  .form-control {
    padding-top: 20px;
    font-size: 14px;
  }

  .address-text {
    font-size: 13px !important;
    line-height: 22px;
  }

  .left-content-padding {
    padding: 50px 50px;
  }

  .right-content-padding {
    padding: 80px 50px;
  }

  .upload {
    font-size: 14px;
  }

  .browse-btn {
    padding: 12px 18px;
    font-size: 14px;
    line-height: 20px;
  }

  .submit-btn {
    padding: 12px 26px;
    font-size: 14px;
    line-height: 20px;
  }

  .header-pera {
    font-size: 14px;
  }
}


@media (max-width: 576px) {
  .custom-col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  h3 {
    font-size: 26px;
  }

  .small-text {
    font-size: 13px;
  }

  .build-title {
    font-size: 18px;
  }

  .video-content .btn {
    padding: 8px 10px;
    font-size: 10px;
  }

  .video-content {
    top: -140px;
    left: -60px;
    padding: 200px 100px;
  }
}







@media (max-width: 992px) {
  .custom-col {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}

@media (max-width: 992px) and (min-width: 768px) {
  .footer-social a img {
    width: 20px;
    height: 20px;
    margin: 0 -5px;
  }

  h2 {
    font-size: 53px;
  }

  .extra-span {
    font-size: 58px;
  }

  .video-content {
    top: -130px;
    left: -40px;
    padding: 200px 100px;
  }

  .small-text {
    font-size: 16px;
  }

  .build-title {
    font-size: 32px;
  }

  .video-content .btn {
    padding: 10px 15px;
    font-size: 16px;
  }
}





@media (min-width: 768px) and (max-width: 1298px) {
  .left-content-padding {
    padding: 100px 60px;
  }

  .right-image-padding {
    padding: 280px 110px;
  }
}




/* Header base style (transparent) */
/* ✅ Base Header — Solid black */
.custom-navbar {
  position: fixed;
  width: 100%;
  z-index: 999;
  padding: 12px 0;
  background-color: #000;
  transition: all 0.3s ease;
}

/* ✅ Nav link base */
.custom-nav-link {
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* ✅ Button base */
.custom-header-btn {
  background: transparent;
  color: white;
  border: 1px solid white;
  padding: 12px 24px;
  font-weight: 400 !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* ✅ On scroll: add glassmorphism effect */
.custom-navbar.scrolled {
  background: rgba(255, 255, 255, 0.05);
  /* transparent white */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ✅ Change nav link color when scrolled */
.custom-navbar.scrolled .custom-nav-link {
  color: #00ffff;
  /* e.g. cyan */
}

/* ✅ Hover effect on links */
.custom-nav-link:hover {
  color: #ffcc00;
  /* yellow on hover */
}

/* ✅ Hover for button */
.custom-header-btn:hover {
  background-color: white;
  color: black;
  border-color: white;
}

.custom-header-btn {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 6px 16px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* ✅ On scroll - button style changes */
.custom-navbar.scrolled .custom-header-btn {
  background-color: transparent;
  color: black;
  border-color: black;
}

/* ✅ On hover (when scrolled) */
.custom-navbar.scrolled .custom-header-btn:hover {
  background-color: black;
  color: white;
  border-color: black;
}





#aiHeroSection {
  position: relative;
  overflow-x: hidden;
  font-family: sans-serif;
}

/* Background video */
.ai-background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
}

.ai-background-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Scroll section */
.ai-scroll-section {
  height: 300vh;
  position: relative;
}

/* Sticky video */
.ai-sticky-video-container {
  position: sticky;
  top: 30vh;
  height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  pointer-events: none;
}

.ai-video-wrapper {
  width: 268px;
  height: 134px;
  border-radius: 12px;
  overflow: hidden;
  transition: width 0.2s ease, height 0.2s ease;
  pointer-events: auto;
  z-index: 3;
}

.ai-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Scrolling Text */
.ai-scrolling-text {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 5;
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.4;
  pointer-events: none;
  color: white;
}

.ai-scroll-line {
  font-size: 112px;
  user-select: none;
}

.ai-inline-video {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}