/* common button */
.neon-btn {
    position: relative;
    display: inline-block;
    padding: 12px 28px;
    color: #fff;
    background: #111;
    border: 2px solid var(--color-orange);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: 0 0 8px var(--color-orange);
}

.neon-btn:hover {
    background: var(--color-orange);
    color: white;
    box-shadow: 0 0 15px var(--color-orange), 0 0 30px var(--color-orange);
    border-color: var(--color-orange);
}

/* Shine Effect */
.neon-btn::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
}

.neon-btn:hover::before {
    left: 100%;
}

/* preloader css start here */
#preloader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

/* Logo animation wrapper */
.logo-loader {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: pulseRotate 1.8s infinite ease-in-out;
}

.logo-loader img {
  width: 100%;
  height: auto;
  /* filter: drop-shadow(0 0 20px var(--color-orange)); */
}

/* Loading text */
#preloader h1 {
  margin-top: 20px;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 3px;
  animation: fadeText 1.2s infinite ease-in-out;
}

/* Animations */
@keyframes pulseRotate {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.15) rotate(180deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(360deg);
    opacity: 0.7;
  }
}

@keyframes fadeText {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Hide main content initially */
#content {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.nav_logo{
    object-fit: cover;
    height: auto;
}

@media (max-width:576px) {
  .nav_logo{
   width: 60px !important;
}
}


/*---------------- NAVBAR STYLING --------------*/
.navbar-custom {
    background: white;
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.162);
    padding: 12px 0;
    transition: 0.3s;
}

/*--------------- MENU ITEMS ---------------*/
.nav-link {
    color: black !important;
    font-size: 18px;
    margin-right: 25px;
    position: relative;
    font-weight: 500;
}

/* Hover underline animation */
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    left: 50%;
    height: 3px;
    background: var(--color-orange);
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--color-orange) !important;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

.menu-icon span {
    display: block;
    width: 28px;
    height: 3px;
    background: #000;
    /* << Change this color */
    margin: 5px 0;
    transition: 0.3s;
}

/*--------------- HAMBURGER ANIMATION ---------------*/
.menu-icon {
    cursor: pointer;
    width: 28px;
    height: 20px;
    position: relative;
    transition: 0.4s;
}

.menu-icon span {
    position: absolute;
    /* height: 3px; */
    width: 100%;
    background: black;
    border-radius: 5px;
    transition: 0.4s;
}

.menu-icon span:nth-child(1) {
    top: 0;
}

.menu-icon span:nth-child(2) {
    top: 8px;
}

.menu-icon span:nth-child(3) {
    top: 16px;
}

/* Cross animation */
.menu-icon.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
}

.menu-icon.active span:nth-child(2) {
    opacity: 0;
}

.menu-icon.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
}

/* Disable scroll when mobile menu open */
body.no-scroll {
    overflow: hidden;
}


/* hero section css */
.hero_slider {
    position: relative;
    height: 520px;
    overflow: hidden;
}

.hero_slider::after {
    content: '';
    position: absolute;
    background-color: #00000060;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
}

/* Background Video */
.hero_slider .video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Content Above Video */
.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 22;
    top: 0;
    left: 0;
}

/* Fade up animation */
@keyframes fadeUpRepeat {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-80px);
  }
}

/* Apply animation to elements */
.hero-text {
  animation: fadeUpRepeat 7s ease-in-out infinite; 
}

.hero_button {
  animation: fadeUpRepeat 7s ease-in-out infinite; 
}
.hero-text:nth-child(1) { animation-delay: 0s; }
.hero-text:nth-child(2) { animation-delay: 1s; }
.hero_button { animation-delay: 2s; }


.animated_content {
    z-index: 2 !important;
}

.hero_layer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero_button {
    background-color: var(--color-orange);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    padding: 10px 20px;
    text-transform: uppercase;
    position: relative;
    border-radius: 0 !important;
    border: none;
    transition: all 0.3s ease 0s;
}

.hero_button:hover,
.hero_button.active:hover {
    color: #ffffff;
}

.hero_button:before {
    content: "";
    position: absolute;
    top: -7px;
    left: 0;
    background-color: white;
    width: 30%;
    height: 4px;
    transition: all 0.3s ease 0s;
}

.hero_button:after {
    content: "";
    position: absolute;
    bottom: -7px;
    right: 0;
    background-color: white;
    width: 30%;
    height: 4px;
    transition: all 0.3s ease 0s;
}

.hero_button:hover:before,
.hero_button:hover:after,
.hero_button.active:before,
.hero_button.active:after {
    width: 100%;
}

@media screen and (max-width: 575px) {
    .hero_button {
        margin-bottom: 50px !important;
        padding: 5px 10px;
    }
}

/* about section css */
/* Make image overflow outside container */
.overflow-wrap {
  position: relative;
  width: 120%;
  margin-left: -25%;    /* pushes image out of container */
}

.about-img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0px 15px 40px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.typing-title{
    min-height: 30px;
}

@media (min-width:991px) {
    .typing-title{
    min-height: 38px;
}

.overflow-wrap {
  position: relative;
  width: 100%;
  margin-left: auto;   
}
}
/* Strong 3D Hover Tilt Effect */
.overflow-wrap:hover .about-img {
  transform: perspective(900px) rotateY(12deg) rotateX(6deg) scale(1.05);
  box-shadow: 0px 25px 60px rgba(0,0,0,0.25);
}


/* our team section css */
.team-card .team-img {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.team-card img {
    width: 100%;
    height: 280px;
     object-position: top;
    transition: 0.5s ease;
    border-radius: 12px;
}

@media (max-width: 450px) {
  .team-card img {
    height: 320px !important;
    object-fit: cover;
  }
}
@media (min-width: 992px) {
  .team-card img {
    height: 420px !important;
  }
}


.team-card img {
    filter: brightness(60%);
}
.team-card:hover img {
    filter: brightness(90%);
}

.team-info {
    position: absolute;
    bottom: 10px;
    left: 20px;
    color: #fff;
    transition: 0.5s;
}

.team-card:hover .team-info {
    bottom: -100px;
}

.team-info h5 {
    margin: 0;
    font-weight: bold;
}

.team-info p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

/* services section css */
.service-card {
    position: relative;
    border-radius: 15px;
    height: 100%;
    padding: 30px;
    color: #fff;
    transition: 0.4s ease;
    overflow: hidden;
    border: 1px solid #222;
}

/* Hover Glow + Lift */
.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-orange);
    box-shadow: 0 0 15px var(--color-orange), 0 0 25px var(--color-orange);
}

/* Shine effect */
.service-card::before {
    content: "";
    position: absolute;
    top: -80%;
    left: -120%;
    width: 250%;
    height: 250%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transform: skewX(-25deg);
    transition: 0.7s linear;
}

.service-card:hover::before {
    left: 150%;
}

/* Icon Styling */
.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-orange), var(--color-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 0 15px var(--color-orange);
    transition: 0.4s ease;
}

/* Icon hover spin */
.service-card:hover .icon-box {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 0 20px var(--color-orange);
}


/* contact us section css */
.contact-section {
    background: #eaf2ff;
}

.contact-box {
    max-width: 1100px;
}

/* Gradient Background */
.contact-gradient {
    background: linear-gradient(135deg, var(--color-orange), #2c2e2dff);
    position: relative;
}

/* White outlined inputs */
.contact-input {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: #fff;
}

.contact-input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

/* Social Icons */
.social-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
    border-radius: 8px;
    font-size: 18px;
    transition: 0.3s;
}

.social-icon:hover {
    background: var(--color-orange);
    color: white;
    transform: translateY(-3px);
}

.form_button {
    transition: all 300ms linear;
    border: none;
    border-radius: 4px;
    padding: 6px 20px;
}

.form_button:hover {
    background-color: var(--color-orange);
    color: white;
}


/* testimoial section css */
.testimonial-section {
    background: #f4faff;
}

.testimonial-card {
    max-width: 700px;
    background: #fff;
    border-radius: 20px;
}

.testimonial-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 4px solid var(--color-orange);
    object-fit: cover;
    box-shadow: 0 0 10px rgba(0, 200, 255, 0.5);
}
.carousel-item .testimonial-card{
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.192);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(60%);
}


/* footer section css */
.footer_link {
    transition: all 300ms linear;
}

.footer_link:hover {
    color: var(--color-orange) !important;
}


/* our partners section css */
.marquee {
  overflow: hidden;
  position: relative;
}

.marquee-content {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee-left 20s linear infinite;
}

.marquee-left .marquee-content {
  animation: marquee-left 20s linear infinite;
}

.marquee-right .marquee-content {
  animation: marquee-right 20s linear infinite;
  
}

.marquee-right{
    rotate: 355deg;
}
.marquee-left{
    rotate: 355deg;
}

.marquee img {
  height: 50px; 
  width: auto;
}

/* Left to Right animation */
@keyframes marquee-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Right to Left animation */
@keyframes marquee-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}


/* about slider */
.gallery-section {
  overflow: hidden;
}


.gallery_slide .slide {
  transition: 0.5s;
}


.gallery_slide .slide img {
  width: 100%;
  min-height: 280px;
}

/* Mobile */
@media (max-width: 768px) {
  .gallery_slide .slide {
    opacity: 1;
    transform: scale(1);
  }
  .gallery_slide .slide img {
  min-height: 200px;
}

 
}
@media (max-width: 576px) {
   .gallery_slide .slide img {
  min-height: 140px;
}
  .gallery_slide .slide img {
    height: auto;
  }
  .gallery_slide {
  padding: 0 0;
}

}


/* grow with us section css */
.grow-with-us {
  max-height: 500px;
  height: 500px;
  background: white !important;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

/* ✅ Background Video */
.bg-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ✅ Dark Overlay on BG Video */
/* .grow-with-us::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
} */

/* ✅ Foreground Layer Above BG */
.grow-with-us .container {
  position: relative;
  z-index: 2;
}

/* ✅ Left Image */
.grow-img {
  max-width: 280px;
}

/* ✅ Right Video Box */
.video-wrapper {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ✅ Animated Arrow */
.animated-arrow {
  position: absolute;
  left: 43%;
  top: 50%;
  transform: translateY(-50%);
  animation: moveArrow 2s infinite ease-in-out;
  z-index: 10;
}

.animated-arrow img,
.animated-arrow svg {
  width: 60px;
}

/* ✅ Arrow Animation */
@keyframes moveArrow {
  0%   { transform: translate(0, -50%); opacity: 0.3; }
  50%  { transform: translate(40px, -50%); opacity: 1; }
  100% { transform: translate(0, -50%); opacity: 0.3; }
}

/* ✅ Mobile Fix */
@media (max-width: 768px) {
  .grow-with-us {
    height: auto;
    max-height: none;
    padding: 30px 0;
  }

  .animated-arrow {
    display: none;
  }
}

.animates_gif{
  width: 400px;
  rotate: 50deg;
  transform: scale(4);   /* 1.2, 1.5, 2 etc */
  left: -30px;
  position: relative;
  z-index: -1;
}
.grow_man{
  position: relative;
  z-index: 20;
}


@media (min-width:768px) {
    .animates_gif{
  width: 400px;
  rotate: 50deg;
  transform: scale(2);   /* 1.2, 1.5, 2 etc */
  left: -100px;
  position: relative;
  z-index: -1;
}
}
@media (min-width:992px) {
  .animates_gif{
  width: 400px;
  rotate: 50deg;
  transform: scale(3);   /* 1.2, 1.5, 2 etc */
  left: -30px;
  position: relative;
  z-index: -1;
}
}
@media (min-width:1200px) {
  .animates_gif{
  width: 400px;
  rotate: 50deg;
  transform: scale(4);   /* 1.2, 1.5, 2 etc */
  left: -30px;
  position: relative;
  z-index: -1;
}
}