 .creativity-section {
     background: #ffffff;
 }

 .creativity-title {
     font-size: 75px;
     font-weight: 500;
     line-height: 1.2;
     text-align: center;
 }

 .creativity-title .highlight {
     color: #ff7a00;
     /* Accent orange */
     font-weight: bold;
     font-style: italic;

 }

 .creativity-section p {
     font-size: 1rem;
     color: #555;
     line-height: 1.7;
 }

 .custom-btn {
     border-radius: 50px;
     padding: 14px 28px;
     font-weight: 500;
     box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
 }

 .custom-btn .arrow {
     margin-left: 8px;
 }

 .video-wrapper {
     border-radius: 24px;
     overflow: hidden;
 }

 .video-wrapper video {
     display: block;
     border-radius: 24px;
 }

 /* Mobile */
 @media (max-width: 576px) {
     .creativity-title {
         font-size: 28px;
         line-height: 1.3;
     }
 }

 /* Tablet */
 @media (max-width: 768px) {
     .creativetivity-title {
         text-align: center;
         font-weight: bold;
     }

     .creativity-section p {
         text-align: center;
     }

     .creativity-title {
         font-size: 30px;
     }
 }


 /*  */
 /* CARD */
 .service-card {
     position: relative;
     overflow: hidden;
     /* border: 2px solid #ff6a00; */
     border-radius: 4px;
     /* height: 420px;
 }

 .service-card.tall {
     /* height: 500px; */
 }

 /* STAGGERED UX */
 .offset-card {
     margin-top: 60px;
 }

 .service-card img {
     width: 100%;
     object-fit: cover;
     transition: transform 0.6s ease;
 }

 .service-card:hover img {
     transform: scale(1.08);
 }

 .service-overlay {
     position: absolute;
     inset: 0;
     /* background: rgba(0, 0, 0, 0.35); */
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     padding: 20px;
 }

 .service-overlay h5 {
     color: #fff;
     font-weight: 600;
     letter-spacing: 1px;
     text-transform: uppercase;
     font-size: 20px;
 }

 /* CTA */
 .cta-btn {
     margin-top: 60px;
     display: inline-flex;
     align-items: center;
     gap: 10px;
     padding: 12px 28px;
     border-radius: 50px;
     border: 1px solid #ddd;
     /* background: #fff; */
     font-weight: 500;
     transition: all 0.3s ease;
 }

 .cta-btn:hover {
     background: #ff6a00;
     color: #fff;
     border-color: #ff6a00;
 }

 /* MOBILE UX */
 @media (max-width: 768px) {

     .service-card,
     .service-card.tall {
         height: 280px;
     }

     .offset-card {
         margin-top: 0;
     }

     .text-end {
         text-align: center !important;
     }
 }


 /*testimonial-section-start  */
 /* ===== SECTION ===== */
 .testimonial-section {
     padding: 80px 0;
     background: #fff;
 }

 /* ===== SLIDER ===== */
 .slider-track {
     display: flex;
     justify-content: center;
     gap: 20px;
 }

 /* ===== ITEM ===== */
 .testimonial-item {
     position: relative;
     width: 100%;
     /* opacity: 0.35; */
     transform: scale(0.9);
     transition: all 0.5s ease;
 }

 .testimonial-item.active {
     opacity: 1;
     transform: scale(1);
 }

 /* ===== STACK BACK CARDS ===== */
 .stack {}


 .stack.back {
     top: 8px;
     left: 8px;
     opacity: 0.25;
 }

 .stack.second {
     top: 16px;
     left: 16px;
     opacity: 0.15;
 }

 /* ===== MAIN CARD ===== */
 .testimonial-card {
     position: relative;
     z-index: 3;
     padding: 34px 30px 30px;
     border-radius: 12px;
     background: #fff;
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
     overflow: hidden;
 }

 /* ===== QUOTE ICON (MISSING UX FIX) ===== */
 .quote-icon {
     position: absolute;
     top: 18px;
     left: 20px;
     font-size: 38px;
     color: #f59e0b;
     opacity: 0.25;
 }

 /* ===== CONTENT ===== */
 .stars {
     color: #f59e0b;
     font-size: 30px;
     margin: 30px 0 15px;
     text-align: center;
 }

 .testimonial-card p {
     font-size: 15px;
     line-height: 1.6;
     color: #6b7280;
 }

 .testimonial-card h6 {
     margin-top: 20px;
     font-weight: 600;
     color: #111827;
 }

 .testimonial-card small {
     color: #9ca3af;
 }

 /* ===== CONTROLS ===== */
 .testimonial-controls {
     display: flex;
     justify-content: center;
     gap: 16px;
     margin-top: 45px;
 }

 .ux-btn {
     width: 44px;
     height: 44px;
     border-radius: 50%;
     border: 1px solid #e5e7eb;
     background: transparent;
     font-size: 18px;
     color: #6b7280;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.25s ease;
 }

 .ux-btn:hover {
     background: #f9fafb;
     border-color: #d1d5db;
     color: #111827;
 }

 .ux-btn:active {
     transform: scale(0.95);
 }

 /* ===== MOBILE ===== */
 @media (max-width: 768px) {
     .slider-track {
         flex-direction: column;
         gap: 40px;
     }
 }

 /*testimonial-section-end  */

 .hero-video-preview {
     position: relative;
     width: 100%;
     overflow: hidden;
 }

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

 /* Center play button */
 .play-btn {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     z-index: 5;
     width: 90px;
     height: 90px;
     background: rgba(0, 0, 0, 0.6);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 48px;
     color: #fff;
     text-decoration: none;
 }

 .play-btn:hover {
     background: rgba(0, 0, 0, 0.8);
 }

 .client-logo img {
     transition: opacity 0.5s ease;
 }

 .client-logo img {
     transition: opacity 0.6s ease, transform 0.6s ease;
 }

 .logo-hide {
     opacity: 0;
     transform: scale(0.9);
 }

 .logo-show {
     opacity: 1;
     transform: scale(1);
 }

 .client-logo img {
     transition: opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease;
 }

 .logo-hide {
     opacity: 0;
     transform: scale(0.85);
     filter: blur(3px);
 }

 /* Full screen intro */
 #introScreen {
     position: fixed;
     inset: 0;
     background: #ffffff;
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 9999;
     overflow: hidden;
 }

 /* Logo animation */
 .intro-logo {
     opacity: 0;
     transform: scale(0.6) translateY(80px);
     animation: logoReveal 2s ease forwards;
 }

 /* Keyframes */
 @keyframes logoReveal {
     0% {
         opacity: 0;
         transform: scale(0.6) translateY(80px);
     }

     60% {
         opacity: 1;
         transform: scale(1.05) translateY(-10px);
     }

     100% {
         opacity: 1;
         transform: scale(1) translateY(0);
     }
 }

 /* Hide intro after animation */
 .hide-intro {
     animation: hideIntro 1s ease forwards;
 }

 @keyframes hideIntro {
     to {
         opacity: 0;
         visibility: hidden;
     }
 }


 .testimonial-card {
     background: #fff;
     padding: 40px 35px;
     border-radius: 18px;
     text-align: center;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
     height: 100%;
     transition: 0.3s;
 }

 .testimonial-card:hover {
     transform: translateY(-8px);
 }

 .quote {
     font-size: 55px;
     color: #f2c18d;
     line-height: 1;
     margin-bottom: 10px;
 }

 .stars {
     color: #ff9900;
     font-size: 22px;
     letter-spacing: 4px;
     margin-bottom: 20px;
 }

 .review {
     color: #6b7280;
     font-size: 17px;
     line-height: 1.7;
     margin-bottom: 25px;
 }

 .name {
     font-weight: 700;
     color: #111827;
     margin-bottom: 4px;
 }

 .role {
     color: #9ca3af;
     font-size: 14px;
 }

 /* Slide Animation */
 .swiper-slide {
     /* opacity: .45; */
     transform: scale(.88);
     transition: all .5s ease;
 }

 .swiper-slide-active,
 .swiper-slide-next,
 .swiper-slide-prev {
     opacity: 1;
     transform: scale(1);
 }

 /* Pagination dots */
 .swiper-pagination {
     margin-top: 20px;
 }

 .swiper-pagination-bullet {
     background: #ccc;
     opacity: 1;
 }

 .swiper-pagination-bullet-active {
     background: #ff9900;
 }

 /* Buttons */
 .testimonial-controls {
     display: flex;
     justify-content: center;
     gap: 15px;
     margin-top: 25px;
 }

 .ux-btn {
     width: 48px;
     height: 48px;
     border-radius: 50%;
     border: none;
     background: #fff;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
     font-size: 20px;
     cursor: pointer;
     transition: .3s;
 }

 .ux-btn:hover {
     background: #ff9900;
     color: #fff;
     transform: translateY(-3px);
 }
 .creativetivity-title{
    font-weight: bold;
 }