:root {
    --b-white: #FFFFF7;
    --f-black: #0C150C;
    --coral: #FF5757;
    --yellow: #FFB015;
}

/* @font-face {
  font-family: 'MyCustomFont';
  src: url('path/to/font.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
} */

body {
    font-family: "Figtree", sans-serif;
    font-size: 20px;
    font-weight: 300;
    background-color: var(--b-white);
}

/* .container {
  padding-left: 30px;
  padding-right: 30px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1320px;
    padding-left: 60px;
    padding-right: 60px;
  }
} */



h1 {
    font-size: 70px;
    line-height: 1;
}
h3 {
    font-size: 40px;
}

.pt-10 {
  padding-top: 10px;
}
.pb-10 {
  padding-bottom: 10px;
}

.pb-30 {
    padding-bottom: 30px;
}
.pt-40 {
  padding-top: 40px;
}
.pb-40 {
  padding-bottom: 40px;
}
.pt-60 {
  padding-top: 60px;
}
.pb-60 {
  padding-bottom: 60px;
}
.pt-80 {
    padding-top: 80px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pt-120 {
  padding-top: 120px;
}
.pb-120 {
  padding-bottom: 120px;
}

.mb-40 {
  margin-bottom: 40px;
}

.sub-head {
  font-size: 48px;
  font-weight: bold;
  line-height: 1;
}

.txt-hero {
  font-size: 74px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
}
.txt-22 {
  font-size: 22px;
}
.txt-32 {
  font-size: 32px;
}
.txt-42 {
  font-size: 42px;
  font-weight: normal;
  line-height: 1;
}

.txt-32-b {
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
}

.txt-36-b {
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
}

.txt-42-b {
  font-size: 42px;
  font-weight: bold;
  line-height: 1;
}

.txt-70 {
  font-size: 42px;
  line-height: 1;
}

.t-light {
  font-weight: 300;
}
.t-bold {
  font-weight: 700;
}


.transparent-navbar {
  background-color: transparent !important;
  box-shadow: none !important;
  border: none;
  z-index: 1030;
  transition: background-color 0.3s ease-in-out;
}

.navbar-brand img {
  height: 40px;
}

.navbar-nav .nav-item:not(:last-child) a {
  margin-right: 16px;
}
.nav-item:last-child {
  padding-right: 0;
}
.transparent-navbar .nav-link {
    color: var(--b-white);
}

.transparent-navbar.nav-dark .nav-link {
  color: var(--f-black);
}


/* Ensure toggle stays on top of the fullscreen menu */
.custom-toggler {
  position: relative;
  z-index: 100000 !important;
}

/* Ensure nav always stays above mobile menu background */
.transparent-navbar {
  z-index: 100001 !important;
}


.nav-link.active {
  color: var(--coral) !important;
}
.nav-link:hover {
  color: var(--coral) !important;
  transition: 3ms;
}

.nav-link {
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
}

.navbar-toggler {
  border: none;
  color: var(--b-white);
  pointer-events: auto !important;
}
.navbar-toggler[aria-expanded] {
  pointer-events: none; /* stops bootstrap from interfering */
}

.custom-toggler {
  position: relative;
  width: 38px; /* Increased width */
  height: 28px; /* Slightly taller for visual balance */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 10001;
  padding-right: 0;
}

.toggler-icon {
  display: block;
  height: 1.5px;
  width: 100%;
  background-color: #000;
  border-radius: 2px;
  transition: all 0.35s ease;
  transform-origin: center;
}

/* Animated X state */
.custom-toggler.active .toggler-icon:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.custom-toggler.active .toggler-icon:nth-child(2) {
  opacity: 0;
}

.custom-toggler.active .toggler-icon:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}



/* --- Mobile Menu Overlay --- */
/* --- Mobile Menu Overlay --- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background-color: #FFB015; /* orange */
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center; /* centers main content */
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 9999;
  padding: 50px 30px;
}

/* Active state */
.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}

/* Logo (header) stays at top */
/* .mobile-menu .menu-header {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
} */

/* Nav links centered */
.mobile-menu .mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  text-align: center;
}

.mobile-menu .mobile-nav-links li a {
  font-size: 24px;
  color: #000;
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.mobile-menu .mobile-nav-links li a:hover {
  color: #fff;
}

/* Social icons fixed at bottom */
.mobile-menu .mobile-social {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
}

/* Optional: Fade-in animation for social icons */
.mobile-menu.active .mobile-social {
  animation: fadeUp 0.6s ease forwards 0.2s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}


.menu-header {
  position: absolute;
  top: 13px;
  left: 30px;
  right: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-close {
  font-size: 30px;
  font-weight: 300;
  cursor: pointer;
}



.text-coral {
    color: var(--coral);
}

.input-field {
  padding: 5px 10px;
  border-radius: 30px;
  border: 1px solid var(--f-black);
  background: transparent;
  width: 60%;
}
input::placeholder,
textarea::placeholder {
  color: var(--f-black) !important;   /* custom placeholder color */
  opacity: 1;    /* make it solid */
}

.form-select {
  font-size: 20px;
  padding: 6px 12px;
  border-radius: 30px;
  border: 1px solid var(--f-black);
  background-color: transparent;
}

 /* Style dropdown list */
.custom-select option {
  background-color: var(--b-white);   
  color: var(--f-black);
  padding: 12px 18px;      
  font-size: 18px;
  border: none;
}

/* Hover effect (Chrome/Edge/Firefox only) */
.custom-select option:hover {
  color: var(--coral); 
}

/* Selected option */
.custom-select option:checked {
  color: var(--coral);
}

.btn-comm {
  font-size: 20px;
  font-weight: 500;
  border: 1px solid var(--f-black);
  border-radius: 20px;
  width: fit-content;
  padding: 5px 15px;
}
.btn-comm:hover {
  border: 1px solid var(--coral);
  color: var(--b-white);
  background-color: var(--coral);
  transition: 3ms;
}

/* .top-br {
  border-top: 1px solid var(--f-black);
  margin-top: 60px;
} */
.top-br-line {
  border-bottom: 2px solid var(--f-black);
}

.blk-line {
  height: 1px;
  background-color: var(--f-black);
  margin: 20px 0;
}

#image-loader {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease;
}

#image-loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.image-sequence img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: auto;
  transition: opacity 0.15s ease;
}

/* Remove default focus styles from all form controls and buttons */
input:focus,
textarea:focus,
select:focus,
button:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: inherit !important;
}

.no-shrink {
  flex-shrink: 0;
}





/* .hero-slider {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  padding-top: 0px; 
} */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slides {
  height: 100%;
  width: 100%;
  position: relative;
}

.hero-cont {
  display: flex;
  align-items: flex-start;
}
/* .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5%;
  color: var(--b-white);
} */
 .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 0s linear 1s;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease, visibility 0s linear 0s;
}

/* .overlay {
  max-width: 700px;
} */



.hero-hr-190 {
  margin-top: 12px;
  margin-right: 10px;
  width: 190px;
  height: 1px;
  background-color: var(--b-white);
}


/* slider progress container - adjust position to match your layout */
/* .slider-progress {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%; 
  z-index: 3;
} */
 .slider-progress {
  position: absolute;
  bottom: 40px; /* or wherever you want it */
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none; /* prevent accidental clicks */
}

/* wrapper holds the four items equally */
/* .progress-wrapper {
  display: flex;
  gap: 24px; 
  width: 100%;
  align-items: flex-start;
} */
 .slider-progress .progress-wrapper {
  width: min(100%, 1280px); /* matches Bootstrap container max-width */
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  gap: 24px;
  
  pointer-events: auto;
}

/* each item stacks bar + number; left aligned so number sits at bar start */
.progress-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* crucial: number aligns to the start of its bar */
  flex: 1; /* make all items equal width */
}

/* the visual bar */
.progress-segment {
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

/* the filling span (animated) */
.progress-segment span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--coral); /* default color, JS can override */
  transition: width 0s;
}

/* when active (JS toggles), animate fill */
.progress-segment.active span {
  width: 100%;
  transition: width 5s linear;
}

.h-slide-cont {
  display: flex;
  align-items: flex-start;
}

/* number under the left edge of the bar */
.slide-number {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  white-space: nowrap;
}

/* active number style (JS toggles) */
.slide-number.active {
  color: var(--coral); /* JS can also override color dynamically */
  font-weight: 300;
}

/* responsive: reduce width on small screens */
@media (max-width: 768px) {
  .slider-progress { width: 100%; bottom: 24px; }
  .progress-wrapper { gap: 8px; }
  .slide-number { font-size: 13px; }
}


.line-btm {
  height: 1px;
  width: 100%;
  margin-bottom: 20px;
  background-color: var(--f-black);
}




/* .slide-numbers {
  display: flex;
  justify-content: space-between;
  color: white;
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 500;
} */


/* .progress-container {
  position: relative;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  margin-bottom: 10px;
}

.progress-bar {
  height: 2px;
  background-color: #ff0000;
  width: 0%;
  transition: width 0.1s linear;
} */

.team-card .overlay p{
  margin-top: 0;
}

.right-panel .slide span {
  font-weight: bold;
}





.form-control {
    font-size: 20px;
    border-radius: 20px;
    border: 1px solid var(--f-black);
    background: transparent;
}
.sub-btn {
    font-size: 20px;
    color: var(--b-white);
    background-color: var(--coral);
    border-radius: 30px;
    padding: 6px 20px;
}
.sub-btn:hover {
    color: var(--f-black);
    background-color: var(--b-white);
    border: 1px solid var(--f-black);
}

.logo-marquee {
  overflow: hidden;
  padding: 15px 0;
  position: relative;
  margin-bottom: 50px;
}

.marquee {
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  gap: 80px;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-inner img {
  height: 30px;
  width: auto;
  /* filter: grayscale(100%); */
  /* opacity: 0.7; */
  transition: all 0.3s ease;
}

/* .marquee-inner img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
} */

/* Smooth infinite scrolling animation */
@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.with-line {
  display: inline-block;
  position: relative;
  padding-right: 20px; /* space for line */
}

.with-line::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 12px; /* align visually with text baseline */
  width: calc(50% - 40px);
  height: 1px;
  background-color: #000;
}

.with-line-sm {
  display: inline-block;
  position: relative;
  padding-right: 20px; /* space for line */
}

/* .with-line-sm::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 12px;
  width: 140px;
  height: 1px;
  background-color: #000;
} */
 .with-line-sm::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: 12px;
  width: 160px;
  height: 1px;
  background-color: #000;

  transform-origin: left;
  transform: scaleX(0);           /* hidden initially */
  transition: transform 1s ease;  /* smooth animation */
}

.with-line-sm.line-visible::after {
  transform: scaleX(1);           /* animate full line */
}

.with-line-team {
  display: inline-block;
  position: relative;
  overflow: visible;
}

.with-line-team::after { 
  content: ""; 
  position: absolute; 
  bottom: 12px; 
  left: 220px; 
  width: 420px; 
  height: 1px; 
  background-color: #000; 
  transform-origin: left; 
  transform: scaleX(0); /* hidden initially */ 
  transition: transform 1s ease; /* smooth animation */ 
} 
.with-line-team.line-visible::after 
{ 
  transform: scaleX(1); /* animate full line */ 
}




footer {
    color: var(--b-white);
}

footer a {
    color: var(--b-white);
    text-decoration: none;
}
.f-divider {
    background-color: var(--b-white);
    height: 2px;
    max-width: 90%;
    margin: 42px 0;
}

.footer-div {
  position: relative;
  z-index: 1;
    background-color: var(--coral);
    /* border-top-left-radius: 60px;
    border-top-right-radius: 60px; */
}
.logo-footer {
  height: 60px;
}
.footer-div p {
  margin-bottom: 0;
}

.social-icons {
  margin-top: 5px;
}

.social-icons a {
  margin-right: 8px;
}

.social-icons a:last-child {
  margin-right: 0;
}

.footer-bottom {
  font-weight: light;
  display: flex;
  justify-content: space-between;
}
.footer-bottom img {
  margin-right: 10px;
}

/* ====================================
   ✨ Smooth Word Reveal Animation
   ==================================== */

/* --- SECTION FADE/SLIDE IN --- */
.reveal-section {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

/* --- WORD ANIMATION INSIDE SECTIONS --- */
/* .reveal-words {
  opacity: 0;
  display: inline-block;
}

.reveal-words.animate {
  opacity: 1;
}

.reveal-words span {
  opacity: 0;
  display: inline-block;
  transform: translateY(20px);
  transition: all 0.45s ease;
} */
 /* Default hidden state for reveal-words spans */
.reveal-words span.word {
  opacity: 0;
  transform: translateY(12px);
  display: inline-block;
  transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}

/* Once animated */
.reveal-words.animate span.word {
  opacity: 1;
  transform: translateY(0);
}

/* Initial hidden state */
.reveal-slide {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

/* When visible in viewport */
.reveal-slide.visible {
  opacity: 1;
  transform: translateY(0);
}

.th-p {
    max-width: 90%;
  }


/* Container to be animated */
.reveal-lines {
  display: inline-block;
  overflow: hidden; /* Helps clip hidden lines */
}

/* Each detected line */
.reveal-line {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  display: block;
}

.div-p {
  font-size: 20px;
}



@media (min-width: 1400px) {
  .hp-16 {
  max-width: 90%;
}
.hp-16 {
  max-width: 100%;
}
.div-p {
  font-size: 20px;
  max-width: 90%;
}

}


/* Responsive */
@media (max-width: 1400px) {
  .div-p {
  font-size: 18px;
  max-width: 96%;
}
.txt-70 {
  font-size: 48px;
}
.txt-42 {
  font-size: 36px;
}
.slide p {
  max-width: 100px;
}
.slider-progress .progress-wrapper {
  width: min(100%, 1118px); /* matches Bootstrap container max-width */
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  gap: 24px;
  
  pointer-events: auto;
}
    .hero-text-section {
        padding-left: calc((100vw - 930px) / 2 - 5px);
    }
}

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

@media (min-width: 992px) {
  #web-ver {
    display: block;
  }
  #mob-ver {
    display: none;
  }
  

  .navbar {
    padding-top: 10px;
  }
  .navbar-nav .nav-item:last-child .nav-link {
      padding-right: 0;
  }

  

  .team-div {
  position: relative;
  top: -38px;
}
 .h-slide-cont-1 {
    line-height: 1.2;
    position: relative;
    top: -40px;
  }
 .bubble-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('../images/tech_banner.png') no-repeat center center;
        background-size: cover;
        opacity: 1;
        z-index: 1;

        /* 🔥 Smooth floating movement */
        animation: bubbleDrift 18s ease-in-out infinite alternate;
      }

      @keyframes bubbleDrift {
        0% {
          transform: translate3d(-12px, -8px, 0) scale(1.02);
        }
        50% {
          transform: translate3d(10px, 6px, 0) scale(1.03);
        }
        100% {
          transform: translate3d(-6px, 10px, 0) scale(1.02);
        }
      }
}

@media (min-width: 992px) and (max-width: 1100px) {

  body {
    font-size: 16px;
  }
  .txt-70 {
    font-size: 42px;
  }

  .txt-32 {
    font-size: 24px;
  }
  .txt-32-b {
    font-size: 24px;
  }
  .txt-36-b {
    font-size: 32px;
  }
  .txt-42 {
    font-size: 32px;
  }

  .nav-link {
    font-size: 14px;
  }
  .sub-head {
    font-size: 36px;
  }
  .form-control{
    font-size: 16px;
    padding: 4px 10px;
  }
  .form-select {
    font-size: 16px;
    padding: 4px 10px !important;
  }

  .div-p {
    font-size: 16px;
    max-width: 100%;
  }
  .slider-progress .progress-wrapper {
    width: 92%;
  }
  .hero-slider .overlay h1 {
    font-size: 30px;
  }
  .hero-slider .overlay p {
    font-size: 16px;
  }
  .hero-text-section {
        padding-left: calc((100vw - 930px) / 2 - 5px);
    }
  .scroll-arrow {
    right: 20px;
  }

  .txt-hero {
    font-size: 54px;
  }

  .hp-16 {
    font-size: 16px;
  }

  .slide p {
    font-size: 16px;
    max-width: 98%;
  }

  .btn-comm {
    font-size: 16px;
    padding: 4px 10px;
  }

  .th-p {
    font-size: 16px;
    max-width: 100%;
  }

   .feature-item .overlay h3 {
    font-size: 24px !important;
  }

  .hover-content h3 {
    font-size: 22px !important;
  }
  .hover-content p {
    font-size: 16px !important;
  }

  .navbar-brand img {
    height: 34px;
  }
  .logo-footer {
    height: 40px;
  }
   .marquee-inner img {
    height: 20px;
  }
  .logo-marquee {
    margin-bottom: 30px;
  }

 }


@media (max-width: 991px) {
  #web-ver {
    display: none;
  }
  #mob-ver {
    display: block;
  }
  body {
    font-size: 18px;
  }
  .txt-70 {
    font-size: 30px;
  }
  .txt-42 {
    font-size: 22px;
  }
  .txt-32-b {
    font-size: 22px;
  }
  .txt-36-b {
    font-size: 24px;
    font-weight: 600;
  }
  .txt-32 {
    font-size: 22px;
  }

  .txt-42-b {
    font-size: 28px;
  }

  .txt-22 {
    font-size: 18px;
  }

  .pt-20 {
    padding-top: 20px;
  }

  .pt-120 {
    padding-top: 40px;
  }
  .pb-80 {
    padding-bottom: 40px;
  }
  .pt-40 {
    padding-top: 20px;
  }
  .pt-60 {
    padding-top: 40px;
  }
  
  .pb-60 {
    padding-bottom: 40px;
  }
  .pb-30 {
    padding-bottom: 10px;
  }

  .m-p-30 {
    padding-top: 30px;
  }

  .m-pt-40 {
    padding-top: 40px;
  }
  .m-pb-40 {
    padding-bottom: 40px;
  }

  .m-pt-60 {
    padding-top: 40px;
  }
  .m-pb-60 {
    padding-bottom: 40px;
  }

  .h-70 {
    height: 68vh;
  }


  .navbar-brand img, .menu-header img {
    height: 36px;
  }

  .toggler-icon {
    background-color: var(--f-black);
  }
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .overlay h1 {
    font-size: 36px !important;
  }
  .overlay p {
    font-size: 18px;
  }

  .slider-progress .progress-wrapper {
    margin: 0 30px !important;
  }

  .marquee-inner img {
    height: 20px;
  }

  .sub-head {
    font-size: 30px;
  }

  .h-slide-cont {
    display: block;
  }
  .h-slide-cont p {
    padding-top: 12px;
  }

 
  .hero-slider {
        height: 100dvh !important;
    }

    .slide {
        background-size: cover !important;
        background-position: center !important;
    }
  

  .hero-hr-190 {
    width: 270px;
    margin-top: 20px;
  }

  .hero-cont {
    display: block;
    align-items: flex-start;
  }
  .hero-cont p {
    padding-top: 20px;
  }

  .txt-hero {
    font-size: 34px;
    font-weight: 600;
    position: relative;
    top: -70px;
  }
  .team-div {
    padding-top: 10px;
  }
  .with-line-team::after {
    left: 140px;
    width: 120px;
  }

  .m-line {
    width: 70%;
    background-color: var(--f-black);
  }
  .btn-comm {
    font-size: 14px;
  }

  .vindicator {
    width: 34px;
  }


  .hero-grid {
    width: 100% !important;
    font-family: 600;
  }
  .with-line::after {
    right: -68px;
    bottom: 10px;
    width: 70px;
  }

  .h-slide-cont-1 {
    line-height: 1.2;
    position: relative;
    top: 30px;
  }
  .we-make .with-line::after {
    right: 0 !important;
    bottom: 10px !important;
    width: 160px !important;
  }
  .with-line-sm::after {
    right: -40px;
    width: 140px;
    bottom: 10px;
  }


 /* .m-scroll-story {
  position: relative;
  width: 100%;
  height: 400vh; 
  background: #FFFFF7;
  overflow: hidden;
} */

/* Sticky header text full screen */
/* .m-sticky-text {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 30px 20px;
  background: #FFFFF7;
  z-index: 10;
} */

/* Slides container takes remaining scroll area */
/* .m-slide-wrap {
  position: absolute;
  top: 100vh; 
  left: 0;
  width: 100%;
} */

/* Each slide placed vertically */
.m-slide {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 20px 60px;
}

.m-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 25px;
}

 .hero-text-section {
    padding: 32px 30px !important;
  }


  /* .m-slide img {
    width: 100%;
  } */
  .m-slide p span {
    font-weight: 700;
  }
  .line-btm {
    max-width: 60%;
  }


  .m-feature-sec .swiper-slide {
    display: flex;
    flex-direction: column;
  }

  .m-feature-item,
  .m-feature-item-white {
    height: 90vh;
  }


  .m-feature-sec {
    position: relative;
    bottom: -24px;
  }
  .m-feature-item h3 {
    font-size: 26px;
  }
  .m-feature-item {
    position: relative;
    height: 80vh;
    background-size: cover;
    background-position: center;
    overflow: hidden;
  }
  .m-feature-item::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.55);  */
    z-index: 1;
  }
  .m-feature-item .overlay {
    position: absolute;
    inset: 0; 
    display: flex;
    flex-direction: column;
    justify-content: flex-end; 
    color: var(--b-white);
    z-index: 2;
    padding: 60px 30px;
  }
  .m-feature-title {
    border-bottom: 1px solid var(--b-white);
    width: 50%;
    padding-bottom: 10px;
  }

   .m-feature-item-white {
    position: relative;
    height: 80vh;
    background-color: var(--b-white);
    background-size: cover;
    background-position: center;
    overflow: hidden;
  }
  .m-feature-item-white p {
    max-width: 85%;
  }
  .m-feature-item-white h3 {
    font-size: 26px;
  }
  .m-feature-item-white .overlay {
    position: absolute;
    inset: 0; 
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    color: var(--f-black);
    z-index: 2;
    padding: 60px 30px;
  }

  .swiper-pagination {
    text-align: left;
  }
  .swiper-pagination-bullet-active {
    background-color: var(--coral);
  }
  .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    left: 28px;
    bottom: 30px;
  }

  .swiper-pagination-hm span.swiper-pagination-bullet {
    width: 40px;
    height: 2px;
    border-radius: 0px;
  }
  
  .swiper-pagination-bullet {
    width: 40px;
    height: 2px;
    border-radius: 0px;
  }

  .w-80 {
    max-width: 80%;
  }

  .scroll-div {
    padding-left: 10px !important;
  }

  .scroll-story-mob .with-line::after {
    right: 0;
    width: 96px;
  }

  .m-story-div img {
    width: 100%;
  }
  .m-story-div p span{
    font-weight: 700;
  }


  .logo-marquee {
    margin-bottom: 20px;
  }

 .marquee-inner-mob img {
  height: 26px;
 }
.marquee-inner-mob {
  display: flex;
  gap: 50px;
  width: max-content;
  animation: marquee-mobile-rtl 50s linear infinite;
  will-change: transform;
}

/* Second row opposite direction */
.marquee-inner-mob:nth-of-type(2) {
  animation: marquee-mobile-ltr 50s linear infinite;
}

/* Continuous looping for Row 1 */
@keyframes marquee-mobile-rtl {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Continuous looping for Row 2 */
@keyframes marquee-mobile-ltr {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}





  .input-field {
    width: 54%;
    padding: 3px 10px;
  }


  .bubble-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('../images/tech_mob.png') no-repeat center center;
        background-size: cover;
        opacity: 1;
        z-index: 1;

        /* 🔥 Smooth floating movement */
        animation: bubbleDrift 18s ease-in-out infinite alternate;
      }

      @keyframes bubbleDrift {
        0% {
          transform: translate3d(-12px, -8px, 0) scale(1.02);
        }
        50% {
          transform: translate3d(10px, 6px, 0) scale(1.03);
        }
        100% {
          transform: translate3d(-6px, 10px, 0) scale(1.02);
        }
      }

  .form-control, .form-select, .sub-btn {
    font-size: 15px;
  }

  .footer-div {
    position: relative;
    z-index: 1;
    border-top-left-radius: 26px;
    border-top-right-radius: 26px;
  }
  .logo-footer {
    height: 40px;
  }
  .f-divider {
    max-width: 100%;
    margin: 30px 0;
  }
  footer .pt-60 {
    padding-top: 30px;
  }
  footer .copyright {
    font-size: 16px;
  }
}

@media (max-width: 400px) {
  body {
    font-size: 16px;
  }

  .hero-cont p {
    font-size: 18px;
  }
  .txt-42 {
    font-size: 22px;
  }
  .txt-32-b {
    font-size: 20px;
  }
  .h-70 {
    height: 78vh;
  }

  .m-feature-item-white h3 {
    font-size: 24px;
  }
  .overlay p {
    font-size: 16px;
  }

  footer .copyright {
    font-size: 14px;
  }
}

@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 834px) 
  and (orientation: portrait) {
    
    .mobile-menu .menu-header img {
      display: none;
    }

    body {
      font-size: 20px;
    }

    .slider-progress .progress-wrapper {
      margin: 0 50px !important;
    }
    .slide p {
      max-width: 100%;
    }
    .hero-grid {
      font-weight: 600 !important;
    }
    .hero-grid.txt-hero {
      font-size: 56px;
    }
    .overlay p {
      font-size: 20px;
    }

    .m-feature-item h3, .m-feature-item-white h3 {
      font-size: 40px;
    }

    .txt-32-b {
      font-size: 32px;
    }

    .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
      left: 46px;
    }
    .m-feature-item .overlay, .m-feature-item-white .overlay {
      padding-left: 50px;
      padding-right: 50px;
    }
    .m-feature-title {
      width: 50%;
    }

        .team-scroll {
        padding-left: 2.5rem;
        padding-right: 1.5rem;
    }

    .hero-text-section {
      padding-left: 50px !important;
      padding-right: 50px !important;
    }

    .sub-head {
      font-size: 40px;
    }
    .with-line-team::after {
        left: 180px;
        width: 460px;
    }
    .h-70 {
      height: 70vh;
    }

    .btn-comm {
      font-size: 20px;
    }
}




