* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Verdana, Geneva, Tahoma, sans-serif;
            background: #f8f9fa;
        }

        /* Achievements Section */
        #achievements {
            padding: 80px 0;
            background: white;
            position: relative;
            overflow: hidden;
        }

        #achievements-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        #achievements-header {
            text-align: center;
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        #achievements-title {
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 800;
            color: #2a156f;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        #achievements-highlight {
            color: #fd49a0;
        }

        #achievements-subtitle {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.6;
            margin: 0;
        }

        #achievements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .achievements-badge {
            background: white;
            border-radius: 20px;
            padding: 35px;
            height: 100%;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .achievements-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #fd49a0, #4120A9);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .achievements-badge:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        }

        .achievements-badge:hover::before {
            transform: scaleX(1);
        }

        .achievements-badge-logo {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(65, 32, 169, 0.08), rgba(253, 73, 160, 0.08));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .achievements-badge-logo  {
            width: 60px;
            height: 60px;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

   

        .achievements-badge:hover .achievements-badge-logo {
            background: linear-gradient(135deg, rgba(65, 32, 169, 0.15), rgba(253, 73, 160, 0.15));
            transform: scale(1.05);
        }

        .achievements-badge:hover .achievements-badge-logo {
            transform: scale(1.1);
        }

        .achievements-badge-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #2a156f;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .achievements-badge-description {
            color: #666;
            line-height: 1.5;
            margin-bottom: 20px;
            font-size: 0.95rem;
            flex: 1;
        }

        .achievements-badge-stats {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-top: auto;
        }

        .achievements-stars {
            display: flex;
            gap: 3px;
            margin-bottom: 15px;
        }

        .achievements-star {
            width: 18px;
            height: 18px;
            color: #ffc107;
            font-size: 18px;
        }

        .achievements-rating {
            font-weight: 600;
            color: #2a156f;
            font-size: 1.1rem;
        }

        .achievements-count {
            color: #666;
            font-size: 0.9rem;
        }

        .achievements-verified-badge {
            background: linear-gradient(135deg, #4CAF50, #45a049);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 10px;
        }

        .achievements-certification-number {
            color: #fd49a0;
            font-weight: 600;
            font-size: 1.1rem;
            margin-top: 8px;
        }

        .achievements-years {
            color: #4120A9;
            font-weight: 600;
            font-size: 1.2rem;
            margin-top: 5px;
        }

        .achievements-clients-served {
            color: #fd49a0;
            font-weight: 700;
            font-size: 1.4rem;
            margin-top: 5px;
        }

        .achievements-embed-placeholder {
            width: 100%;
            height: 60px;
           
        }
.achievements-embed-placeholder-img {
    width: 100%;
    
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* crop overflow */
}

.achievements-embed-placeholder-img img {
    height: 100%;         /* always fills container height */
    width: auto;          /* scale width proportionally */
    object-fit: contain;  
}
       
        
        /* Stats bar at bottom */
        #achievements-stats-bar {
            background: linear-gradient(135deg, rgba(65, 32, 169, 0.03), rgba(253, 73, 160, 0.03));
            border-radius: 15px;
            padding: 30px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .achievements-stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .achievements-stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #4120A9, #fd49a0);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 8px;
            line-height: 1;
        }

        .achievements-stat-label {
            color: #666;
            font-weight: 600;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Animation */
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .achievements-badge {
            animation: slideInUp 0.6s ease both;
        }

        .achievements-badge:nth-child(1) { animation-delay: 0.1s; }
        .achievements-badge:nth-child(2) { animation-delay: 0.2s; }
        .achievements-badge:nth-child(3) { animation-delay: 0.3s; }
        .achievements-badge:nth-child(4) { animation-delay: 0.4s; }
        .achievements-badge:nth-child(5) { animation-delay: 0.5s; }
        .achievements-badge:nth-child(6) { animation-delay: 0.6s; }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            #achievements {
                padding: 60px 0;
            }

            #achievements-container {
                padding: 0 15px;
            }

            #achievements-header {
                margin-bottom: 40px;
            }

            #achievements-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .achievements-badge {
                padding: 25px;
            }

            .achievements-badge-logo {
                width: 70px;
                height: 70px;
                margin-bottom: 20px;
            }

            .achievements-badge-logo img {
                width: 40px;
                height: 40px;
            }

            #achievements-stats-bar {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 20px;
                padding: 25px;
            }

            .achievements-stat-number {
                font-size: 2rem;
            }

            .achievements-stat-label {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            #achievements-stats-bar {
                grid-template-columns: 1fr 1fr;
            }
            
            .achievements-stat-number {
                font-size: 1.8rem;
            }
        }

           /* Thin Badge Section */
        #badge-thin {
            padding: 40px 0;
            background: white;
            position: relative;
            overflow: hidden;
        }

        #badge-thin-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        #badge-thin-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            align-items: center;
        }

        .badge-thin-item {
            background: white;
            border-radius: 12px;
            padding: 8px 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(0, 0, 0, 0.04);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-decoration: none;
            color: inherit;
        }

        .badge-thin-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(135deg, #fd49a0, #4120A9);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .badge-thin-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .badge-thin-item:hover::before {
            transform: scaleX(1);
        }

        .badge-thin-logo-image {
            height: 45px;
            width: auto;
            object-fit: contain;
        }

        .trustpilot-content {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .trustpilot-stars {
            display: flex;
            gap: 1px;
        }

        .trustpilot-star {
            color: #ffc107;
            font-size: 12px;
        }

        .trustpilot-rating {
            font-weight: 700;
            color: #2a156f;
            font-size: 0.8rem;
        }

        .trustpilot-text {
            font-weight: 600;
            color: #666;
            font-size: 0.75rem;
        }

        .badge-thin-item:hover .badge-thin-logo {
            background: linear-gradient(135deg, rgba(65, 32, 169, 0.15), rgba(253, 73, 160, 0.15));
            transform: scale(1.05);
        }

        .badge-thin-content {
            flex: 1;
            min-width: 0;
        }

        .badge-thin-title {
            font-size: 0.85rem;
            font-weight: 700;
            color: #2a156f;
            line-height: 1.2;
        }

        .badge-thin-description {
            color: #666;
            font-size: 0.8rem;
            line-height: 1.4;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .badge-thin-meta {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 6px;
        }

        .badge-thin-stars {
            display: flex;
            gap: 1px;
        }

        .badge-thin-star {
            color: #ffc107;
            font-size: 12px;
        }

        .badge-thin-verified {
            background: linear-gradient(135deg, #4CAF50, #45a049);
            color: white;
            padding: 2px 6px;
            border-radius: 8px;
            font-size: 0.65rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.2px;
            margin-left: auto;
        }

        .badge-thin-image {
            width: 50px;
            height: 50px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            flex-shrink: 0;
        }

        .badge-thin-image img {
            height: 100%;
            width: auto;
            object-fit: contain;
        }

        .trustpilot-meta {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }

        /* Stats Bar Thin Version */
        #badge-thin-stats {
            background: linear-gradient(135deg, rgba(65, 32, 169, 0.03), rgba(253, 73, 160, 0.03));
            border-radius: 12px;
            padding: 20px;
            margin-top: 30px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 20px;
            text-align: center;
        }

        .badge-thin-stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .badge-thin-stat-number {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #4120A9, #fd49a0);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 4px;
            line-height: 1;
        }

        .badge-thin-stat-label {
            color: #666;
            font-weight: 600;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            #badge-thin {
                padding: 30px 0;
            }

            #badge-thin-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .badge-thin-item {
                padding: 15px;
                gap: 12px;
            }

            .badge-thin-logo,
            .badge-thin-image {
                width: 40px;
                height: 40px;
            }

            .badge-thin-logo i {
                font-size: 16px;
            }

            .badge-thin-title {
                font-size: 0.9rem;
            }

            .badge-thin-description {
                font-size: 0.75rem;
            }

            #badge-thin-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
                padding: 15px;
            }

            .badge-thin-stat-number {
                font-size: 1.5rem;
            }

            .badge-thin-stat-label {
                font-size: 0.75rem;
            }
        }

        @media (max-width: 480px) {
            .badge-thin-item {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }

            .badge-thin-content {
                text-align: center;
            }

            #badge-thin-stats {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* Animation */
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .badge-thin-item {
            animation: slideInUp 0.5s ease both;
        }

        .badge-thin-item:nth-child(1) { animation-delay: 0.1s; }
        .badge-thin-item:nth-child(2) { animation-delay: 0.2s; }
        .badge-thin-item:nth-child(3) { animation-delay: 0.3s; }
        .badge-thin-item:nth-child(4) { animation-delay: 0.4s; }