
                            @import url('https://fonts.cdnfonts.com/css/bricolage-grotesque');

                
  
     .header {
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 10;
            background: transparent;
            
        }
        .menu-logo {
  display: none;
}

        .nav-left {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .nav-left a {
            color: #ffffff;
            text-decoration: none;
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 0.5px;
            transition: opacity 0.3s ease;
            text-transform: uppercase;
        }

        .nav-left a:hover {
            opacity: 0.7;
        }

        .nav-right {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .pricing {
            color: #ffffff;
            text-decoration: none;
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 0.5px;
            transition: opacity 0.3s ease;
            text-transform: uppercase;
        }

        .pricing:hover {
            opacity: 0.7;
        }

        .contact-btn {
            background: transparent;
            border: 2px solid #f39c12;
            color: #ffffff;
            padding: 8px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .contact-btn:hover {
            background: #f39c12;
            color: #000000;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(243, 156, 18, 0.3);
        }

        /* Hamburger menu for mobile */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
            padding: 5px;
        }
        .menu-logo {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: black; /* change to white if menu has dark bg */
  letter-spacing: 2px;}

        .mobile-menu-toggle span {
            width: 25px;
            height: 2px;
            background: #ffffff;
            transition: all 0.3s ease;
        }

        .mobile-menu {
    display: none;
    position: absolute;
    top: 73%;
    left: 0;
    right: 0;
    background: rgb(255 255 255 / 95%);
    backdrop-filter: blur(20px);
    padding: 20px;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    width: 356px;
    margin: auto;
    border-radius: 20px;
    color: black;
}

        .mobile-menu.active {
            display: flex;
        }

        .mobile-menu a {
            color: black;
            text-decoration: none;
            font-size: 16px;
            font-weight: 400;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            padding: 10px 0;
            transition: opacity 0.3s ease;
            font-family: 'Bricolage Grotesque';
        }

        .mobile-menu a:hover {
            opacity: 0.7;
        }

        .demo-content {
            padding: 60px 20px;
            text-align: center;
            color: #ffffff;
        }

        .demo-content h1 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .demo-content p {
            font-size: 16px;
            opacity: 0.7;
            max-width: 400px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Mobile First - Small phones (up to 575px) */
        @media (max-width: 575px) {
            .header {
                padding: 15px 20px;
            }

            .nav-left,
            .nav-right {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .demo-content h1 {
                font-size: 28px;
            }

            .demo-content p {
                font-size: 14px;
            }
        }

        /* Tablets (576px to 767px) */
        @media (min-width: 576px) and (max-width: 767px) {
            .header {
                padding: 11px 25px;
            }

            .nav-left {
                gap: 25px;
            }

            .nav-right {
                gap: 15px;
            }

            .nav-left a,
            .pricing {
                font-size: 13px;
            }

            .contact-btn {
                padding: 6px 16px;
                font-size: 11px;
            }

            .demo-content {
                padding: 70px 25px;
            }

            .demo-content h1 {
                font-size: 36px;
            }

            .demo-content p {
                font-size: 17px;
                max-width: 500px;
            }
        }

        /* Medium tablets (768px to 1023px) */
        @media (min-width: 768px) and (max-width: 1023px) {
            .header {
                padding: 20px 30px;
            }

            .nav-left {
                gap: 40px;
            }

            .nav-right {
                gap: 25px;
            }

            .nav-left a,
            .pricing {
                font-size: 16px;
            }

            .contact-btn {
                padding: 10px 24px;
                font-size: 14px;
            }

            .demo-content {
                padding: 80px 30px;
            }

            .demo-content h1 {
                font-size: 42px;
            }

            .demo-content p {
                font-size: 19px;
                max-width: 600px;
            }
        }

        /* Desktop (1024px to 1439px) */
        @media (min-width: 1024px) and (max-width: 1439px) {
            .header {
                padding: 25px 40px;
            }

            .nav-left {
                gap: 50px;
            }

            .nav-right {
                gap: 35px;
            }

            .nav-left a,
            .pricing {
                font-size: 17px;
            }

            .contact-btn {
                padding: 11px 28px;
                font-size: 15px;
            }

            .demo-content {
                padding: 100px 40px;
            }

            .demo-content h1 {
                font-size: 48px;
            }

            .demo-content p {
                font-size: 20px;
                max-width: 600px;
            }
        }

        /* Large screens (1440px and up) */
        @media (min-width: 1440px) {
            .header {
    padding: 32px 60px;
}
            .nav-left {
                gap: 80px;
            }

            .nav-right {
                gap: 40px;
            }

            .nav-left a,
            .pricing {
                font-size: 18px;
            }

            .contact-btn {
                padding: 14px 36px;
                font-size: 18px;
            }

            .demo-content {
                padding: 120px 60px;
            }

            .demo-content h1 {
                font-size: 56px;
            }

            .demo-content p {
                font-size: 22px;
            }
        }

        /* Extra large screens (1920px and up) */
        @media (min-width: 1920px) {
            .header {
                padding: 35px 80px;
            }

            .nav-left {
                gap: 100px;
            }

            .nav-left a,
            .pricing {
                font-size: 18px;
            }

            .contact-btn {
                padding: 16px 40px;
                font-size: 20px;
            }

            .demo-content {
                padding: 150px 80px;
            }

            .demo-content h1 {
                font-size: 64px;
            }

            .demo-content p {
                font-size: 24px;
                max-width: 800px;
            }
        }

        /* Ultra-wide screens (2560px and up) */
        @media (min-width: 2560px) {
            .header {
                padding: 40px 100px;
            }

            .nav-left {
                gap: 120px;
            }

            .nav-left a,
            .pricing {
                font-size: 24px;
            }

            .contact-btn {
                padding: 18px 45px;
                font-size: 22px;
            }

            .demo-content {
                padding: 180px 100px;
            }

            .demo-content h1 {
                font-size: 72px;
            }

            .demo-content p {
                font-size: 26px;
                max-width: 1000px;
            }
        }
        
        
        
        
       
/* Mobile: show logo left, hamburger right */
@media (max-width: 575px) {
  /* hide desktop navs */
  .nav-left,
  .nav-right {
    display: none;
  }

  /* show logo */
  .menu-logo {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-top: 10px;
}

  /* align header with logo left + hamburger right */
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* show hamburger */
  .mobile-menu-toggle {
    display: flex;
  }
}


        
        /*mobile header*/
     
        
        /*mobileheader end*/

.footer {
    background-color: #1a1a1a;
    padding: 40px 0px 277px;
    position: relative;
    overflow: hidden;
}

       .footer-content {
    /* max-width: 100%; */
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
}

        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 40px;
        }

        .footer-left {
            max-width: 320px;
        }

        .tagline {
            font-size: 16px;
            line-height: 1.5;
            color: #ffffff;
            font-weight: 400;
            margin-bottom: 40px;
        }

        .contact-section h3 {
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 16px;
            color: #ffffff;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .contact-info p {
            font-size: 16px;
            color: #ffffff;
            font-weight: 400;
        }

        .footer-nav {
    display: flex;
    gap: 60px;
}

        .nav-column h4 {
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 16px;
            color: #ffffff;
        }

        .nav-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 0px;
}

        .nav-column ul li a {
            color: #ffffff;
            text-decoration: none;
            font-size: 16px;
            font-weight: 400;
            transition: opacity 0.2s ease;
        }

        .nav-column ul li a:hover {
            opacity: 0.7;
        }

        .showman-bg {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 300px;
    font-weight: 700;
    color: rgb(255 255 255);
    letter-spacing: -0.05em;
    line-height: 1;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

        @media (max-width: 1200px) {
            .footer-nav {
                gap: 60px;
            }
            
            .showman-bg {
                font-size: 150px;
            }
        }

        @media (max-width: 1024px) {
            .footer {
                padding: 40px 40px 20px;
            }
            
            .footer-top {
                flex-direction: column;
                gap: 40px;
            }

            .footer-nav {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 40px;
                width: 100%;
            }

            .showman-bg {
                font-size: 120px;
            }
        }

        @media (max-width: 768px) {
            .footer {
                padding: 30px 20px 20px;
            }

            .footer-nav {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .showman-bg {
                font-size: 80px;
            }
        }

        @media (max-width: 480px) {
            .footer-nav {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .showman-bg {
                font-size: 89px;
                 bottom: -7px;
            }
           
        }

 @media (max-width: 575px) {
     .footer-content {
    padding-left: 0px;
    padding-right: 0px;
}
.footer-nav {
    grid-template-columns: repeat(3, 2fr);
    gap: 10px;
}
 }


section.tune {
    padding-top: 18px;
    margin-top: -132px;
}

.video-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

video#myVideo {
  width: 100%;
  height: 106vh;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.video-heading {
  position: absolute;
  bottom: -78px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 18rem;
  font-weight: bold;
  text-align: center;
  /* background: rgba(0, 0, 0, 0.4); */
  padding: 10px 20px;
  border-radius: 10px;
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
}

.container.banner-vedio {
  max-width: 1906px;
  width: 100%;
  margin: 0 auto;
}

/* --- Fixes & Responsive Tweaks --- */
.video-wrapper {
  overflow: hidden; /* stop text from distorting layout */
}

.video-heading {
    bottom: 10%;
    line-height: 0.9;
    margin: 0;
    padding: 0;
    font-size: clamp(3rem, 18vw, 20rem);
    z-index: 2;
    pointer-events: none;
    margin-bottom: -60px;
}

/* Tablets */
@media (max-width: 1024px) {
  video#myVideo {
    height: 100vh;
  }
  .video-heading {
    font-size: clamp(2.5rem, 16vw, 12rem);
  }
}

/* Mobiles */
@media (max-width: 768px) {
  video#myVideo {
    height: 100vh;
  }
  .video-heading {
    font-size: clamp(2rem, 18vw, 8rem);
  }
}

/* Small phones */
@media (max-width: 575px) {
  video#myVideo {
    height: 400px;
    border-radius: 10px;
}
section.tune {
    padding-top: 18px;
    margin-top: -127px;
}
 .video-heading {
    font-size: 61px;
}
.video-heading {
    bottom: 14%;
    font-weight: 900;
    letter-spacing: -4.9px;
    font-size: 67px;
    
}
}



/*fliptext*/

  .hero-brand-section {
            background-color: #ffffff;
            padding: 80px 0;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .main-hero-text {
            font-family: 'Bricolage Grotesque';
            font-weight: 700;
            color: #1a1a1a;
            line-height: 0.9;
            text-align: center;
            letter-spacing: 1.1px;
        }

     .hero-text-line-1 {
    margin-bottom: 0.2em;
    font-size: 5.9rem;
    font-family: 'Bricolage Grotesque';
    font-weight: 900;
    letter-spacing: -0.9px;
    margin-top: 34px;
}

        .hero-text-line-2 {
            font-size: 5.9rem;
    font-family: 'Bricolage Grotesque';
    font-weight: 900;
    letter-spacing: -0.9px;
    margin-bottom: 0.2em;
    color:rgb(236,30,30);
        }

        .hero-text-line-3 {
           font-size: 5.9rem;
    font-family: 'Bricolage Grotesque';
    font-weight: 900;
    letter-spacing: -0.9px;
    margin-bottom: 0.2em;
        }

        .hero-text-line-4 {
            font-size: 5.9rem;
    font-family: 'Bricolage Grotesque';
    font-weight: 900;
    letter-spacing: -0.9px;
    margin-bottom: 0.2em;
}

        .hero-text-line-5 {
            font-size: 5.9rem;
    font-family: 'Bricolage Grotesque';
    font-weight: 900;
    letter-spacing: -0.9px;
    margin-bottom: 0.2em;
        }

        .lyre-brand-logo {
            display: inline-block;
            vertical-align: middle;
            margin: 0 20px;
            position: relative;
            top: -10px;
        }

        .lyre-logo-circle {
            width: 80px;
            height: 80px;
            background-color: #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
            font-weight: bold;
            position: relative;
        }

        .lyre-logo-text {
            transform: rotate(-15deg);
        }

        .asahi-brand-logo {
            display: inline-block;
            vertical-align: middle;
            margin: 0 30px;
            /* border: 2px solid #333; */
            padding: 10px 20px;
            position: relative;
            perspective: 1000px;
            top: -5px;
            --s: 20px;
            /* the size on the corner */
            border: 3px solid #000000;
            /* the thickness and color */
            -webkit-mask: conic-gradient(at var(--s) var(--s), #0000 75%, #000 0) 0 0 / calc(100% - var(--s)) calc(100% - var(--s)),
                linear-gradient(#000 0 0) content-box;
            border-radius: 3px;
        }

        .asahi-flip-card {
            width: 185px;
            height: 60px;
            position: relative;
            transform-style: preserve-3d;
            animation: flipCardCycle 12s infinite ease-in-out;
        }

        .asahi-flip-front,
        .asahi-flip-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 8px;
            overflow: hidden;
        }

        .asahi-flip-front {
            transform: rotateX(0deg);
        }

        .asahi-flip-back {
            transform: rotateX(180deg);
        }

        .asahi-flip-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        @keyframes flipCardCycle {
            0% {
                transform: rotateX(0deg);
            }

            8.33% {
                transform: rotateX(180deg);
            }

            50% {
                transform: rotateX(180deg);
            }

            58.33% {
                transform: rotateX(360deg);
            }

            100% {
                transform: rotateX(360deg);
            }
        }

        .diageo-brand-logo {
            display: inline-block;
            vertical-align: middle;
            margin: 0 30px;
            font-family: "Arial", sans-serif;
            font-weight: bold;
            font-size: 2.5rem;
            color: #333;
            border: 2px solid #333;
            padding: 15px 25px;
            position: relative;
            top: -5px;
        }

       .hero-tagline-text {
    font-family: "Georgia", serif;
    font-style: italic;
    font-size: 2rem;
    color: #666;
    text-align: center;
    margin-top: 114px;
    font-weight: 300;
}

        /* Mobile Responsive Design to Match Image */
        @media (max-width: 768px) {
            .hero-brand-section {
                background-color:white;
                padding: 40px 20px;
                min-height: auto;
            }

            .main-hero-text {
                text-align: left;
                letter-spacing: -2px;
                line-height: 0.85;
            }

            .hero-text-line-1,
            .hero-text-line-2,
            .hero-text-line-3,
            .hero-text-line-4,
            .hero-text-line-5 {
                font-size: 3.2rem;
                line-height: 0.85;
                margin-bottom: 0;
            }

            .asahi-brand-logo {
                margin: 0 8px;
                padding: 4px 8px;
                top: 0;
                --s: 12px;
            }

            .asahi-flip-card {
                width: 80px;
                height: 30px;
            }

            .hero-tagline-text {
                text-align: left;
                font-size: 1.1rem;
                margin-top: 25px;
            }
        }

        @media (max-width: 576px) {
            .hero-brand-section {
                padding: 30px 15px;
                padding-top: 0px;
            }

            .hero-text-line-1,
            .hero-text-line-2,
            .hero-text-line-3,
            .hero-text-line-4,
            .hero-text-line-5 {
                font-size: 2.3rem;
            }

            .asahi-flip-card {
                width: 65px;
                height: 25px;
            }

            .asahi-brand-logo {
                margin: 0 6px;
                padding: 3px 6px;
            }

            .hero-tagline-text {
                font-size: 1rem;
            }
        }

        @media (max-width: 375px) {
            .hero-brand-section {
                padding: 25px 12px;
            }

            .main-hero-text {
                letter-spacing: -1px;
            }

            .hero-text-line-1,
            .hero-text-line-2,
            .hero-text-line-3,
            .hero-text-line-4,
            .hero-text-line-5 {
                font-size: 2.2rem;
            }

            .asahi-flip-card {
                width: 55px;
                height: 22px;
            }

            .asahi-brand-logo {
                margin: 0 4px;
                padding: 2px 4px;
                --s: 8px;
            }

            .hero-tagline-text {
                font-size: 0.9rem;
            }
        }

/*flip end*/
        
        
        /*gsp*/
        
      .spacer {
  height: 100vh;
  background: #f7f3ed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #666;
  text-align: center;
  padding: 0 20px;
}

/* Main services section */
.services-wrapper {
  position: relative;
  height: 500vh;
  background: #f7f3ed;
  margin: 0;
  padding: 50px 0;
}

/* Fixed center content */
.center-content {
  position: sticky;
  top: 10%;
  left: 0%;
  transform: translate(0%, -8%);
  z-index: 100;
  text-align: center;
  pointer-events: none;
  font-family: "Poppins", sans-serif;
  flex-wrap: nowrap;
  display: flex;
  flex-direction: column;
}

.services-title {
  font-size: 90px;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.1;
  font-family: "Poppins", sans-serif;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  color: rgba(136, 136, 136, 0.7);
  position: relative;
}

/* Moving container */
.services-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  will-change: transform;
  padding: 0 30px;
}

/* Side columns */
.services-column {
  width: 24%;
  display: flex;
  flex-direction: column;
  gap: 120vh;
  will-change: transform;
}

.services-column.left {
  align-items: flex-start;
  padding-top: 80vh;
}

.services-column.right {
  align-items: flex-end;
  padding-top: 170vh;
}

/* Service cards */
.service-card {
  width: 100%;
  max-width: 438px;
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform, opacity;
  cursor: pointer;
  opacity: 0;
}

h2.services-title {
  margin-top: 18px;
  font-size: 90px;
  font-feature-settings: "kern" off;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  letter-spacing: -4.4px;
  font-feature-settings: "kern" off;
  font-kerning: none;
  color: #666;
  position: relative;
  display: inline-block;
  overflow: hidden;
  background: linear-gradient(to bottom, #666 20%, #666 20%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 100% 200%;
  background-position: bottom;
  transition: background-position 0.8s cubic-bezier(0.8, 0, 1, 1);
}

.services-title.active {
  background: linear-gradient(to bottom, black 50%, #666 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 100% 200%;
  background-position: top;
}

.service-image {
  width: 100%;
  height: 316px;
  position: relative;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.service-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.service-card:hover .service-image::before {
  opacity: 1;
}

.services-label {
  font-size: 25px;
  color: #986c32;
  margin-bottom: 40px;
  font-weight: 400;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
}

.service-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  transition: left 0.8s ease;
  z-index: 2;
}

.service-card:hover .service-image::after {
  left: 100%;
}

.service-content {
  padding: 30px 0px;
  background: transparent;
  border-radius: 0 0 12px 12px;
}

.service-description {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 24px;
  font-family: "Poppins", sans-serif;
  letter-spacing: 1.6px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  color: #000;
  text-decoration: none;
  font-size: 26px;
  pointer-events: auto;
  position: relative;
  padding: 8px 0;
  line-height: 100%;
  letter-spacing: normal;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  border-bottom: 0.1px solid #000;
}

.service-link::after {
  content: '→';
  margin-left: 10px;
  transition: transform 0.3s ease;
  font-size: 1.1em;
}

.service-link:hover::after {
  transform: translateX(5px);
}

/* Service backgrounds */
.service-ux .service-image {
  background-image: url(https://showmancreative.com/wp-content/uploads/2025/09/Copy-of-Untitled-scaled.png);
  background-size: cover;
  background-position: center;
  border-radius: 11px;
}

.service-web .service-image {
  background-image: url(https://showmancreative.com/wp-content/uploads/2025/09/Copy-of-Untitled-5.png);
  background-size: cover;
  background-position: center;
  border-radius: 11px;
}

.service-dashboard .service-image {
  background-image: url(https://showmancreative.com/wp-content/uploads/2025/09/Copy-of-Untitled-2.png);
  background-size: cover;
  background-position: center;
  border-radius: 11px;
}

.service-branding .service-image {
  background-image: url(https://showmancreative.com/wp-content/uploads/2025/09/Copy-of-Untitled-3.png);
  background-size: cover;
  background-position: center;
  border-radius: 11px;
}

/* Progress indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #4ade80, #22c55e, #16a34a);
  z-index: 1000;
  transition: width 0.1s ease-out;
}

/* ✅ Responsive Design Fixes */

/* Large desktops */
@media (min-width: 1600px) {
  .services-wrapper {
    max-width: 100%;
    margin: 0 auto;
  }
     
  .services-container {
    gap: 100vh;
  }
  .container-ind {
    max-width: 1900px;
   
}

  .services-title {
    font-size: clamp(5rem, 6vw, 120px);
  }

  .services-column {
    gap: 140vh;
  }

  .service-card {
    max-width: 500px;
  }

  .service-link {
    font-size: 28px;
  }
}


/* Medium desktops & tablets */
@media (max-width: 1699px){
    .services-column{
        width: 25%;
    }
       
    h2.services-title{
        font-size: 64px;
        margin-top: 0;
        line-height: 1.3;
    }
    .service-description {
    font-size: 18px;
    line-height: 1.5;
    font-family: 'Bricolage Grotesque';
    letter-spacing: -0.9px;
  }
  .services-label {
    font-size: 22px;
    font-family: 'Bricolage Grotesque';
  }
  .service-link {
    font-size: 16px;
  }
    .service-image{
      height: 222px;
  }
}
@media (max-width: 1200px) {
  .services-column {
    width: 45%;
    gap: 100vh;
  }
  .service-card {
    max-width: 380px;
  }
      
}

@media (max-width: 1024px) {
   
  .services-wrapper {
    height: 400vh;
  }
  .services-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
  }
  .services-column {
    width: 100%;
    gap: 60vh;
    align-items: center !important;
  }
  .service-card {
    max-width: 90%;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .services-wrapper {
    height: auto;
    padding-bottom: 10vh;
  }
  .center-content {
    top: 5%;
    transform: translateY(0);
    padding: 0 10px;
  }
  .services-label {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .services-title {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }
  .services-container {
    flex-direction: column;
    gap: 40vh;
    padding: 0 20px;
  }
  .services-column {
    width: 100%;
    max-width: 400px;
    gap: 50vh;
    align-items: center !important;
  }
  .service-card {
    max-width: 100%;
  }
  .service-image {
    height: 200px;
  }
  .service-content {
    padding: 24px 20px;
  }
  .service-description {
    font-size: 14px;
    line-height: 1.5;
  }
  .service-link {
    font-size: 20px;
  }
}

/* Small mobiles */
@media (max-width: 480px) {
  .center-content {
    top: 2%;
    padding: 0 5px;
  }
  .services-label {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .services-title {
    font-size: clamp(1.5rem, 10vw, 2.2rem);
  }
  .services-container {
    padding: 0 15px;
    gap: 30vh;
  }
  .services-column {
    gap: 40vh;
  }
  .service-image {
    height: 180px;
  }
  .service-content {
    padding: 16px 12px;
  }
  .service-description {
    font-size: 14px;
  }
  .service-link {
    font-size: 18px;
  }
  .hero-arrow {
    width: 32px!important;
    height: auto;
}
}

   
        /*gsap end*/
        
        
        /*mobileversion*/
        
        /* Mobile services section */
        .mobile-services-wrapper {
    position: relative;
    background: #f7f3ed;
    margin: 0;
    padding: 50px 20px;
    min-height: 100vh;
    display: none;
}
        /* Center heading only */
        .mobile-header {
            text-align: center;
            margin-bottom: 0px;
           
            top: 20px;
            z-index: 100;
            background: #f7f3ed;
            padding: 20px 0;
        }

        .mobile-services-label {
            font-size: 23px;
            color: #986c32;
            margin-bottom: 20px;
            font-weight: 400;
            letter-spacing: 1px;
            font-family: "Poppins", sans-serif;
        }

        /* Cards container */
        .mobile-services-container {
            display: flex;
            flex-direction: column;
            gap: 40px;
            align-items: center;
            max-width: 400px;
            margin: 0 auto;
        }

        /* Mobile service cards */
        .mobile-service-card {
            width: 100%;
            max-width: 380px;
            background: transparent;
            border-radius: 12px;
            overflow: hidden;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            will-change: transform, opacity;
            cursor: pointer;
            opacity: 1;
        }

        .mobile-service-image {
            width: 100%;
            height: 200px;
            position: relative;
            overflow: hidden;
            border-radius: 12px 12px 0 0;
        }

        .mobile-service-image::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, transparent 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
            z-index: 1;
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .mobile-service-card:hover .mobile-service-image::before {
            opacity: 1;
        }

        .mobile-service-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
            transition: left 0.8s ease;
            z-index: 2;
        }

        .mobile-service-card:hover .mobile-service-image::after {
            left: 100%;
        }

        .mobile-service-content {
            padding: 24px 20px;
            background: transparent;
            border-radius: 0 0 12px 12px;
        }

       .mobile-service-description {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 24px;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.2px;
}
        .mobile-service-link {
            display: inline-flex;
            align-items: center;
            color: #000;
            text-decoration: none;
            font-size: 18px;
            pointer-events: auto;
            position: relative;
            padding: 8px 0;
            line-height: 100%;
            letter-spacing: normal;
            font-weight: 400;
            font-family: "Poppins", sans-serif;
            border-bottom: 0.1px solid #000;
        }

        .mobile-service-link::after {
            content: '→';
            margin-left: 10px;
            transition: transform 0.3s ease;
            font-size: 1.1em;
        }

        .mobile-service-link:hover::after {
            transform: translateX(5px);
        }

        /* Service backgrounds */
        .mobile-service-ux .mobile-service-image {
            background-image: url(https://showmancreative.com/wp-content/uploads/2025/09/Copy-of-Untitled-scaled.png);
            background-size: cover;
            background-position: bottom center;
    border-radius: 11px;
    background-repeat: no-repeat;
        }

        .mobile-service-web .mobile-service-image {
            background-image: url(https://showmancreative.com/wp-content/uploads/2025/09/Copy-of-Untitled-5.png);
            background-size: cover;
           background-position: bottom center;
    border-radius: 11px;
    background-repeat: no-repeat;
        }

        .mobile-service-dashboard .mobile-service-image {
            background-image: url(https://showmancreative.com/wp-content/uploads/2025/09/Copy-of-Untitled-2.png);
            background-size: cover;
            background-position: bottom center;
    border-radius: 11px;
    background-repeat: no-repeat;
        }

        .mobile-service-branding .mobile-service-image {
            background-image: url(https://showmancreative.com/wp-content/uploads/2025/09/Copy-of-Untitled-3.png);
            background-size: cover;
            background-position: bottom center;
    border-radius: 11px;
    background-repeat: no-repeat;
        }

        /* Animation for cards appearing one by one */
        .mobile-service-card {
            opacity: 0;
            transform: translateY(30px);
            animation: slideInUp 0.8s ease forwards;
        }

        .mobile-service-card:nth-child(1) {
            animation-delay: 0.2s;
        }

        .mobile-service-card:nth-child(2) {
            animation-delay: 0.4s;
        }

        .mobile-service-card:nth-child(3) {
            animation-delay: 0.6s;
        }

        .mobile-service-card:nth-child(4) {
            animation-delay: 0.8s;
        }

        @keyframes slideInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Small mobile adjustments */
        @media (max-width: 480px) {
            .services-wrapper {
   
    display: none;
}
            .mobile-services-wrapper {
   
    display: block;
}
            .mobile-services-wrapper {
                padding: 30px 15px;
            }

            .mobile-services-label {
                font-size: 22px;
                margin-bottom: 15px;
            }

            .mobile-service-image {
                height: 180px;
            }

            .mobile-service-content {
                padding: 16px 12px;
            }

            .mobile-service-description {
                font-size: 16px;
            }

            .mobile-service-link {
                font-size: 16px;
            }
        }
        
        /*mobileversion end*/
        
      
 .testor{
    background-color: #EFEEEC;
    padding-top: 60px;
    padding-bottom: 60px;
} 
/* Swiper controls wrapper */
.swiper-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

/* Pagination (dots) */
.swiper-pagination {
  flex-grow: 1;
  text-align: center;
}

/* Next/Prev buttons */
.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: var(--swiper-navigation-top-offset,50%);
    width: 52px;
    height: 49px;
    /* height: var(--swiper-navigation-size); */
    margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    /* color: var(--swiper-navigation-color,var(--swiper-theme-color)); */
    color: #000000;
    background-color: transparent;
}

/* Button hover */
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--theme-primary-dark, #0056b3);
  transform: scale(1.05);
}

/* Change default arrow icons color */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 480px) {
  .swiper-controls {
    flex-direction: column;
    gap: 8px;
  }

  .swiper-pagination {
    order: 2; /* keep dots below buttons */
  }
}



.container-ind {
            max-width: 1900px;
            margin: 0 auto;
            
            padding: 60px 40px;
            position: relative;
        }
        
        .main-heading {
            font-size: clamp(4rem, 12vw, 8rem);
            font-weight: 500;
            color: #2d3436;
            line-height: 0.85;
            letter-spacing: -0.02em;
            margin-bottom: 0;
             font-family: Arial, sans-serif;
        }
        
        .subtext {
            position: absolute;
            right: 40px;
            bottom: 80px;
            font-family: Arial, sans-serif;
            font-size: 18px;
            font-weight: 400;
            color: #636e72;
            text-align: right;
            line-height: 1.4;
            
        }
        .testo-divider {
    width: 100%;
    height: 1px;
    background-color: white;
    margin-bottom: 25px;
    
}
        
        .divider {
            width: 100%;
            height: 1px;
            background-color: #2d3436;
            margin-top: 40px;
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 40px 20px;
            }
            
            .subtext {
                position: static;
                text-align: left;
                margin-top: 30px;
                max-width: 100%;
            }
        }


      .reviews-grid {
    max-width: 1900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    padding-top: 22px;
    padding: 10px 40px;
}

        .review-item {
            background: #e8e9ea;
            border-radius: 16px;
            padding: 24px;
            position: relative;
            min-height: 280px;
            display: flex;
            flex-direction: column;
        }

        .profile-pic {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: #4a5568;
            background-size: cover;
            background-position: center;
            margin-bottom: 16px;
            object-fit: cover;
        }

        .profile-pic img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }

      .card-info-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 30px;
    height: 29px;
    background: #d6d6d1;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    font-weight: bold;
}

        .rating-stars {
            display: flex;
            gap: 2px;
            margin-bottom: 20px;
        }

        .rating-star {
            width: 16px;
            height: 16px;
            color: #1f2937;
            fill: currentColor;
        }

      .review-content {
    flex: 1;
    font-size: 16px;
    line-height: 1.5;
    color: #374151;
    margin-bottom: 20px;
    font-family: Poppins, sans-serif;
    font-weight: 400;
}
        .reviewer-details {
            margin-top: auto;
        }

       .reviewer-name {
  
    font-weight: 400;
    color: #1f2937;
    font-size: 19px;
    margin-bottom: 2px;
    font-family: Poppins, sans-serif;
}
        .reviewer-role {
            color: #6b7280;
            font-size: 14px;
            margin-bottom: 2px;
             font-family: Poppins, sans-serif;
        }

        .reviewer-company {
            color: #6b7280;
            font-size: 14px;
            font-family: Poppins, sans-serif;
        }

        @media (max-width: 768px) {
            .reviews-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
           
        }
          @media (max-width: 575px) {
           .container-ind {
    padding: 20px 10px;
}
.main-heading {
font-size: 35px;
line-height: 1.1;
}
.subtext {
   font-size: 14px;
line-height: 1.5;
}
.reviews-grid {
   padding: 10px 10px;
}
          }
       
        
        /**/
        
        
           .container-lets {
   
    position: relative;
    padding: 40px;
    padding-top: 105px;
    padding-bottom: 90px;
}

        .main-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  
    margin: auto;
    overflow: hidden;
}

       .left-text {
    font-size: 300px;
    /* font-weight: 500; */
    color: #333;
    letter-spacing: -8px;
    line-height: 0.8;
    font-family: "Poppins", sans-serif;
}

        .right-text {
            font-size: 300px;
    /* font-weight: 500; */
    color: #333;
    letter-spacing: -8px;
    line-height: 0.8;
    font-family: "Poppins", sans-serif;
        }

       .center-section {
    position: absolute;
    left: 53%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

      .team-card {
    background: white;
    border-radius: 16px;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    min-width: 479px;
    padding-left: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
}
        .team-photo {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    background: url('https://framerusercontent.com/images/0YbymN8GFN9zCjXEIlgK0hfWNvo.jpeg" viewBox="0 0 60 60"><rect width="60" height="60" fill="%23ddd"/><g fill="%23999"><circle cx="15" cy="20" r="6"/><circle cx="30" cy="18" r="6"/><circle cx="45" cy="22" r="6"/><circle cx="20" cy="35" r="6"/><circle cx="40" cy="38" r="6"/></g></svg>') center/cover;
    flex-shrink: 0;
}
.team-photo img {
    width: 100%;
    border-radius: 6px;
}
.team-text {
    color: #333;
    display: grif;
    display: grid;
    gap: 34px;
}
.team-text h3 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 4px;
}

       .team-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 0px;
}
       
.message-interface {
    
    display: flex;
    align-items: center;
    /* gap: 12px; */
    /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); */
    min-width: 482px;
}

        .attachment-icon {
            width: 20px;
            height: 20px;
            color: #999;
            cursor: pointer;
        }

        .message-input {
            flex: 1;
            border: none;
            outline: none;
            font-size: 16px;
            color: #666;
            background: transparent;
        }

        /*.send-button {*/
        /*    background: none;*/
        /*    border: none;*/
        /*    cursor: pointer;*/
        /*    color: #999;*/
        /*    padding: 8px;*/
        /*    border-radius: 8px;*/
        /*    transition: all 0.2s ease;*/
        /*}*/
.send-button {
    border-radius: 161px;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    padding: 8px;
    border-radius: 67px;
    transition: all 0.2s ease;
    width: 200px;
    background-color: #FFFDD0;
    padding: 18px;
}
        .send-button:hover {
            background: #f8f9fa;
            color: #333;
        }

        .send-icon {
            width: 20px;
            height: 20px;
        }
        
        @media (max-width: 1699px) {
.left-text, .right-text {
                font-size: 200px;
            }
             .main-content {
  max-width: 1500px;
    
    
}
   
}
        }

        @media (max-width: 1200px) {
            .left-text, .right-text {
                font-size: 120px;
            }
            
            .container {
                padding: 20px;
            }
        }

        @media (max-width: 768px) {
            .main-content {
                flex-direction: column;
                gap: 40px;
            }

            .left-text, .right-text {
                font-size: 80px;
            }

            .center-section {
                position: static;
                transform: none;
            }

            .team-card, .message-interface {
                min-width: 280px;
            }
        }
       
        @media (max-width: 575px) {
.team-card {
   min-width: 333px;
    
}
.message-interface {
    width: 354px;
}
.container-lets {
    position: relative;
    padding: 0px;
    padding-top: 50px;
    padding-bottom: 50px;
}
.send-icon {
    width: 28px;
    height: 8px;
    
}
.send-button {
   
    padding: 9px;
}
 .left-text, .right-text {
                font-size: 130px;
            }
        }
       
       
       
   
/*New Gsap Section Start*/


@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



/* horizontal scroll */

#horizontal-scoll {
  padding: 0px 0 50px;
}

.horizontal-scoll-wrapper {
  overflow: hidden;
  height: 100vh;
}

.horizontal {
  display: flex;
  height: 100%;
}

.horizontal > div {
  display: flex;
  flex-shrink: 0;
}

.horizontal > div:first-child {
  padding: 0 0 0 15px;
}


.horizontal .card {
  background-color: #f8f6f3;
  color: #333335;
  width: 600px;
  padding: 50px 40px;
  border-radius: 0;
  transition: background 0.3s ease;
  overflow: hidden;
}

.horizontal .card::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: scale(1);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  z-index: 0;
}
.horizontal .card1::before{
    background: url(https://showmancreative.com/wp-content/uploads/2025/09/d3e7452e-8f5f-4d06-a053-395fdf7d8f5b.jpeg);
      background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.horizontal .card2::before{
    background: url(https://showmancreative.com/wp-content/uploads/2025/09/9-scaled.png);
      background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.horizontal .card3::before{
    background: url(https://showmancreative.com/wp-content/uploads/2025/09/8-scaled.png);
      background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.horizontal .card4::before{
    background: url(https://showmancreative.com/wp-content/uploads/2025/09/7-scaled.png);
      background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.horizontal .card:hover::before {
  transform: scale(1.2);
  opacity: 1;
}
.horizontal .card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3); /* adjust opacity (0.4 = 40%) */
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
}
.horizontal .card:hover::after {
  opacity: 1;
}
.horizontal .card > * {
  position: relative;
  z-index: 2;
}

.horizontal .card:hover{
  color: white;
}
.mission-content-container .row .first-service-slide{
  padding: 70px 0 60px 60px;
}












        
        .mission-content-container {
            max-width: 1400px;
            min-height: 100vh;
        }
        
        .mission-label-text {
            color: #999;
            font-size: 16px;
            font-weight: 400;
            margin-bottom: 40px;
            font-family: "Poppins", sans-serif;
        }
        
        .mission-headline-primary {
            font-size: 88px;
            font-weight: 300;
            line-height: 1;
            color: #333;
            margin-bottom: 80px;
            letter-spacing: -0.02em;
            font-family: "Poppins", sans-serif;
        }
        
        .mission-description-block {
            font-size: 18px;
            line-height: 1.6;
            color: #666;
            margin-bottom: 180px;
            font-weight: 300;
            font-family: "Poppins", sans-serif;
        }
        
        .mission-cta-container {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
        }
        
        .mission-btn-primary {
            color: #333;
            text-decoration: none;
            font-size: 18px;
            font-weight: 400;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 0;
            border: none;
            background: none;
            font-family: "Poppins", sans-serif;
        }
        
        .mission-btn-primary:hover {
            color: #000;
            text-decoration: none;
        }
        
        .mission-arrow-icon {
            width: 20px;
            height: 20px;
            transition: transform 0.2s ease;
        }
        
        .mission-btn-primary:hover .mission-arrow-icon {
            transform: translateX(4px);
        }




        .card-content-primary {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: flex-start;
            position: relative;
            transition: all 0.3s ease;
        }

        .number-display-large {
            font-size: 430px;
            font-weight: 400;
            line-height: 1;
            margin: -20px 0 20px 0;
            font-family: "Poppins", sans-serif;
        }

        .service-title-primary {
            font-size: 58px;
            font-weight: 600;
            margin-bottom: 8px;
            letter-spacing: -0.9px;
            font-family: 'Bricolage Grotesque';
            line-height: 1.1;
        }

        .service-description-text {
            font-size: 23px;
            line-height: 1.5;
            font-family: "Poppins", sans-serif;
        }

        .service-text{
          display: flex;
          align-items: center;
          gap: 30px;
        }

        .service-text-btn{
          border: none;
          border-radius: 50%;
          background-color: white;
          padding: 20px;
          transform: scale(0);
          opacity: 0;
          transition: transform 0.5s ease, opacity 0.5s ease;
        }

        .card:hover .service-text-btn{
          transition: transform 0.5s ease, opacity 0.5s ease;
          transform: scale(1);
          opacity: 1;
        }



  /* Mobile screen sizes */
  .gsap-mbl-version{
    display: none;
  }

  .services-main-container {
            background-color: #f8f6f3;
            font-family: 'Georgia', serif;
            padding: 80px 0;
        }

        .services-intro-section {
            margin-bottom: 80px;
        }

        .services-main-heading {
            font-size: 2.2rem;
            font-weight: 300;
            color: #2c2c2c;
            line-height: 1.4;
            margin-bottom: 30px;
            letter-spacing: -0.5px;
            font-family: "Poppins", sans-serif;
        }

        .services-description-text {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.6;
            font-weight: 300;
            font-family: "Poppins", sans-serif;
        }

        .services-grid .col-md-6 {
            padding: 0;
        }

        .service-card-item {
            border-top: 1px solid #e8e4df;
            border-bottom: 1px solid #e8e4df;
            padding: 60px 40px;
            height: 100%;
            border-radius: 0;
            position: relative;
            transition: all 0.3s ease;
            overflow: hidden;
            color: #2c2c2c;
        }

        .service-card-item:hover {
            background-color: #fafaf9;
        }

        .service-number-display {
            font-size: 160px;
            font-weight: 600;
            margin-bottom: 50px;
            line-height: 1;
            font-family: 'Bricolage Grotesque';
        }

        .service-title-heading {
            font-size: 32px;
            font-weight: 600;
            margin-bottom: 50px;
            line-height: 1.3;
            font-family: 'Bricolage Grotesque';
        }

        .service-description-paragraph {
            font-size: 0.9rem;
            line-height: 1.6;
            font-weight: 300;
            margin: 0;
            font-family: 'Bricolage Grotesque';
        }

        /* Remove default Bootstrap borders */
        .services-grid-container .col-md-6 {
            padding: 0;
        }

        .services-grid-container .row {
            margin: 0;
        }


.service-card-item::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: scale(1);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  z-index: 0;
}
.services-grid .card1::before{
    background: url(https://showmancreative.com/wp-content/uploads/2025/09/d3e7452e-8f5f-4d06-a053-395fdf7d8f5b.jpeg);
    background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.services-grid .card2::before{
    background: url(https://showmancreative.com/wp-content/uploads/2025/09/9-scaled.png);
    background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.services-grid .card3::before{
    background: url(https://showmancreative.com/wp-content/uploads/2025/09/8-scaled.png);
    background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.services-grid .card4::before{
    background: url(https://showmancreative.com/wp-content/uploads/2025/09/7-scaled.png);
    background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.service-card-item:hover::before {
  transform: scale(1.2);
  opacity: 1;
}
.service-card-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3); /* adjust opacity (0.4 = 40%) */
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
}
.service-card-item:hover::after {
  opacity: 1;
}
.service-card-item > * {
  position: relative;
  z-index: 2;
}

.service-card-item:hover{
  color: white;
}
.service-card-item:hover .service-text-btn{
          transition: transform 0.5s ease, opacity 0.5s ease;
          transform: scale(1);
          opacity: 1;
        }
        /* Responsive adjustments */
        
         @media (max-width: 1699px){
           .mission-headline-primary {
    font-size: 160px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
    letter-spacing: -9px;
    font-family: 'Bricolage Grotesque';
}
            .mission-description-block{
                margin-bottom: 100px;
                font-size: 22px;
            }
            .number-display-large{
                font-size: 260px;
            }
        }
        
        @media (max-width: 1199px) {
            .services-main-container {
                padding: 50px 0;
            }

            .services-intro-section {
                margin-bottom: 50px;
            }

            .services-main-heading {
                font-size: 1.8rem;
            }

            .service-card-item {
                padding: 40px 30px;
            }
            .service-text-btn{
              padding: 10px;
            }
            #horizontal-scoll, .pin-spacer{
            display: none;
          }
          .gsap-mbl-version{
            display: block;
          }
        }
        @media (max-width: 768px) {
            .mission-hero-wrapper {
                padding: 60px 0;
            }
            
            .mission-headline-primary {
                margin-bottom: 60px;
            }
            
            .mission-description-block {
                margin-bottom: 40px;
            }
            
            .mission-cta-container {
                gap: 30px;
            }
        }

 @media (max-width: 575px) {
     .service-number-display {
    text-align: center;
}
.service-title-heading {
    text-align: center;
}
.service-text {

    display: block;
}
.service-description-paragraph {
    text-align: center;
    font-size: 20px;
}
.service-text-btn {
    padding: 10px;
    margin: 21px auto 0; /* auto will center horizontally */
    display: block;      /* ensures margin:auto works */
    text-align: center;
}
 }
        
        
        
        
        /*portfolio*/
        
        
        
        .portfolio-work-section {
            min-height: 100vh;
            display: flex;
            background-color: #1a1a1a;
            position: relative;
            padding: 60px 0;
            overflow-x: hidden;
            display: none;
        }

        .portfolio-left-panel {
            flex: 1;
            padding: 0 47px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            max-width: 600px;
        }

        .portfolio-projects-badge {
            display: inline-block;
            padding: 8px 18px;
            border: 1px solid #555;
            border-radius: 20px;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            margin-bottom: 50px;
            width: fit-content;
            color: #ccc;
            transition: all 0.3s ease;
        }

        .portfolio-projects-badge:hover {
            border-color: #888;
            color: white;
        }

        .portfolio-main-title {
            font-size: clamp(3rem, 8vw, 5rem);
            font-weight: 300;
            line-height: 0.9;
            margin-bottom: 40px;
            text-transform: uppercase;
            letter-spacing: -3px;
            color: white;
            transition: all 0.3s ease;
            font-family: "Poppins", sans-serif;
            font-weight: 400;
            line-height: 1.1;
        }

        .portfolio-description-text {
            font-size: 16px;
            line-height: 1.8;
            color: #999;
            margin-bottom: 80px;
            max-width: 380px;
            font-weight: 300;
             font-family: "Poppins", sans-serif;
            font-weight: 400;
        }

        .portfolio-nav-controls {
            display: flex;
            gap: 12px;
            padding-top: 60px;
        }

        .portfolio-nav-button {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 1px solid #555;
            background: transparent;
            color: #ccc;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            font-size: 18px;
            font-weight: 300;
        }

        .portfolio-nav-button:hover {
            border-color: #888;
            color: white;
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.05);
        }

        .portfolio-nav-button:active {
            transform: scale(0.95);
        }

        .portfolio-right-panel {
            flex: 1.3;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 0 40px 0 0;
            position: relative;
        }

        .portfolio-divider-line {
    position: absolute;
    left: 455px;
    top: 8%;
    bottom: 9%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, #ffffff, transparent);
}

        .portfolio-cards-container {
            position: relative;
            width: 100%;
            height: 600px;
            overflow: hidden;
            margin-left: 60px;
        }

        .portfolio-cards-track {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            height: 100%;
            align-items: center;
            will-change: transform;
        }

        .portfolio-project-card {
            flex-shrink: 0;
            width: 420px;
            height: 560px;
            margin-right: 30px;
            border-radius: 24px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 15px 40px rgba(0,0,0,0.4);
        }

        .portfolio-project-card:hover {
            transform: translateY(-12px) scale(1.03);
            box-shadow: 0 25px 60px rgba(0,0,0,0.6);
        }

        .portfolio-project-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .portfolio-project-card:hover img {
            transform: scale(1.05);
        }

        .portfolio-card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.9));
            padding: 50px 30px 30px;
            color: white;
        }

        .portfolio-card-heading {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }

        .portfolio-card-details {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 12px;
            opacity: 0.9;
        }

        .portfolio-card-category {
            background: rgba(255,255,255,0.2);
            padding: 4px 12px;
            border-radius: 8px;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 0.5px;
            backdrop-filter: blur(10px);
        }

        .portfolio-card-date {
            font-weight: 400;
        }

        .portfolio-indicators-container {
            position: absolute;
            bottom: -80px;
            left: 60px;
            display: flex;
            gap: 10px;
        }

        .portfolio-slide-indicator {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255,255,255,0.25);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .portfolio-slide-indicator.portfolio-indicator-active {
            background: rgba(255,255,255,0.9);
            transform: scale(1.4);
            box-shadow: 0 0 10px rgba(255,255,255,0.3);
        }

        .portfolio-slide-indicator:hover {
            background: rgba(255,255,255,0.6);
            transform: scale(1.2);
        }

        /* Responsive Design */
        @media (max-width: 1400px) {
            .portfolio-project-card {
                width: 360px;
                height: 500px;
            }
            
            .portfolio-divider-line {
                left: 480px;
            }
        }

        @media (max-width: 1200px) {
            .portfolio-main-title {
                font-size: 4.5rem;
            }
            
            .portfolio-project-card {
                width: 320px;
                height: 450px;
            }
            
            .portfolio-divider-line {
                left: 420px;
            }
        }

        @media (max-width: 1024px) {
            .portfolio-work-section {
                flex-direction: column;
                padding: 40px 0;
            }

            .portfolio-left-panel {
                padding: 40px;
                max-width: none;
                text-align: center;
            }

            .portfolio-main-title {
                font-size: 4rem;
                margin-bottom: 30px;
            }

            .portfolio-description-text {
                max-width: 100%;
                font-size: 16px;
                margin-bottom: 40px;
            }

            .portfolio-nav-controls {
                justify-content: center;
                padding-top: 20px;
            }

            .portfolio-right-panel {
                padding: 40px 20px;
                justify-content: center;
            }

            .portfolio-divider-line {
                display: none;
            }

            .portfolio-cards-container {
                margin-left: 0;
                height: 500px;
            }

            .portfolio-project-card {
                width: 300px;
                height: 420px;
            }

            .portfolio-indicators-container {
                left: 50%;
                transform: translateX(-50%);
                bottom: -60px;
            }
        }

        @media (max-width: 768px) {
            .portfolio-left-panel {
                padding: 30px 25px;
            }

            .portfolio-main-title {
                font-size: 3.5rem;
                letter-spacing: -2px;
            }

            .portfolio-description-text {
                font-size: 15px;
                line-height: 1.6;
            }

            .portfolio-right-panel {
                padding: 20px 15px;
            }

            .portfolio-cards-container {
                height: 450px;
            }

            .portfolio-project-card {
                width: 280px;
                height: 400px;
                margin-right: 25px;
            }

            .portfolio-nav-button {
                width: 45px;
                height: 45px;
                font-size: 16px;
            }
        }

        @media (max-width: 575px) {
            .portfolio-left-panel {
                padding: 25px 20px;
            }

            .portfolio-nav-controls {
                padding-top: 30px;
            }

            .portfolio-main-title {
                font-size: 3rem;
            }

            .portfolio-project-card {
                width: 260px;
                height: 360px;
                border-radius: 20px;
            }

            .portfolio-cards-container {
                height: 375px;
                margin-left: 10px;
            }

            .portfolio-card-content {
                padding: 30px 20px 20px;
            }

            .portfolio-card-heading {
                font-size: 16px;
            }

            .portfolio-card-details {
                font-size: 11px;
                gap: 12px;
            }

            .portfolio-indicators-container {
                bottom: -50px;
            }
        }

        @media (max-width: 480px) {
            .portfolio-main-title {
    font-size: 2.rem;
    text-align: left;
    
}
.portfolio-description-text {
    font-size: 15px;
    line-height: 1.6;
    text-align: left;
    color: white;
}
.portfolio-nav-controls {
    justify-content: left;
    padding-top: 0px;
}

            .portfolio-project-card {
                width: 240px;
                height: 340px;
                margin-right: 20px;
            }

            .portfolio-cards-container {
                height: 350px;
            }
        }

        @media (max-width: 375px) {
            .portfolio-left-panel {
                padding: 20px 15px;
            }

            .portfolio-main-title {
                font-size: 2.2rem;
            }

            .portfolio-project-card {
                width: 220px;
                height: 320px;
            }

            .portfolio-cards-container {
                height: 330px;
            }
        }

        /* Animation improvements */
        @media (prefers-reduced-motion: no-preference) {
            .portfolio-project-card {
                animation: fadeInUp 0.6s ease-out;
            }

            .portfolio-project-card:nth-child(1) { animation-delay: 0.1s; }
            .portfolio-project-card:nth-child(2) { animation-delay: 0.2s; }
            .portfolio-project-card:nth-child(3) { animation-delay: 0.3s; }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Touch-friendly improvements */
        @media (pointer: coarse) {
            .portfolio-nav-button {
                width: 55px;
                height: 55px;
                font-size: 20px;
            }

            .portfolio-slide-indicator {
                width: 12px;
                height: 12px;
            }

            .portfolio-project-card {
                margin-right: 35px;
            }
        }
        
        
        /*how it work*/
        
        
        
         .how-it-works-section {
            background-color: #000000;
            padding: 3rem 0;
            min-height: 100vh;
        }
        .how-it-works-section .container{
            max-width: 1600px;
        }
        /*.how-it-works-section .steps-grid .col-lg-4{*/
        /*    padding: 0;*/
        /*}*/

        .how-it-works-title {
            color: #ffffff;
            font-size: clamp(2.5rem, 8vw, 4.5rem);
            font-weight: 400;
            margin-bottom: 2rem;
            font-family: "Poppins", sans-serif;
        }

        .section-divider {
            width: 100%;
            height: 2px;
            background-color: #666666;
            margin-bottom: 3rem;
        }

        .how-it-works-container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .steps-grid {
            padding-top: 2rem;
           
        }

     .step-card {
    background-color: #f8f6f31a;
    color: #333335;
    padding: 3rem 2.5rem;
    border-radius: 0;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

        .step-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: url(https://offshoremarketers.in/wp-content/uploads/2025/09/aEFP5Lh8WN-LVofd_service-uiux.avif);
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            transform: scale(1);
            opacity: 0;
            transition: transform 0.5s ease, opacity 0.5s ease;
            z-index: 0;
        }

        .step-card:hover::before {
            transform: scale(1.2);
            opacity: 1;
        }

        .step-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.3);
            opacity: 0;
            transition: opacity 0.6s ease;
            z-index: 1;
        }

        .step-card:hover::after {
            opacity: 1;
        }

        .step-card > * {
            position: relative;
            z-index: 2;
        }

        .step-card:hover {
            color: #ffffff;
        }

        .step-content {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: flex-start;
            position: relative;
            transition: all 0.3s ease;
        }

       .step-number {
    font-size: clamp(8rem, 15vw, 20rem);
    font-weight: 400;
    line-height: 1;
    margin: -1rem 0 1rem 0;
    font-family: "Poppins", sans-serif;
    opacity: 0.8;
    color: #ffffff;
}

        .step-title {
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    font-family: "Poppins", sans-serif;
    line-height: 1.2;
    letter-spacing: 0.5px;
    
    color: white;
}

        .step-description {
            font-size: clamp(1rem, 2vw, 1rem);
            line-height: 1.6;
            font-family: "Poppins", sans-serif;
            margin-bottom: 1.5rem;
            flex-grow: 1;
            color: white;
            font-family: "Poppins", sans-serif;
        }

        .step-footer {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    padding-top: 80px;
}

        .step-arrow-btn {
            border: none;
            border-radius: 50%;
            background-color: #ffffff;
            padding: 1rem;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: scale(0);
            opacity: 0;
            transition: transform 0.5s ease, opacity 0.5s ease;
            cursor: pointer;
        }

       .step-arrow-btn svg {
    width: 88px;
    height: 24px;
    fill: #333335;
}

        .step-card:hover .step-arrow-btn {
            transform: scale(1);
            opacity: 1;
        }

        .step-arrow-btn:hover {
            background-color: #f0f0f0;
            transform: scale(1.1);
        }

        /* Responsive breakpoints */
        @media (max-width: 1200px) {
            .how-it-works-container {
                max-width: 100%;
            }
            
            .step-card {
                padding: 2.5rem 2rem;
                min-height: 450px;
            }
        }

        @media (max-width: 992px) {
            .how-it-works-section {
                padding: 2rem 0;
            }
            
            .steps-grid {
                padding-top: 1.5rem;
                gap: 2rem;
            }
            
            .step-card {
                padding: 2rem 1.5rem;
                min-height: 400px;
            }
            
            .step-number {
                margin: -0.5rem 0 0.5rem 0;
            }
        }

        @media (max-width: 768px) {
            .how-it-works-container {
                padding: 0 0.5rem;
            }
            
            .step-card {
                padding: 2rem 1.5rem;
                min-height: 350px;
                margin-bottom: 1.5rem;
            }
            
            .step-footer {
                gap: 1rem;
            }
            
            .step-arrow-btn {
                width: 50px;
                height: 50px;
                padding: 0.75rem;
            }
            
            .step-arrow-btn svg {
                width: 20px;
                height: 20px;
            }
        }

        @media (max-width: 576px) {
            .how-it-works-section {
                padding: 1.5rem 0;
            }
            .how-it-works-section {
    padding: 1.5rem 0;
    display: none;
}
            
            .section-divider {
                margin-bottom: 2rem;
            }
            
            .steps-grid {
                padding-top: 1rem;
                gap: 1.5rem;
            }
            
            .step-card {
                padding: 1.5rem;
                min-height: 320px;
            }
            
            .step-number {
                margin: 0 0 0.5rem 0;
            }
            
            .step-description {
                margin-bottom: 1rem;
            }
        }

        @media (max-width: 480px) {
            .step-card {
                padding: 1.25rem;
                min-height: 300px;
            }
            
            .step-arrow-btn {
                width: 45px;
                height: 45px;
            }
            
            .step-arrow-btn svg {
                width: 18px;
                height: 18px;
            }
        }

        @media (max-width: 360px) {
            .how-it-works-container {
                padding: 0 0.25rem;
            }
            
            .step-card {
                padding: 1rem;
                min-height: 280px;
            }
            
            .step-footer {
                gap: 0.75rem;
            }
        }

        /* Landscape tablet adjustments */
        @media (max-width: 1024px) and (orientation: landscape) {
            .how-it-works-section {
                padding: 2rem 0;
            }
            
            .step-card {
                min-height: 380px;
            }
        }

        /* Small landscape phones */
        @media (max-height: 500px) and (orientation: landscape) {
            .how-it-works-section {
                padding: 1rem 0;
            }
            
            .step-card {
                min-height: 250px;
                padding: 1rem;
            }
        }

  
  /*mobile*/
       .workflow-process-section {
            background-color: #000000;
            padding: 3rem 0;
            min-height: 100vh;
            display: none;
        }
        .workflow-process-section .container{
            max-width: 1600px;
        }

        .workflow-process-title {
            color: #ffffff;
            font-size: clamp(2.5rem, 8vw, 4.5rem);
            font-weight: 400;
            margin-bottom: 2rem;
            font-family: "Poppins", sans-serif;
        }

        .workflow-section-divider {
            width: 100%;
            height: 2px;
            background-color: #666666;
            margin-bottom: 3rem;
        }

        .workflow-process-container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .workflow-steps-slider {
            padding-top: 2rem;
        }

        .workflow-step-card {
            background-color: #f8f6f31a;
            color: #333335;
            padding: 3rem 2.5rem;
            border-radius: 0;
            transition: all 0.3s ease;
            overflow: hidden;
            position: relative;
            height: 100%;
            min-height: 500px;
            display: flex;
            flex-direction: column;
            width: 100%;
            margin: 0 10px;
        }

        .workflow-step-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: url(https://offshoremarketers.in/wp-content/uploads/2025/09/aEFP5Lh8WN-LVofd_service-uiux.avif);
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            transform: scale(1);
            opacity: 0;
            transition: transform 0.5s ease, opacity 0.5s ease;
            z-index: 0;
        }

        .workflow-step-card:hover::before {
            transform: scale(1.2);
            opacity: 1;
        }

        .workflow-step-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.3);
            opacity: 0;
            transition: opacity 0.6s ease;
            z-index: 1;
        }

        .workflow-step-card:hover::after {
            opacity: 1;
        }

        .workflow-step-card > * {
            position: relative;
            z-index: 2;
        }

        .workflow-step-card:hover {
            color: #ffffff;
        }

        .workflow-step-content {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: flex-start;
            position: relative;
            transition: all 0.3s ease;
            padding-top: 30px;
        }

        .workflow-step-number {
            font-size: clamp(8rem, 15vw, 20rem);
            font-weight: 400;
            line-height: 1;
            margin: -1rem 0 1rem 0;
            font-family: "Poppins", sans-serif;
            opacity: 0.8;
            color: #ffffff;
        }

        .workflow-step-title {
            font-size: clamp(1.8rem, 4vw, 3.5rem);
            font-weight: 400;
            margin-bottom: 1rem;
            letter-spacing: -0.5px;
            font-family: "Poppins", sans-serif;
            line-height: 1.2;
            color: white;
            padding-top: 30px;
        }

        .workflow-step-description {
            font-size: clamp(1rem, 2vw, 1rem);
            line-height: 1.6;
            font-family: "Poppins", sans-serif;
            margin-bottom: 1.5rem;
            flex-grow: 1;
            color: white;
            font-family: "Poppins", sans-serif;
        }

        .workflow-step-footer {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            width: 100%;
            padding-top: 80px;
        }

        .workflow-step-arrow-btn {
            border: none;
            border-radius: 50%;
            background-color: #ffffff;
            padding: 1rem;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: scale(0);
            opacity: 0;
            transition: transform 0.5s ease, opacity 0.5s ease;
            cursor: pointer;
        }

        .workflow-step-arrow-btn svg {
            width: 88px;
            height: 24px;
            fill: #333335;
        }

        .workflow-step-card:hover .workflow-step-arrow-btn {
            transform: scale(1);
            opacity: 1;
        }

        .workflow-step-arrow-btn:hover {
            background-color: #f0f0f0;
            transform: scale(1.1);
        }

        /* Slick slider customization */
        .workflow-steps-slider .slick-dots {
            bottom: -60px;
        }

        .workflow-steps-slider .slick-dots li button:before {
            color: #ffffff;
            font-size: 12px;
        }

        .workflow-steps-slider .slick-dots li.slick-active button:before {
            color: #ffffff;
        }

        .workflow-steps-slider .slick-prev,
        .workflow-steps-slider .slick-next {
            z-index: 10;
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .workflow-steps-slider .slick-prev:before,
        .workflow-steps-slider .slick-next:before {
            color: #ffffff;
            font-size: 20px;
        }

        .workflow-steps-slider .slick-prev {
            left: -25px;
        }

        .workflow-steps-slider .slick-next {
            right: -25px;
        }

        .workflow-steps-slider .slick-prev:hover,
        .workflow-steps-slider .slick-next:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }

        /* Responsive breakpoints */
        @media (max-width: 1200px) {
            .workflow-process-container {
                max-width: 100%;
            }
            
            .workflow-step-card {
                padding: 2.5rem 2rem;
                min-height: 450px;
            }
        }

        @media (max-width: 992px) {
            .workflow-process-section {
                padding: 2rem 0;
            }
            
            .workflow-steps-slider {
                padding-top: 1.5rem;
            }
            
            .workflow-step-card {
                padding: 2rem 1.5rem;
                min-height: 400px;
            }
            
            .workflow-step-number {
                margin: -0.5rem 0 0.5rem 0;
            }

            .workflow-steps-slider .slick-prev {
                left: -15px;
            }

            .workflow-steps-slider .slick-next {
                right: -15px;
            }
        }

        @media (max-width: 768px) {
            .workflow-process-container {
                padding: 0 0.5rem;
            }
            
            .workflow-step-card {
                padding: 2rem 1.5rem;
                min-height: 350px;
                margin: 0 5px;
            }
            
            .workflow-step-footer {
                gap: 1rem;
            }
            
            .workflow-step-arrow-btn {
                width: 50px;
                height: 50px;
                padding: 0.75rem;
            }
            
            .workflow-step-arrow-btn svg {
                width: 20px;
                height: 20px;
            }

            .workflow-steps-slider .slick-prev,
            .workflow-steps-slider .slick-next {
                width: 40px;
                height: 40px;
            }

            .workflow-steps-slider .slick-prev {
                left: -10px;
            }

            .workflow-steps-slider .slick-next {
                right: -10px;
            }
        }

        @media (max-width: 576px) {
            .workflow-process-section {
                padding: 1.5rem 0;
                padding-top: 40px;
            }
            
            .workflow-section-divider {
                margin-bottom: 2rem;
            }
            
            .workflow-steps-slider {
                padding-top: 1rem;
            }
            
            .workflow-step-card {
                padding: 1.5rem;
                min-height: 320px;
            }
            
            .workflow-step-number {
                margin: 0 0 0.5rem 0;
                font-size: 160px;
            }
            
            .workflow-step-description {
                margin-bottom: 1rem;
                font-size: 14px;
            }

            .workflow-steps-slider .slick-prev,
            .workflow-steps-slider .slick-next {
                display: none !important;
            }

            .workflow-steps-slider .slick-dots {
                bottom: -40px;
            }
        }

        @media (max-width: 480px) {
            .workflow-step-card {
                padding: 1.25rem;
                min-height: 300px;
                margin: 0 2px;
            }
            .workflow-process-section {
           
            display: block;
        }
        .how-it-works-section {
    padding: 1.5rem 0;
    display: none;
}
            
            .workflow-step-arrow-btn {
                width: 45px;
                height: 45px;
            }
            
            .workflow-step-arrow-btn svg {
                width: 18px;
                height: 18px;
            }
        }

        @media (max-width: 360px) {
            .workflow-process-container {
                padding: 0 0.25rem;
            }
            .how-it-works-section {
    padding: 1.5rem 0;
    display: none;
}
            .workflow-process-section {
           
            display: block;
        }
            
            .workflow-step-card {
                padding: 1rem;
                min-height: 280px;
            }
            
            .workflow-step-footer {
                gap: 0.75rem;
            }
        }

        /* Landscape tablet adjustments */
        @media (max-width: 1024px) and (orientation: landscape) {
            .workflow-process-section {
                padding: 2rem 0;
            }
            
            .workflow-step-card {
                min-height: 380px;
            }
        }

        /* Small landscape phones */
        @media (max-height: 500px) and (orientation: landscape) {
            .workflow-process-section {
                padding: 1rem 0;
            }
            
            .workflow-step-card {
                min-height: 250px;
                padding: 1rem;
            }
        }
  
  /*mobile-end*/
  
  
  /*new */
  
  
  .integrated-talent-wrapper {
            background-color: #1c1c1c;
            min-height: 100vh;
            padding: 80px 0;
            overflow: hidden;
            position: relative;
            border-radius: 40px;
        }
        .noise{
            position: absolute;
            height: 100%;
            width: 100%;
            z-index: 999;
            pointer-events: none;
            mix-blend-mode: color-burn;
            will-change: opacity;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            background-image: url("https://cdn.prod.website-files.com/67079a31e71560a787d9fcc4/6707b45e1c28f88fc781209a_noise.webp");
            background-position: 50%;
            background-size: cover;
            inset: 0%;
        }

        .talent-services-badge {
            color: #ffffff;
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 1px;
            margin-bottom: 30px;
            text-align: center;
            font-family: "Tay Bea, sans-serif;
                font-family: cursive;
        }

        .talent-hero-title {
            font-size: 120px;
            font-weight: 900;
            color: #FDF6EF;
            line-height: 102px;
            margin-bottom: 80px;
            text-align: center;
            text-transform: uppercase;
            font-family: "Tay Bea, sans-serif;
                font-family: cursive;
            
        }

       .flexible-highlight {
    color: #FDF6EF;
    display: inline-block;
    transform: rotate(0deg);
    margin-bottom: -48px;
    /* font-family: cursive; */
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    margin-left: -61pxx;
    margin-left: -190px;
    font-size: 120px;
}
        .partners-highlight {
            color: #FDF6EF;
            display: inline-block;
            transform: rotate(-1deg);
        }
      .integrate-highlight {
    display: inline-block;
    transform: rotate(-1deg);
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
     font-size: 120px;
}

        .talent-service-item {
            background-color: #FDF6EF;
            border-radius: 25px;
            padding: 40px 65px;
            height: 100%;
            transition: all 0.3s ease;
            position: relative;
            margin-bottom: 30px;
            text-align: center;
        }

        .talent-service-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .exec-search-card{
            rotate: -2.2deg;
        }
        .nextgen-search-card{
            rotate: 0.5deg;
            background: #f2e8dc;
        }
        .coaching-card{
            rotate: -0.5deg;
        }
        .strategy-consulting-card{
            rotate: 3.5deg;
            background: #f2e8dc;
        }

        .service-item-number {
            color: black;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            font-family: "Bricolage Grotesque", sans-serif;
        }

        .service-item-heading {
            font-size: 45px;
            font-weight: 900;
            color: #2a2a2a;
            margin-bottom: 35px;
            line-height: 40px;
            text-transform: uppercase;
            font-family: "Bricolage Grotesque", sans-serif;
        }

        .service-item-symbol {
            width: 80px;
            height: 80px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: -35px auto 35px auto;
            position: relative;
            overflow: hidden;
        }
        

        .service-item-text {
    color: black;
    line-height: 1.4;
    font-size: 16px;
    font-weight: 500;
    font-family: "Bricolage Grotesque", sans-serif;
}
        /* Card specific icons and colors - matching the screenshot */
        .exec-search-card .service-item-symbol {
            background-color: transparent;
        }

        /*.exec-search-card .service-item-symbol::after {*/
        /*    content: '🔍';*/
        /*    font-size: 20px;*/
        /*}*/

        .nextgen-search-card .service-item-symbol {
            background-color: transparent;
        }

        /*.nextgen-search-card .service-item-symbol::after {*/
        /*    content: '⚡';*/
        /*    font-size: 20px;*/
        /*}*/

        .coaching-card .service-item-symbol {
           background-color: transparent;
        }

        /*.coaching-card .service-item-symbol::after {*/
        /*    content: '📊';*/
        /*    font-size: 18px;*/
        /*}*/

        .strategy-consulting-card .service-item-symbol {
            background-color: transparent;
        }

        /*.strategy-consulting-card .service-item-symbol::after {*/
        /*    content: '💡';*/
        /*    font-size: 18px;*/
        /*}*/

        /* Parallax effect */
        .floating-element {
            transition: transform 0.1s ease-out;
        }

        /* Orange dot accent */
        .talent-accent-dot {
            width: 20px;
            height: 20px;
            background-color: #fbbf24;
            border-radius: 50%;
            position: absolute;
            top: 200px;
            left: 200px;
        }

        /* Red star accent */
        .talent-accent-star {
            color: #ff6b6b;
            font-size: 40px;
            position: absolute;
            top: 180px;
            right: 150px;
        }


        /* Purple accent shape */
        .talent-accent-triangle {
            position: absolute;
            top: 120px;
            left: 100px;
            width: 0;
            height: 0;
            border-left: 20px solid transparent;
            border-right: 20px solid transparent;
            border-bottom: 35px solid #a855f7;
            transform: rotate(45deg);
        }

        /* Responsive design */
        @media (max-width: 1699px){
            .talent-service-item{
                padding: 40px 25px;
            }
            .service-item-heading{
                font-size: 31px;
                line-height: 30px;
            }
            .talent-hero-title {
    font-size: 100px;
    font-weight: 900;
    color: #FDF6EF;
    line-height: 95px;
    margin-bottom: 80px;
    text-align: center;
    text-transform: uppercase;
    font-family: "Bricolage Grotesque", sans-serif;
}
            
            .special-about-main-heading {
        font-size: 55px;
        font-weight: 800;
        color: black;
        margin-bottom: 2rem;
        font-family: "Bricolage Grotesque", sans-serif;
      }
       .special-about-subtitle   {
    font-size: 19px;
    color: black;
    margin-bottom: 3rem;
    line-height: 1.6;
    font-family: "Bricolage Grotesque", sans-serif;}
    
    .special-about-section-container {
    padding: 50px 50px 50px 50px;
    font-family: "Bricolage Grotesque", sans-serif;
}
    
            
        }
        @media (max-width: 992px) {
            .talent-hero-title {
                font-size: 3rem;
            }
            
            .talent-accent-dot, .talent-accent-star, .talent-accent-triangle {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .talent-hero-title {
                font-size: 62px;
                line-height: 62px;
            }
            
            .talent-service-item {
                margin-bottom: 20px;
                padding: 40px 30px;
            }
            .service-item-heading{
                font-size: 36px;
            }
            .service-item-text{
                font-size: 18px;
            }
        }

        @media (max-width: 576px) {
            .talent-hero-title {
                font-size: 52px;
                line-height: 50px;
            }
            .special-about-section-container {
        padding: 50px 10px 50px 10px;
        font-family: "Bricolage Grotesque", sans-serif;
    }
    .flexible-highlight {
    color: #FDF6EF;
    display: inline-block;
    transform: rotate(0deg);
    margin-bottom: -48px;
    /* font-family: cursive; */
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    margin-left: -61pxx;
    margin-left: -190px;
    font-size: 50px;
}
      .integrate-highlight {
    display: inline-block;
    transform: rotate(-1deg);
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    font-size: 52px;
}
      .talent-hero-title {
    font-size: 52px;
    line-height: 50px;
    font-size: 50px!important;
}
        }
/* Reset Swiper defaults */
.swiper-button-next::after,
.swiper-button-prev::after {
  display: none !important;
}

/* Custom button base */
.custom-swiper-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #2d3436;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

/* Hover effect */
.custom-swiper-btn:hover {
  background: #636e72;
  transform: scale(1.1);
}

/* Position adjustments */
.swiper-button-prev {
  left: -60px;
}

.swiper-button-next {
  right: -60px;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset,10px);
    right: auto;
    width: 43px !important;
    height: 43px!important;
}
.swiper-button-next svg, .swiper-button-prev svg {
    
    padding-top: 9px!important;
    padding-left: 6px!important;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
   
    left: auto;
    width: 43px!important;
    height: 43px!important;
}
/* SVG icon styling */
.custom-swiper-btn svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
}

/* On smaller screens, bring them inside */
@media (max-width: 768px) {
  .swiper-button-prev {
    left: 10px;
  }
  .swiper-button-next {
    right: 10px;
  }
}


.hero-arrow {
    width: 27px;
    height: auto;
}

sup img {
      width: 26px;   /* adjust size */
      height: auto;
      vertical-align: middle;
      transform: rotate(123deg); /* rotation */
      display: inline-block;     /* needed for transform */
    }