
        .certifications-section {
            background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
            padding: 80px 0;
            min-height: 100vh;
        }
        
        .certifications-header {
            background: linear-gradient(135deg, #74c5b5 0%, #764ba2 100%);
            color: white;
            padding: 60px 0;
            margin-bottom: 60px;
            position: relative;
            overflow: hidden;
        }
        
        .certifications-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
            animation: float 20s infinite linear;
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            100% { transform: translateY(-100px); }
        }
        
        .certification-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .certification-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #74c5b5 0%, #764ba2 100%);
        }
        
        .certification-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
        }
        
        .certification-title {
            color: #2c3e50;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
        }
        
        .certification-subtitle {
            color: #7f8c8d;
            font-size: 1.1rem;
            margin-bottom: 30px;
            font-weight: 300;
        }
        
        .certification-content {
            display: flex;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        
        .certification-text {
            flex: 1;
            min-width: 300px;
        }
        
        .certification-text p {
            color: #555;
            line-height: 1.8;
            font-size: 1.1rem;
            margin-bottom: 20px;
        }
        
        .certification-badge {
            flex: 0 0 auto;
            text-align: center;
            padding: 30px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 15px;
            border: 2px solid #dee2e6;
        }
        
        .certification-logo {
            width: 120px;
            height: 120px;
            margin: 0 auto 20px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .certification-logo img {
            max-width: 80px;
            max-height: 80px;
        }
        
        .certification-info {
            margin-top: 15px;
        }
        
        .certification-name {
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 5px;
        }
        
        .certification-date {
            color: #7f8c8d;
            font-size: 0.9rem;
        }
        
        .view-certificate-btn {
            background: #74c5b5;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            margin-top: 20px;
            position: relative;
            overflow: hidden;
        }
        
        .view-certificate-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        
        .view-certificate-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
            color: white;
            text-decoration: none;
        }
        
        .view-certificate-btn:hover::before {
            left: 100%;
        }
        
        .page-title {
            font-size: 3.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        
        .page-subtitle {
            font-size: 1.3rem;
            text-align: center;
            opacity: 0.9;
            font-weight: 300;
        }
        
        @media (max-width: 768px) {
            .certification-content {
                flex-direction: column;
                text-align: center;
            }
            
            .certification-title {
                font-size: 2rem;
            }
            
            .page-title {
                font-size: 2.5rem;
            }
            
            .certification-card {
                padding: 30px 20px;
            }
        }
