/*** Spinner Start ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }

/*** Spinner End ***/
#page-loader {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 99999;
}

/* DESKTOP – Full cinematic look */
#page-loader video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* MOBILE – Text safe (NO CUT) */
@media (max-width: 768px) {
    #page-loader video {
        object-fit: contain;   /* 🔥 MOST IMPORTANT */
        background: #000;      /* black bars if needed */
    }
}

/* Button */
#startBtn {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    padding: 14px 30px;
    background: #f47c20;
    color: #fff;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    z-index: 10;
}

/* Mobile button spacing */
@media (max-width: 768px) {
    #startBtn {
        bottom: 20px;
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* MAIN HEADER */
.main-header {
    position: relative;
    width: 100%;
    z-index: 999;
    transition: all 0.4s ease;
}

/* STICKY STATE */
.main-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    animation: slideDown 0.4s ease;
}

/* Slide animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Fix body jump */
body.has-sticky {
    padding-top: 90px; /* adjust as per header height */
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-md-square {
    width: 46px;
    height: 46px;
}

.btn-lg-square {
    width: 58px;
    height: 58px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/*** Button End ***/


/*** Topbar Start ***/

.topbar .top-info {
    letter-spacing: 1px;
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
}

#note {
    width: 500px;
    overflow: hidden;
}

#note small {
    position: relative;
    display: inline-block;
    animation: mymove 5s infinite;
    animation-timing-function: all;
}

@keyframes mymove {
    from {left: -100%;}
    to {left: 100%;}
}

/*** Topbar End ***/


/*** Navbar Start ***/
.navbar .navbar-nav {
    padding: 15px 0;
}

.navbar .navbar-nav .nav-link {
    padding: 10px;
    color: #000103;
    font-size: 18px;
    outline: none;
    
}
span.text-white-50 {
    color: #ff4f00 !important;
}
h1.display-1.mb-4.animated.fadeInLeft {
    color: #fff!important;
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    color: #000103;
    font-family: "font awesome 5 free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
}

/*** Navbar End ***/


/*** Carousel Start ***/

.carousel-item {
    position: relative;
}

.carousel-item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .6);
}

.carousel-caption {
    height: 100%;
    display: flex;
/*    align-items: center;*/
    justify-content: center;
    z-index: 1;
}

.carousel-item p {
    max-width: 700px;
    margin: 0 auto 35px auto;
}

.carousel-control-prev {
/*    width: 90px;*/
    height: 60px;
    position: absolute;
    top: 30%;
    left: 0;
/*    background: var(--bs-primary);*/
    border-radius: 0 50px 50px 0;
    opacity: 1;
}

.carousel-control-prev:hover {
/*    background: var(--bs-secondary);*/
    transition: .8s;
}
#carouselId .carousel-indicators li{
        background: #fff!important;
}
.carousel-indicators .active {
    opacity: 1;
}
.carousel-control-next {
/*    width: 90px;*/
    height: 60px;
    position: absolute;
    top: 30%;
    right: 0;
/*    background: var(--bs-primary);*/
    border-radius: 50px 0 0 50px;
    opacity: 1;
}

.carousel-control-next:hover {
/*    background: var(--bs-secondary);*/
    transition: .8s;
}

.carousel-caption .carousel-content a button.carousel-content-btn1 {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn1:hover {
    background: var(--bs-primary);
    color: #ffffff;
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2 {
    background: var(--bs-primary);
    color: var(--bs-white);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2:hover {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

#carouselId .carousel-indicators li {
    width: 30px;
    height: 10px;
    background: var(--bs-primary);
    margin: 10px;
    border-radius: 30px;
    opacity: 1;
}

#carouselId .carousel-indicators li:hover {
    background: var(--bs-secondary);
    opacity: 1;
}

@media (max-width: 992px) {
    .carousel-item {
        min-height: 500px;
    }
    
    .carousel-item img {
        min-height: 500px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 40px !important;
    }

    .carousel-item p {
        font-size: 16px !important;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        min-height: 400px;
    }
    
    .carousel-item img {
        min-height: 400px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 28px !important;
    }

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

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-white);
}

/*** Carousel End ***/


/*** Services Start ***/

.services .services-item {
    box-shadow: 0 0 60px rgba(0, 0, 0, .2);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 10px 0;
    position: relative;
}


.services-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px 10px 0 0;
    background: #ff4f00;
    transition: .5s;
}

.services-content::after {
    top: 0;
    bottom: auto;
    border-radius: 10px 10px 10px 10px;
}

.services-item:hover .services-content::after {
    height: 100%;
    opacity: 1;
    transition: .5s;
}

.services-item:hover .services-content-icon {
    position: relative;
    z-index: 2;
}

.services-item .services-content-icon i,
.services-item .services-content-icon p {
    transition: .5s;
}

.services-item:hover .services-content-icon i {
    color: var(--bs-secondary) !important;
}

.services-item:hover .services-content-icon p {
    color: var(--bs-white);
}
.bg-secondary {
    background-color: #000 !important;
}
/*** Services End ***/


/*** Blog Start ***/
.blog-item .blog-btn {
    z-index: 2;
}

.blog-btn .blog-btn-icon {
    height: 50px;
    position: relative;
    overflow: hidden;
}

.blog-btn-icon .blog-icon-2 {
    display: flex;
    position: absolute;
    top: 6px;
    left: -140px;
    
}

.blog-btn-icon:hover .blog-icon-2 {
    transition: 1s;
    left: 5px;
    top: 6px;
    padding-bottom: 5px;
}
.blog-icon-1 {
    position: relative;
    top: -4px;
}
.blog-btn-icon:hover .blog-icon-1 {
    top: 0;
    right: -140px;
    transition: 1s;
}
/*** Blog End ***/


/*** Contact Start ***/
.contact-detail::before {
    position: absolute;
    content: "";
    height: 50%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(rgb(210, 243, 235, 1), rgba(230, 250, 245, .3)), url(../img/background.jpg) center center no-repeat;
    background-size: cover;
    border-radius: 10px;
    z-index: -1;
}

.contact-map {
    background: #26d48c;
}

.contact-form {
    background: #26d48c;
}

/*** Contact End ***/


/*** Footer Start ***/

.footer .short-link a,
.footer .help-link a,
.footer .contact-link a {
    transition: .5s;
}

.footer .short-link a:hover,
.footer .help-link a:hover,
.footer .contact-link a:hover {
    letter-spacing: 1px;
}

.footer .hightech-link a:hover {
    background: #000000;
    border: 2px solid #fff;
}

/*** Footer End ***/


/* Mobile: Align logo to the left */
@media (max-width: 767px) {
    .custom-logo {
        max-height: 40px !important;
        width: auto !important;
        height: auto !important;
    }

    a.navbar-brand {
        display: none!important;
    }

}

.team-card {
    overflow: hidden;
    position: relative;
}

.team-full-img {
    height: auto;
    object-fit: cover;
    transition: 0.4s;
}

.team-card:hover .team-full-img {
    transform: scale(1.05);
}

.team-hover {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.55);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transition: .3s ease-in-out;
}

.team-hover i {
    color: white;
    font-size: 22px;
    transition: .3s;
}

.team-hover i:hover {
    transform: scale(1.2);
}

.team-card:hover .team-hover {
    opacity: 1;
}
.work-card {
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.work-card img {
    transition: transform 0.5s ease;
}

.work-card:hover img {
    transform: scale(1.1);
}

.work-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    opacity: 0;
    transition: 0.4s;
}

.work-card:hover .work-hover {
    opacity: 1;
}

.work-hover i {
    font-size: 40px;
    color: #fff;
}

a.linkclass {
    color: #000!important;
}

.dropdown-menu {
    min-width: 20rem!important;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px; /* left side */
    background: #25D366;
    color: #fff;
    font-size: 28px;
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: 0.3s ease-in-out;
}

.whatsapp-float:hover {
    background: #1ebe5d;
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        left: 15px;
        width: 50px;
        height: 50px;
        font-size: 24px;
        line-height: 50px;
    }
}


.fact-section {
    background: #000;
    padding: 60px 0;
}

.fact-item {
    position: relative;
}

.fact-box {
    text-align: center;
    padding: 10px 20px;
}

.fact-number {
    font-size: 48px;
    font-weight: 700;
    color: #ff4f00; /* Dark Blue like screenshot */
    margin: 0;
}

.fact-heading {
    margin: 5px 0 0 0;
    font-size: 16px;
    color: #fff;
}

/* Vertical line between columns (desktop only) */
@media (min-width: 992px) {
    .fact-item:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background: #ccc; /* Light separator like screenshot */
    }
}

.testimonial-section {
    background: #fff;
    padding: 60px 60px;
}

.testimonial-title {
    color: #000;
    font-size: 36px;
    font-weight: 700;
}

.testimonial-subtitle {
    color: #000;
    font-size: 16px;
}

.testimonial-card {
    background: #000;
    padding: 30px 25px;
    border-radius: 15px;
    min-height: 340px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: relative;
}

.quote-icon {
    font-size: 30px;
    color: #ff4f00;
    font-weight: 700;
}

.testimonial-text {
    margin: 15px 0 30px;
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-user img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
}

.testimonial-user h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.testimonial-user small {
    color: #fff;
}

/* MAIN SECTION */
.scroll-sync-section {
  background: #000;
  color: #fff;
  padding: 100px 0;
  position: relative;
}

/* MAIN CONTAINER */
.scroll-sync-container {
  position: relative;
  width: 88%;
  margin: auto;
  display: flex;
  gap: 50px;
}

/* LEFT STICKY IMAGES */
.scroll-left {
  flex: 1;
  position: sticky;
  top: 120px;
  height: 500px;
}

.scroll-image-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
}

.scroll-img {
  position: absolute;
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.scroll-img.active {
  opacity: 1;
}

/* RIGHT CONTENT → ALWAYS CENTER */
.scroll-right {
  flex: 1;
  position: relative;
}

/* IMPORTANT → EACH BLOCK FULL SCREEN HEIGHT LIKE FRITZSTAFFING */
.scroll-text-block {
  min-height: 100vh;     /* full screen height */
  display: flex;
  flex-direction: column;
  justify-content: center; /* CENTER vertically */
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  position: relative;
  z-index: 2;
}

/* Only visible block */
.scroll-text-block.active {
  opacity: 1;
}

/* HEADINGS */
.scroll-text-block h3 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
}

.scroll-text-block p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* BUTTON */
.scroll-btn {
  background: #ff4f00;
  color: #000;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  width: 225px;
}

/* RIGHT SIDE INDICATORS (CENTER) */
.scroll-indicators {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}


.indicator {
  width: 6px;
  height: 22px;
  background: #7f93ad;
  border-radius: 10px;
  transition: 0.3s;
}

.indicator.active {
  height: 40px;
  background: #fff;
}

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

  .scroll-sync-container {
    flex-direction: column;
    width: 92%;
  }

  .scroll-left {
    position: relative;
    height: auto;
  }

  .scroll-image-wrapper,
  .scroll-img {
    height: 260px;
  }

  .scroll-indicators {
    display: none;
  }

  .scroll-text-block {
    min-height: auto;
    padding: 0px 0;
    opacity: 1;
  }

  .scroll-text-block h3 {
    font-size: 28px;
  }
}

/* Section styling */
.simple-client-section {
    padding-top:20px!important;
      padding-bottom:40px!important;
    background: #000;
    text-align: center;
}

/* Swiper slide box style */
.simpleClientSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
    transition: 0.3s ease;
}

/* Logo image */
.simpleClientSwiper img {
    max-width: 110px;
    height: auto;
    transition: .3s ease;
    border: 2px solid #b03700;
}

/* Smooth hover */
.simpleClientSwiper .swiper-slide:hover {
    box-shadow: 0px 8px 10px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.simpleClientSwiper img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Responsive */
@media(max-width: 768px) {
    .client-heading { font-size: 26px; }
    .simpleClientSwiper img { max-height: 90px; }
    .simple-client-section {
    padding: 30px 0;
}
    .custom-logo {
        max-width: 135px !important;
        width: auto !important;
        height: auto !important;
    }
}

/* =========================
   CTA STRIP SECTION
========================= */
.cta-strip {
    padding: 70px 20px;
    background: #ff4f00!important;
}

.cta-wrap {
    max-width: 900px;
    margin: auto;
    text-align: center;
    color: #fff;
}

/* Heading */
.cta-heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Text */
.cta-text {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Button */
.cta-action-btn {
    display: inline-block;
    padding: 14px 36px;
    background: #ffffff;
    color: #ff4f00!important;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-action-btn:hover {
    background: #222;
    color: #fff;
    transform: translateY(-2px);
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {
    .cta-strip {
        padding: 50px 15px;
    }

    .cta-heading {
        font-size: 26px;
    }

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

    .cta-action-btn {
        padding: 12px 28px;
        font-size: 15px;
    }
}


@media (min-width: 992px) {
  h1.text-white.mb-3.fontClass {
    font-size: 45px;
  }

  p.text-white.fonttite.mb-4 {
    font-size: 18px;
  }
}


/*Home page hero banner*/
.static-banner {
    position: relative;
    width: 100%;
}

.banner-img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60vh;
    background: #000000f0;
    z-index: 1;
}

.banner-caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60vh;
    z-index: 2;
}

.banner-content {
    max-width: 800px;
    margin: auto;
}

.rating-badge {
    background: rgb(255 79 0 / 83%);
    padding: 6px 16px;
    display: inline-block;
    border-radius: 6px;
    margin-bottom: 15px;
    color: #fff;
}

/* Button Style */
.banner-btn {
    background: #ff4f00;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    transition: 0.3s;
    animation: blinkButton 1.5s infinite ease-in-out;
}

/* Hover Effect */
.banner-btn:hover {
    background: #000;
}

/* Blinking Animation */
@keyframes blinkButton {
    0% { 
        box-shadow: 0 0 0px rgba(255, 79, 0, 0.7); 
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 15px rgba(255, 79, 0, 0.9); 
        transform: scale(1.05);
    }
    100% { 
        box-shadow: 0 0 0px rgba(255, 79, 0, 0.7); 
        transform: scale(1);
    }
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .banner-img,
    .banner-overlay,
    .banner-caption {
        height: 55vh;
    }

    h1 {
        font-size: 26px;
    }

    .banner-content p {
        font-size: 16px;
    }
}

/* ===============================
   BRAND BEE SECTION
================================ */

.brandbee-section {
    background: #000;
    padding: 100px 0;
    overflow: hidden;
}

.brandbee-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT IMAGE */
.brandbee-left {
    flex: 1;
}

.brandbee-img {
    width: 100%;
/*    max-width: 480px;*/
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(255,255,255,0.08);
    transition: transform 0.6s ease;
}

.brandbee-img:hover {
    transform: scale(1.05);
}

/* RIGHT CONTENT */
.brandbee-right {
    flex: 1;
    color: #fff;
}

.brandbee-right .sub-heading {
    color: #f47c20;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.brandbee-right .main-heading {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.brandbee-right p {
    color: #cfcfcf;
    font-size: 16px;
    line-height: 1.8;
    max-width: 520px;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 991px) {
    .brandbee-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .brandbee-right p {
        margin: auto;
    }

    .brandbee-right .main-heading {
        font-size: 34px;
    }
}

@media (max-width: 575px) {
    .brandbee-section {
        padding: 70px 0;
    }

    .brandbee-right .main-heading {
        font-size: 28px;
    }

    .brandbee-img {
        max-width: 100%;
    }
}

div#workbg {
    background: #000;
}

@media (max-width: 768px) {

    .scroll-left {
         top: auto;
    }
}

a:hover {
    color: #fff!important;
}

/* ===============================
   CONSULTATION POPUP
================================ */

.consult-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
}

.consult-popup.active {
    display: block;
}

/* Overlay */
.consult-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
}

/* Modal */
.consult-modal {
    position: relative;
    max-width: 460px;
    width: 90%;
    background: rgb(255 79 0 / 83%);
    margin: auto;
    top: 50%;
    transform: translateY(-50%) scale(0.9);
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    animation: popupFade 0.4s ease forwards;
}

/* Animation */
@keyframes popupFade {
    to {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
}

/* Close */
.consult-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
}

/* Text */
.consult-title {
    font-size: 26px;
    margin-bottom: 8px;
    color: #fff;
}

.consult-subtitle {
    font-size: 14px;
    color: #fff;
    margin-bottom: 20px;
}

/* Form */
.consult-form input,
.consult-form textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.consult-form textarea {
    resize: none;
    height: 90px;
}

/* Submit */
.consult-submit {
    width: 100%;
    padding: 14px;
    background: #f47c20!important;
    border: none;
    color: #fff;
    font-size: 16px;
    border-radius: 40px;
    cursor: pointer;
}

/* Mobile */
@media only screen and (max-width: 767px) {
    .footer-bottom-desktop {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
    }
}

.work-filter .nav-link {
    border-radius: 30px;
    padding: 8px 22px;
    font-weight: 500;
    color: #555;
    background: #f1f1f1;
    margin: 5px;
}

.work-filter .nav-link.active {
    background: #ff4f00;
    color: #fff;
}



.pricing-section {
  padding: 80px 20px;
  background: #f6f9fc;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 10px;
}
.section-title span {
  display: block;
  font-size: 16px;
  color: #666;
  margin-top: 8px;
}

.billing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 40px 0;
  font-weight: 500;
}

.billing-toggle small {
  color: #0d6efd;
}

.switch {
  position: relative;
  width: 50px;
  height: 26px;
}
.switch input {
  opacity: 0;
}
.slider {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 30px;
  cursor: pointer;
  transition: .3s;
}
.slider:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: .3s;
}
input:checked + .slider {
  background: #0d6efd;
}
input:checked + .slider:before {
  transform: translateX(24px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 30px;
  margin-top: 40px;
}

.pricing-card{
  position: relative;
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.35);
  transition: transform .4s ease, box-shadow .4s ease;
  background-size: 300% 300%;
  animation: gradientMove 14s ease infinite;
}

.pricing-card:hover{
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.pricing-card.bronze{
  background: linear-gradient(
    135deg,
    #3a2414,
    #5c3a1d,
    #2a170b
  );
}
.pricing-card.silver{
  background: linear-gradient(
    135deg,
    #3a0d05,
    #fb4e00,
    #2a0703
  );
  transform: scale(1.05);
}

.pricing-card.gold{
  background: linear-gradient(
    135deg,
    #3b2f0b,
    #d4a017,
    #2a2207
  );
}

.pricing-card h3 {
  font-size: 26px;
  margin-bottom: 5px;
}

.plan-subtitle {
  color: #fff;
  margin-bottom: 20px;
}

.price {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 25px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.pricing-card ul li {
  margin-bottom: 10px;
  color: #fff;
}
a.btnn {
  background: #000000;
  padding: 12px 26px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  transition: .3s;
}
a.btnn:hover {
  background: #0d6efd;
  color: #fff;
}

.primary {
  background: #0d6efd;
  color: #fff;
}

.gold-btn {
  background: linear-gradient(135deg,#f7c873,#d4a017);
  color: #fff;
  border: none;
}

.plan-meta{
  background:#000;
  padding:14px;
  border-radius:12px;
  font-size:14px;
}
/* FEATURES */
.plan-features{list-style:none;padding:0;margin:25px 0}
.plan-features li{
  padding-left:26px;
  text-align: left;
  margin-bottom:12px;
  position:relative;
}
.plan-features li::before {
    content: "\2714";
    position: absolute;
    left: 0;
    color: #fff;
    font-weight: 700;
}

/* IMPACT */
.plan-impact{
  background:#eef2ff;
  padding:16px;
  text-align: left;
  border-radius:14px;
  margin-bottom:25px;
}

.plan-impact p{
  color: #000!important;
  line-height: 10px;
}

.plan-impact h4{margin-bottom:8px}
.badge {
  background: #fb4e00;
  animation: pulseBg 2.5s ease-in-out infinite;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  position: absolute;
  margin-top: -55px;
}

.bronze { border-top: 5px solid #cd7f32; }
.silver { border-top: 5px solid #fb4e00; transform: scale(1.05); }
.gold   { border-top: 5px solid #d4a017; }

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

@media(max-width:768px){
  .silver { transform: none; }
      .pricing-section {
      padding: 40px 0px;
    }
   .section-title {
    font-size: 26px;
 }
}
