
       
        /* Section 1: Hero Banner - Ultra Creative */
        .hero-banner {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #e6f0ff42 0%, #fdf4ff 50%, #fff5f7 100%);
            padding: 100px 20px;
            position: relative;
            overflow: hidden;
        }

        /* Animated Background Blobs */
        .blob {
            position: absolute;
            border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
            opacity: 0.4;
            animation: morphBlob 20s ease-in-out infinite;
            filter: blur(80px);
        }

        .blob-1 {
            width: 500px;
            height: 500px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            top: -10%;
            left: -5%;
            animation-delay: 0s;
        }

        .blob-2 {
            width: 450px;
            height: 450px;
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            bottom: -10%;
            right: -5%;
            animation-delay: 7s;
        }

        .blob-3 {
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            top: 40%;
            right: 10%;
            animation-delay: 14s;
        }

        @keyframes morphBlob {
            0%, 100% {
                border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
                transform: translate(0, 0) rotate(0deg);
            }
            25% {
                border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
                transform: translate(30px, -30px) rotate(90deg);
            }
            50% {
                border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
                transform: translate(-20px, 20px) rotate(180deg);
            }
            75% {
                border-radius: 60% 40% 30% 70% / 70% 50% 60% 40%;
                transform: translate(-30px, -20px) rotate(270deg);
            }
        }

        /* Floating Particles */
        .particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: rgba(59, 130, 246, 0.4);
            border-radius: 50%;
            animation: floatParticle 15s ease-in-out infinite;
        }

        .particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
        .particle:nth-child(2) { top: 60%; left: 20%; animation-delay: 3s; }
        .particle:nth-child(3) { top: 30%; right: 15%; animation-delay: 6s; }
        .particle:nth-child(4) { bottom: 30%; left: 30%; animation-delay: 9s; }
        .particle:nth-child(5) { bottom: 50%; right: 25%; animation-delay: 12s; }

        @keyframes floatParticle {
            0%, 100% {
                transform: translateY(0) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) translateX(50px);
                opacity: 0;
            }
        }

        .hero-content-wrapper {
            max-width: 1400px;
            width: 100%;
            position: relative;
            z-index: 10;
            display: flex;
            align-items: center;
            gap: 60px;
        }

        /* Floating Images with Creative Shapes */
        .hero-images {
            flex: 1;
            position: relative;
            height: 600px;
        }

        .floating-image-container {
            position: absolute;
            animation: floatSmooth 6s ease-in-out infinite;
        }

        .floating-image-container:nth-child(1) {
            top: 0;
            left: 0;
            width: 280px;
            height: 350px;
            animation-delay: 0s;
        }

        .floating-image-container:nth-child(2) {
            bottom: 0;
            right: 0;
            width: 300px;
            height: 380px;
            animation-delay: 3s;
        }

        @keyframes floatSmooth {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-25px) rotate(2deg);
            }
        }

        .shape-mask {
            width: 100%;
            height: 100%;
            overflow: hidden;
            position: relative;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
        }

        .shape-mask-1 {
            border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            background: linear-gradient(135deg, #667eea, #764ba2);
        }

        .shape-mask-2 {
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            background: linear-gradient(135deg, #f093fb, #f5576c);
        }

        .shape-mask img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.95;
            mix-blend-mode: luminosity;
        }

        /* Decorative Elements */
        .deco-circle {
            position: absolute;
            border-radius: 50%;
            border: 3px solid;
            animation: rotate360 20s linear infinite;
        }

        .deco-circle-1 {
            width: 150px;
            height: 150px;
            border-color: rgba(102, 126, 234, 0.3);
            top: 10%;
            right: 15%;
        }

        .deco-circle-2 {
            width: 100px;
            height: 100px;
            border-color: rgba(245, 93, 108, 0.3);
            bottom: 20%;
            left: 10%;
        }

        @keyframes rotate360 {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Hero Text Content */
        .hero-text-content {
            flex: 1;
            text-align: left;
        }

        .hero-company-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            padding: 12px 24px;
            border-radius: 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
            animation: fadeInDown 0.8s ease-out;
        }

        .badge-dot {
            width: 12px;
            height: 12px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.3);
                opacity: 0.7;
            }
        }

        .badge-text {
            font-size: 14px;
            font-weight: 700;
            color: #010c3b;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero-main-heading {
            font-family: 'Poppins', sans-serif;
            font-size: 64px;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 25px;
            background: linear-gradient(135deg, #0c0a7c 0%, #020c46 50%, #046896 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 0.8s ease-out 0.2s both;
            position: relative;
        }

        .hero-subheading {
            font-family: 'Inter', sans-serif;
            font-size: 22px;
            font-weight: 400;
            line-height: 1.7;
            color: #26282b;
            margin-bottom: 35px;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        .hero-quote-mark {
            font-size: 80px;
            line-height: 0;
            color: #667eea;
            opacity: 0.2;
            display: inline-block;
            margin-right: 10px;
        }

        .hero-cta-group {
            display: flex;
            gap: 20px;
            margin-top: 40px;
            animation: fadeInUp 0.8s ease-out 0.6s both;
        }

        .hero-btn {
            padding: 18px 40px;
            font-size: 16px;
            font-weight: 700;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            gap: 10px;
            position: relative;
            overflow: hidden;
        }

        .hero-btn-primary {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
        }

        .hero-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 50px rgba(102, 126, 234, 0.5);
        }

        .hero-btn-secondary {
            background: white;
            color: #667eea;
            border: 2px solid #667eea;
        }

        .hero-btn-secondary:hover {
            background: #667eea;
            color: white;
            transform: translateY(-3px);
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Section 2: About Story - Magazine Style */
        .about-story-section {
            padding: 120px 20px;
            background: white;
            position: relative;
        }

        .about-story-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100px;
            background: linear-gradient(180deg, transparent, #667eea);
        }

        .about-container {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
        }

        .about-content {
            position: relative;
        }

        .about-label {
            font-size: 14px;
            font-weight: 700;
            color: #667eea;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .about-label::before {
            content: '';
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, #667eea, transparent);
        }

        .about-main-heading {
            font-family: 'Poppins', sans-serif;
            font-size: 48px;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 30px;
            line-height: 1.2;
            position: relative;
        }

        .about-main-heading::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 80px;
            height: 5px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            border-radius: 3px;
        }

        .about-text {
            font-size: 17px;
            line-height: 1.9;
            color: #475569;
            margin-bottom: 20px;
        }

        .highlight {
            position: relative;
            display: inline;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-image-wrapper {
            position: relative;
            height: 600px;
        }

        .about-main-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 30px;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
            position: relative;
            z-index: 2;
        }

        .about-image-decoration {
            position: absolute;
            width: 90%;
            height: 90%;
            border: 3px solid #667eea;
            border-radius: 30px;
            top: -20px;
            left: -20px;
            z-index: 1;
        }

        .about-floating-card {
            position: absolute;
            background: white;
            padding: 25px 30px;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
            z-index: 3;
            animation: floatCard 4s ease-in-out infinite;
        }

        .about-floating-card-1 {
            bottom: 30px;
            right: -30px;
        }

        @keyframes floatCard {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-15px);
            }
        }

        .floating-card-icon {
            font-size: 36px;
            margin-bottom: 10px;
        }

        .floating-card-text {
            font-size: 14px;
            font-weight: 700;
            color: #0f172a;
        }

        .floating-card-subtext {
            font-size: 12px;
            color: #64748b;
        }

       
        /* Section 4: Stats - Artistic Display */
        .stats-section {
            padding: 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            position: relative;
            overflow: hidden;
        }

        .stats-artistic-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.1;
            background-image: 
                radial-gradient(circle at 20% 50%, white 2px, transparent 2px),
                radial-gradient(circle at 80% 80%, white 2px, transparent 2px);
            background-size: 50px 50px;
        }

        .stats-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 100px 20px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 60px;
            position: relative;
            z-index: 2;
        }

        .stat-item {
            text-align: center;
            color: white;
            position: relative;
        }

        .stat-item::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 60%;
            background: rgba(255, 255, 255, 0.2);
        }

        .stat-item:last-child::after {
            display: none;
        }

        .stat-icon-large {
            font-size: 64px;
            margin-bottom: 20px;
            opacity: 0.9;
            display: inline-block;
            animation: bounce 3s ease-in-out infinite;
        }

        .stat-item:nth-child(2) .stat-icon-large { animation-delay: 0.5s; }
        .stat-item:nth-child(3) .stat-icon-large { animation-delay: 1s; }
        .stat-item:nth-child(4) .stat-icon-large { animation-delay: 1.5s; }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .stat-number-large {
            font-size: 56px;
            font-weight: 900;
            margin-bottom: 10px;
            display: block;
        }

        .stat-label-large {
            font-size: 16px;
            font-weight: 600;
            opacity: 0.95;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Section 5: Team - Creative Showcase */
        .team-section {
            padding: 120px 20px;
            background: white;
        }

        .leadership-section {
            max-width: 1200px;
            margin: 0 auto 100px;
        }

        .leadership-title {
            text-align: center;
            font-size: 48px;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 70px;
            position: relative;
        }

        .leadership-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            border-radius: 3px;
        }

        .leadership-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 60px;
        }

        .leader-card {
            background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 100%);
            padding: 50px;
            border-radius: 35px;
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 3px solid transparent;
            overflow: hidden;
        }

        .leader-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, #667eea, #764ba2);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 0;
        }

        .leader-card:hover::before {
            opacity: 0.05;
        }

        .leader-card:hover {
            transform: translateY(-10px);
            border-color: #667eea;
            box-shadow: 0 30px 70px rgba(102, 126, 234, 0.3);
        }

        .leader-content {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        /* .leader-avatar {
            width: 160px;
            height: 160px;
            margin: 0 auto 25px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea, #764ba2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 56px;
            font-weight: 900;
            color: white;
            position: relative;
            box-shadow: 0 20px 50px rgba(102, 126, 234, 0.4);
        } */
         .leader-avatar {
    width: 160px;
    height: 160px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden; /* This makes the image fit in a perfect circle */
    background: linear-gradient(135deg, #b61b70, #0a8797);
    position: relative;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.4);
    border: 4px solid white; /* Optional premium border */
}

/* Make the inside image fill the circle perfectly */
.leader-avatar img {
    width: 80%;
    height: 100%;
    object-fit: fill; /* Ensures the face fits without distortion */
}


        .leader-avatar::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 4px solid #667eea;
            top: -8px;
            left: -8px;
            opacity: 0.3;
        }

        .leader-name {
            font-size: 28px;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 8px;
        }

        .leader-position {
            font-size: 17px;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
        }

        .leader-bio {
            font-size: 15px;
            color: #64748b;
            line-height: 1.7;
        }

        .team-members-section {
            max-width: 1400px;
            margin: 0 auto;
        }

        .team-members-title {
            text-align: center;
            font-size: 38px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 50px;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }

        .team-member-card {
            background: white;
            padding: 35px 25px;
            border-radius: 25px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid #f1f5f9;
            position: relative;
            overflow: hidden;
        }

        .team-member-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(102, 126, 234, 0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
        }

        .team-member-card:hover::before {
            top: 50%;
            left: 50%;
        }

        .team-member-card:hover {
            transform: translateY(-8px);
            border-color: #667eea;
            box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
        }

        .member-avatar {
            width: 120px;
            height: 120px;
            margin: 0 auto 20px;
            border-radius: 50%;
            background: linear-gradient(135deg, #dbe4ff, #c5d4ff);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            font-weight: 800;
            color: #667eea;
            position: relative;
            z-index: 1;
            border: 4px solid white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .member-name {
            font-size: 19px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 5px;
            position: relative;
            z-index: 1;
        }

        .member-role {
            font-size: 14px;
            color: #667eea;
            font-weight: 600;
            position: relative;
            z-index: 1;
        }

        /* Section 6: Why Choose Us - Bento Grid */
        .why-choose-section {
            padding: 120px 20px;
            background: linear-gradient(180deg, #fafbff 0%, #f5f7ff 100%);
        }

        .why-grid {
            max-width: 1400px;
            margin: 80px auto 0;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(2, 1fr);
            gap: 30px;
        }

        .why-card {
            background: white;
            padding: 45px 35px;
            border-radius: 30px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .why-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #667eea, #764ba2);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 0;
        }

        .why-card:hover::after {
            opacity: 0.03;
        }

        .why-card:hover {
            transform: translateY(-10px);
            border-color: #667eea;
            box-shadow: 0 25px 60px rgba(102, 126, 234, 0.25);
        }

        .why-card-content {
            position: relative;
            z-index: 1;
        }

        .why-icon-box {
            width: 75px;
            height: 75px;
            border-radius: 20px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: all 0.4s ease;
        }

        .why-card:hover .why-icon-box {
            transform: scale(1.1) rotate(5deg);
        }

        .why-icon-box {
            font-size: 36px;
        }

        .why-card:nth-child(2) .why-icon-box { background: linear-gradient(135deg, #10b981, #059669); }
        .why-card:nth-child(3) .why-icon-box { background: linear-gradient(135deg, #f59e0b, #d97706); }
        .why-card:nth-child(4) .why-icon-box { background: linear-gradient(135deg, #ec4899, #db2777); }
        .why-card:nth-child(5) .why-icon-box { background: linear-gradient(135deg, #06b6d4, #0891b2); }
        .why-card:nth-child(6) .why-icon-box { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }

        .why-card-title {
            font-size: 22px;
            font-weight: 700;
            color: #3bb60a;
            margin-bottom: 12px;
        }

        .why-card-desc {
            font-size: 15px;
            color: #64748b;
            line-height: 1.8;
        }

.section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 80px;
        }

        .section-subtitle {
            font-size: 14px;
            font-weight: 700;
            color: #667eea;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

  .section-title {
            font-family: 'Poppins', sans-serif;
            font-size: 48px;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 20px;
        }
        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero-content-wrapper {
                flex-direction: column;
            }

            .hero-images {
                order: -1;
                height: 400px;
            }

            .industries-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 968px) {
            .hero-banner {
                padding: 80px 20px;
            }

            .hero-main-heading {
                font-size: 42px;
            }

            .hero-subheading {
                font-size: 18px;
            }

            .about-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .about-main-heading,
            .section-title,
            .leadership-title {
                font-size: 36px;
            }

            .industries-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stats-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }

            .stat-item::after {
                display: none;
            }

            .leadership-grid {
                grid-template-columns: 1fr;
            }

            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 640px) {
            .hero-main-heading {
                font-size: 32px;
            }

            .hero-cta-group {
                flex-direction: column;
            }

            .hero-btn {
                width: 100%;
                justify-content: center;
            }

            .about-main-heading,
            .section-title,
            .leadership-title {
                font-size: 28px;
            }

            .industries-grid,
            .team-grid,
            .why-grid {
                grid-template-columns: 1fr;
            }

            .stats-content {
                grid-template-columns: 1fr;
                gap: 50px;
                padding: 60px 20px;
            }

            .about-image-wrapper {
                height: 400px;
            }
        }
    
        /* testimonial start */
     /* Unique container class to avoid conflicts */
        .testimonials-unique-container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            padding: 60px 20px;
            font-family: system-ui, -apple-system, sans-serif;
        }

        .testimonials-unique-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 0.8rem;
            color: #1e293b;
            font-weight: 700;
        }

        .testimonials-unique-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #64748b;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .testimonials-unique-slider-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            padding: 40px 0;
        }

        .testimonials-unique-slider-wrapper {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .testimonials-unique-card {
            flex: 0 0 calc(100% / 3);
            padding: 15px;
            transition: all 0.4s ease;
        }

        .testimonials-unique-card-inner {
            background-color: white;
            border-radius: 16px;
            padding: 35px 30px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid #e2e8f0;
        }

        .testimonials-unique-card.testimonials-unique-active .testimonials-unique-card-inner {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
            border-color: rgba(59, 130, 246, 0.3);
        }

        .testimonials-unique-quote-icon {
            font-size: 2.5rem;
            color: #e2e8f0;
            margin-bottom: 15px;
            position: absolute;
            top: 15px;
            right: 25px;
            z-index: 0;
        }

        .testimonials-unique-review-text {
            font-size: 1.05rem;
            line-height: 1.6;
            color: #475569;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }

        .testimonials-unique-star-rating {
            display: flex;
            margin-bottom: 20px;
        }

        .testimonials-unique-star-rating i {
            color: #fbbf24;
            font-size: 1.2rem;
            margin-right: 3px;
        }

        .testimonials-unique-reviewer-name {
            font-weight: 700;
            font-size: 1.2rem;
            color: #1e293b;
            margin-top: auto;
        }

        /* Navigation buttons */
        .testimonials-unique-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: white;
            border: none;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: #3b82f6;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            z-index: 10;
            transition: all 0.3s ease;
        }

        .testimonials-unique-nav-btn:hover {
            background-color: #3b82f6;
            color: white;
            box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
        }

        .testimonials-unique-prev-btn {
            left: 0;
        }

        .testimonials-unique-next-btn {
            right: 0;
        }

        /* Dots indicator */
        .testimonials-unique-dots-container {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .testimonials-unique-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #cbd5e1;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonials-unique-dot.testimonials-unique-active {
            background-color: #3b82f6;
            transform: scale(1.3);
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .testimonials-unique-card {
                flex: 0 0 50%;
            }
            
            .testimonials-unique-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .testimonials-unique-card {
                flex: 0 0 100%;
            }
            
            .testimonials-unique-nav-btn {
                width: 42px;
                height: 42px;
                font-size: 1rem;
            }
            
            .testimonials-unique-title {
                font-size: 1.8rem;
            }
            
            .testimonials-unique-subtitle {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .testimonials-unique-container {
                padding: 40px 15px;
            }
            
            .testimonials-unique-card-inner {
                padding: 25px 20px;
            }
            
            .testimonials-unique-review-text {
                font-size: 1rem;
            }
        }

        /* Focus animation for center card */
        @keyframes testimonials-unique-pulse {
            0% { box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15); }
            50% { box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2); }
            100% { box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15); }
        }

        .testimonials-unique-card.testimonials-unique-active .testimonials-unique-card-inner {
            animation: testimonials-unique-pulse 4s infinite;
        }
/* testimonial end */
